:root {
  --bg: #f6f3ee;
  --bg-soft: #f2ede6;
  --white: #ffffff;
  --text: #2f2a24;
  --muted: #6b655d;
  --line: rgba(47, 42, 36, 0.12);
  --teal: #1f4c5c;
  --teal-deep: #173845;
  --gold: #b8914d;
  --shadow-soft: 0 18px 50px rgba(47, 42, 36, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  margin: 0;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.site-header {
  background: #ebe3d8;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  position: relative;
  z-index: 20;
}

.brand-wrap {
  padding: 0;
  margin-right: 1rem;
}

.brand-badge {
  width: 58px;
  height: 58px;
  background: #20354c;
  color: #fff;
  display: grid;
  place-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  clip-path: polygon(18% 0, 82% 0, 100% 34%, 82% 100%, 18% 100%, 0 34%);
}

.navbar-nav .nav-link {
  color: var(--teal);
  font-size: 1.05rem;
  font-weight: 400;
  padding: 0.35rem 0.6rem;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--teal);
}

.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0.6rem;
  right: 0.6rem;
  bottom: 0;
  height: 1px;
  background: var(--teal);
}

.hero-section {
  position: relative;
  min-height: calc(100vh - 82px);
  background: url('../img/backgroundimg.png') center center / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.58);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-left: 3.5%;
  padding-top: 12vh;
  max-width: 420px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(3.3rem, 7vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--teal);
  margin-bottom: 11rem;
}

.hero-link {
  display: inline-block;
  color: var(--teal);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.5;
}

.hero-link:hover {
  color: var(--teal-deep);
}

.section-space {
  padding: 6rem 0;
}

.bg-cream {
  background: var(--bg-soft);
}

.section-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.section-title.centered {
  max-width: 12ch;
  margin-left: auto;
  margin-right: auto;
}

.section-copy,
.intro-text,
.statement-copy,
.footer-copy {
  color: var(--muted);
  font-size: 1.02rem;
}

.intro-text {
  font-size: 1.14rem;
  margin-bottom: 1.4rem;
}

.lg-copy {
  max-width: 700px;
}

.content-block {
  max-width: 600px;
}

.image-panel {
  overflow: hidden;
  border-radius: 0;
  box-shadow: var(--shadow-soft);
  background: #e9e4dd;
}

.feature-image {
  width: 100%;
  height: 680px;
  object-fit: cover;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(47, 42, 36, 0.08);
  padding: 2rem 1.6rem;
  height: 100%;
  box-shadow: 0 10px 25px rgba(47, 42, 36, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(47, 42, 36, 0.08);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  margin-bottom: 0.8rem;
  color: var(--text);
}

.service-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.border-top-soft {
  border-top: 1px solid var(--line);
}

.statement-copy {
  font-size: 1.18rem;
  max-width: 760px;
  margin: 0 auto;
}

.accordion-clean {
  max-width: 900px;
}

.accordion-item {
  background: var(--white);
  border: 1px solid rgba(47, 42, 36, 0.08);
  border-radius: 0 !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-button {
  background: var(--white);
  color: var(--text);
  font-weight: 500;
  box-shadow: none !important;
  padding: 1.3rem 1.4rem;
}

.accordion-button:not(.collapsed) {
  background: var(--white);
  color: var(--teal);
}

.accordion-body {
  color: var(--muted);
  padding: 0 1.4rem 1.3rem;
}

.btn-clean {
  display: inline-block;
  border: 1px solid var(--teal);
  color: var(--teal);
  padding: 0.9rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  background: transparent;
  transition: all 0.2s ease;
}

.btn-clean:hover {
  background: var(--teal);
  color: #fff;
}

.site-footer {
  padding: 4rem 0;
  border-top: 1px solid var(--line);
  background: #f3eee7;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--text);
}

@media (max-width: 991.98px) {
  .hero-section {
    min-height: 88vh;
    background-position: center center;
  }

  .hero-content {
    padding-top: 10vh;
    padding-left: 6%;
    max-width: 340px;
  }

  .hero-title {
    margin-bottom: 7rem;
    font-size: clamp(2.8rem, 8vw, 4.4rem);
  }

  .feature-image {
    height: 500px;
  }

  .navbar-collapse {
    padding-top: 1rem;
  }
}

@media (max-width: 767.98px) {
  .site-header {
    background: #ebe3d8;
  }

  .hero-section {
    min-height: 78vh;
  }

  .hero-content {
    padding-top: 8vh;
    padding-left: 7%;
    max-width: 270px;
  }

  .hero-title {
    font-size: 2.6rem;
    margin-bottom: 4.5rem;
  }

  .hero-link {
    font-size: 0.8rem;
  }

  .section-space {
    padding: 4rem 0;
  }

  .feature-image {
    height: 380px;
  }

  .section-title.centered {
    max-width: 100%;
  }
}
.hero-section {
    position: relative;
    min-height: calc(100vh - 82px);
    background: url('img/cleanhome.png') center center / cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.55);
}