/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #F6F1E8;
  color: #1F3A34;
  overflow-x: hidden;
}

/* ─── CSS Variables ─── */
:root {
  --pine:    #1F3A34;
  --forest:  #14241F;
  --honey:   #D89A53;
  --sage:    #9DB5A6;
  --cream:   #F6F1E8;
  --stone:   #5C6A63;
  --sage-lt: #D6E4DC;
  --cream-dk:#E7E4DD;
}

/* ─── Typography ─── */
h1, h2, h3, h4 { line-height: 1.1; }
.serif { font-family: 'Cormorant Garamond', serif; }

/* ─── Utility ─── */
.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--honey);
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--honey);
  color: var(--forest);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #c8893e; transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--pine);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  border-radius: 6px;
  border: 1.5px solid var(--pine);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--pine); color: #fff; }

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #F6F1E8;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  border-radius: 6px;
  border: 1.5px solid rgba(246,241,232,0.4);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline-light:hover { background: rgba(246,241,232,0.1); border-color: rgba(246,241,232,0.7); }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: transparent;
  border-bottom: 1px solid transparent;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: background 0.35s, border-color 0.35s;
}
nav.scrolled {
  background: rgba(246,241,232,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31,58,52,0.1);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-wordmark-name {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--pine);
  transition: color 0.35s;
}
.nav-wordmark-sub {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--stone);
  opacity: 0.6;
  margin-top: 3px;
  transition: color 0.35s;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--stone);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--pine); }
.nav-links a.nav-active { color: var(--pine); font-weight: 700; }
body.dark-hero nav .nav-links a.nav-active { color: #F6F1E8; font-weight: 700; }
body.dark-hero nav.scrolled .nav-links a.nav-active { color: var(--pine); }
.nav-house-stroke { stroke: #1F3A34; transition: stroke 0.35s; }
.nav-cta .btn-outline {
  color: var(--pine);
  border-color: rgba(31,58,52,0.35);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
/* Pages with dark hero — light nav until scrolled */
body.dark-hero nav .nav-wordmark-name { color: #F6F1E8; }
body.dark-hero nav .nav-wordmark-sub { color: rgba(246,241,232,0.5); opacity: 1; }
body.dark-hero nav .nav-links a { color: rgba(246,241,232,0.8); }
body.dark-hero nav .nav-links a:hover { color: #F6F1E8; }
body.dark-hero nav .nav-house-stroke { stroke: #F6F1E8; }
body.dark-hero nav .nav-cta .btn-outline { color: #F6F1E8; border-color: rgba(246,241,232,0.45); }
body.dark-hero nav.scrolled .nav-wordmark-name { color: var(--pine); }
body.dark-hero nav.scrolled .nav-wordmark-sub { color: var(--stone); opacity: 0.6; }
body.dark-hero nav.scrolled .nav-links a { color: var(--stone); }
body.dark-hero nav.scrolled .nav-links a:hover { color: var(--pine); }
body.dark-hero nav.scrolled .nav-house-stroke { stroke: #1F3A34; }
body.dark-hero nav.scrolled .nav-cta .btn-outline { color: var(--pine); border-color: rgba(31,58,52,0.35); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

/* ── Language switch ── */
.lang-switch { display:flex; align-items:center; gap:3px; margin:0 2px; }
.lang-btn { background:none; border:none; cursor:pointer; font-size:10px; font-weight:700; font-family:'Inter',sans-serif; letter-spacing:0.1em; color:rgba(31,58,52,0.35); padding:6px 4px; transition:color 0.2s; line-height:1; }
.lang-btn.active { color:var(--pine); }
.lang-btn:hover { color:var(--pine); }
.lang-sep { font-size:10px; color:rgba(31,58,52,0.15); user-select:none; }
body.dark-hero nav:not(.scrolled) .lang-btn { color:rgba(246,241,232,0.4); }
body.dark-hero nav:not(.scrolled) .lang-btn.active { color:#F6F1E8; }
body.dark-hero nav:not(.scrolled) .lang-btn:hover { color:#F6F1E8; }
body.dark-hero nav:not(.scrolled) .lang-sep { color:rgba(246,241,232,0.2); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--pine);
  border-radius: 2px;
  transition: all 0.25s;
}

/* ─── PAGE-WIDE FLOATING MARKS ─── */
.page-floats {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.page-float {
  position: absolute;
  opacity: 0;
  will-change: transform, opacity;
  animation: floatUp var(--dur, 22s) ease-in-out var(--delay, 0s) infinite;
}
@keyframes floatUp {
  0%   { transform: translateY(0) rotate(0deg) scale(0.7); opacity: 0; }
  8%   { opacity: var(--op, 0.05); }
  88%  { opacity: calc(var(--op, 0.05) * 0.5); }
  100% { transform: translateY(-110vh) rotate(10deg) scale(1.1); opacity: 0; }
}
@media (max-width: 900px) {
  .page-float:nth-child(n+4) { display: none; }
}

/* ─── HERO ─── */
@keyframes revealUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes drawPath { to { stroke-dashoffset: 0; } }
@keyframes popIn { to { r: 5.5; } }
@keyframes logoFloat {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-6px); }
}

.hero {
  min-height: 100vh;
  background: var(--cream);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Subtle dot-grid texture */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(31,58,52,0.055) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

/* Large ghost watermark — bottom right */
.hero-watermark {
  position: absolute;
  bottom: -120px;
  right: -80px;
  opacity: 0.04;
  pointer-events: none;
}

.hero-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 80px 80px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

/* ── LEFT: typography ── */
.hero-content {
  display: flex;
  flex-direction: column;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 28px;
  opacity: 0;
  animation: revealUp 0.7s ease 0.1s forwards;
}
.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--honey);
  border-radius: 2px;
}

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(54px, 6vw, 88px);
  font-weight: 500;
  color: var(--pine);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin-bottom: 30px;
  opacity: 0;
  animation: revealUp 0.9s ease 0.35s forwards;
}
.hero-h1 em {
  font-style: italic;
  color: var(--honey);
}
.hero-h1 strong {
  font-style: normal;
  font-weight: 500;
  display: block;
}

/* Horizontal rule separator */
.hero-rule {
  width: 60px;
  height: 2px;
  background: var(--honey);
  border-radius: 2px;
  margin-bottom: 28px;
  opacity: 0;
  animation: revealUp 0.6s ease 0.6s forwards;
}

.hero-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--stone);
  max-width: 460px;
  margin-bottom: 44px;
  opacity: 0;
  animation: revealUp 0.8s ease 0.75s forwards;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: revealUp 0.7s ease 1.0s forwards;
}

/* Bottom stat row */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(31,58,52,0.1);
  opacity: 0;
  animation: revealUp 0.7s ease 1.25s forwards;
}
.hero-stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--pine);
  line-height: 1;
  letter-spacing: -0.04em;
}
.hero-stat-num span { color: var(--honey); }
.hero-stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--stone);
  text-transform: uppercase;
  margin-top: 6px;
  opacity: 0.7;
}

/* ── RIGHT: logo + stat cards ── */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  opacity: 0;
  animation: fadeIn 0.9s ease 0.5s forwards;
}

/* Animated logo */
.hero-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: logoFloat 5s ease-in-out 2s infinite;
}
.hero-logo-ring {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-ring::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(216,154,83,0.2);
}
.hero-logo-ring::after {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(216,154,83,0.08);
}
.hero-logo-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 60%, rgba(216,154,83,0.12) 0%, transparent 70%);
}

/* Draw the house outline */
#hero-house-path {
  stroke-dasharray: 148;
  stroke-dashoffset: 148;
  stroke-linecap: round;
  animation: drawPath 1.3s cubic-bezier(0.4,0,0.2,1) 0.6s forwards;
}
#hero-keyhole-circle {
  r: 0;
  animation: popIn 0.5s cubic-bezier(0.34,1.56,0.64,1) 1.8s forwards;
}
#hero-keyhole-stem {
  opacity: 0;
  animation: fadeIn 0.3s ease 2.1s forwards;
}

.hero-logo-name {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--pine);
  line-height: 1;
}
.hero-logo-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--stone);
  opacity: 0.6;
  margin-top: 3px;
  text-align: center;
}

/* 2×2 stat cards */
.hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}
.hero-stat-card {
  background: #fff;
  border: 1px solid rgba(31,58,52,0.08);
  border-radius: 16px;
  padding: 20px 18px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero-stat-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--honey);
  border-radius: 3px 0 0 3px;
}
.hero-stat-card:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(20,36,31,0.08); }
.hero-stat-card-num {
  font-family: 'Inter', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--pine);
  letter-spacing: -0.04em;
  line-height: 1;
}
.hero-stat-card-num span { color: var(--honey); font-size: 20px; }
.hero-stat-card-label {
  font-size: 11px;
  color: var(--stone);
  line-height: 1.45;
  margin-top: 7px;
}

/* ── Mobile ── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 110px 28px 60px;
    gap: 48px;
  }
  .hero-right { width: 100%; }
  .hero-stat-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-watermark { display: none; }
}
@media (max-width: 480px) {
  .hero-stat-grid { grid-template-columns: 1fr 1fr; }
  .hero-h1 { font-size: 48px; }
}



/* ─── SECTIONS ─── */
.section {
  padding: 96px 40px;
  position: relative;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-header { margin-bottom: 64px; }
.section-header.centered { text-align: center; }
.section-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 500;
  color: var(--pine);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-top: 14px;
}
.section-h2.light { color: #F6F1E8; }
.section-sub {
  font-size: 16px;
  color: var(--stone);
  line-height: 1.7;
  margin-top: 20px;
  max-width: 560px;
}
.section-sub.centered { margin-left: auto; margin-right: auto; text-align: center; }

/* ─── SERVICES (homepage) ─── */
.services { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.svc-card {
  background: #fff;
  border: 1px solid rgba(31,58,52,0.08);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--honey);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s cubic-bezier(0.34,1.2,0.64,1);
  border-radius: 3px 0 0 3px;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(20,36,31,0.09); border-color: rgba(31,58,52,0.14); }
.svc-card:hover::before { transform: scaleY(1); }
.svc-icon {
  width: 44px; height: 44px;
  background: rgba(216,154,83,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.svc-card:hover .svc-icon { background: rgba(216,154,83,0.18); }
.svc-name { font-size: 16px; font-weight: 700; color: var(--pine); letter-spacing: -0.01em; }
.svc-desc { font-size: 13px; color: var(--stone); line-height: 1.6; flex: 1; }
.svc-link {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--honey); text-decoration: none;
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 4px; transition: gap 0.2s;
}
.svc-link:hover { gap: 8px; }
.services-cta { text-align: center; margin-top: 48px; }

/* ─── HOW IT WORKS ─── */
.how { background: #fff; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 64px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 1px;
  background: rgba(31,58,52,0.1);
}
.step { display: flex; flex-direction: column; gap: 16px; position: relative; }
.step-num {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  background: var(--pine);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step-title { font-size: 18px; font-weight: 700; color: var(--pine); line-height: 1.3; }
.step-desc { font-size: 14px; color: var(--stone); line-height: 1.7; }

/* ─── WHY SECTION ─── */
.why { background: var(--forest); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-points { display: flex; flex-direction: column; gap: 32px; margin-top: 48px; }
.why-point { display: flex; gap: 18px; align-items: flex-start; }
.why-point-icon {
  width: 40px; height: 40px;
  background: rgba(216,154,83,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.why-point-title { font-size: 15px; font-weight: 700; color: #F6F1E8; margin-bottom: 6px; }
.why-point-desc { font-size: 13px; color: rgba(246,241,232,0.55); line-height: 1.65; }
.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.why-card {
  background: rgba(246,241,232,0.05);
  border: 1px solid rgba(246,241,232,0.08);
  border-radius: 16px;
  padding: 28px 24px;
}
.why-card.accent { background: var(--honey); border-color: transparent; }
.why-card-num {
  font-family: 'Inter', sans-serif;
  font-size: 38px; font-weight: 800;
  color: var(--honey);
  letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 10px;
}
.why-card-label { font-size: 12px; color: rgba(246,241,232,0.55); line-height: 1.55; }

/* ─── QUOTE ─── */
.quote-section { background: var(--pine); padding: 80px 40px; }
.quote-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px; line-height: 0.5;
  color: var(--honey); margin-bottom: 24px; display: block;
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 34px); font-style: italic; font-weight: 400;
  color: #F6F1E8; line-height: 1.45; letter-spacing: -0.01em;
}
.quote-author { font-size: 12px; color: var(--sage); letter-spacing: 0.06em; margin-top: 28px; }

/* ─── CTA BANNER ─── */
.cta-banner { background: var(--pine); padding: 80px 40px; }
.cta-banner-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
}
.cta-banner-text { flex: 1; }
.cta-banner-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px); font-weight: 500;
  color: #F6F1E8; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 16px;
}
.cta-banner-sub { font-size: 15px; color: var(--sage); line-height: 1.6; max-width: 480px; }
.cta-banner-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; flex-shrink: 0; }
.cta-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 42px); font-weight: 500;
  color: #F6F1E8; letter-spacing: -0.02em; margin-bottom: 8px;
}
.cta-sub { font-size: 15px; color: var(--sage); line-height: 1.5; }

/* ─── FOOTER ─── */
footer { background: var(--forest); padding: 72px 40px 40px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(246,241,232,0.08);
}
.footer-brand-name { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; color: #F6F1E8; }
.footer-brand-sub { font-size: 8px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(246,241,232,0.35); margin-top: 4px; margin-bottom: 16px; }
.footer-brand-desc { font-size: 13px; color: rgba(246,241,232,0.45); line-height: 1.65; max-width: 260px; }
.footer-col-title { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(246,241,232,0.35); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(246,241,232,0.6); text-decoration: none; transition: color 0.15s; }
.footer-col ul li a:hover { color: #F6F1E8; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px;
}
.footer-copy { font-size: 11px; color: rgba(246,241,232,0.28); }
.footer-url { font-size: 11px; color: rgba(246,241,232,0.28); }

/* ─── PAGE STYLES (inner pages) ─── */
.page-hero { background: var(--forest); padding: 140px 40px 80px; position: relative; }
.page-hero-inner { max-width: 700px; margin: 0 auto; }
.page-hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 6vw, 68px); font-weight: 500;
  line-height: 1.08; color: #F6F1E8;
  margin-top: 16px; letter-spacing: -0.02em;
}
.page-hero-sub { font-size: 16px; color: rgba(246,241,232,0.65); line-height: 1.65; margin-top: 20px; max-width: 520px; }

/* ─── SERVICES FULL (inner page) ─── */
.services-full-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.svc-full-card {
  background: #fff; border: 1px solid rgba(31,58,52,0.08);
  border-radius: 20px; padding: 40px 36px; position: relative; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.svc-full-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(20,36,31,0.08); }
.svc-full-icon { width: 48px; height: 48px; background: rgba(216,154,83,0.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.svc-full-num { position: absolute; top: 32px; right: 32px; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700; color: rgba(31,58,52,0.12); letter-spacing: 0.05em; }
.svc-full-name { font-size: 20px; font-weight: 700; color: var(--pine); margin-bottom: 10px; letter-spacing: -0.01em; }
.svc-full-desc { font-size: 14px; color: var(--stone); line-height: 1.65; margin-bottom: 20px; }
.svc-full-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.svc-full-list li { font-size: 13px; color: var(--stone); padding-left: 18px; position: relative; line-height: 1.5; }
.svc-full-list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; background: var(--honey); border-radius: 50%; }

/* ─── CONTACT ─── */
.contact-layout { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; }
.contact-h2 { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 500; color: var(--pine); letter-spacing: -0.02em; margin-bottom: 8px; }
.contact-sub { font-size: 14px; color: var(--stone); line-height: 1.6; margin-bottom: 32px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 12px; font-weight: 600; color: var(--pine); letter-spacing: 0.04em; text-transform: uppercase; }
.form-input { padding: 12px 14px; font-size: 14px; font-family: 'Inter', sans-serif; border: 1.5px solid rgba(31,58,52,0.15); border-radius: 10px; background: #fff; color: var(--pine); outline: none; transition: border-color 0.2s, box-shadow 0.2s; -webkit-appearance: none; }
.form-input:focus { border-color: var(--honey); box-shadow: 0 0 0 3px rgba(216,154,83,0.12); }
.form-input::placeholder { color: rgba(92,106,99,0.5); }
.form-textarea { resize: vertical; min-height: 100px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card { background: #fff; border: 1px solid rgba(31,58,52,0.08); border-radius: 16px; padding: 24px; }
.contact-info-dark { background: var(--forest) !important; border-color: transparent !important; }
.contact-info-title { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--honey); margin-bottom: 8px; }
.contact-info-text { font-size: 14px; color: var(--stone); line-height: 1.6; }
.contact-info-link { font-size: 14px; color: var(--pine); font-weight: 600; text-decoration: none; }
.contact-info-link:hover { color: var(--honey); }

/* ─── WHY PAGE ─── */
.why-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 80px; }
.why-intro-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-stat { background: #fff; border: 1px solid rgba(31,58,52,0.08); border-radius: 16px; padding: 28px 24px; }
.why-stat-num { font-family: 'Inter', sans-serif; font-size: 44px; font-weight: 800; color: var(--pine); letter-spacing: -0.04em; line-height: 1; margin-bottom: 6px; }
.why-stat-num span { font-size: 28px; color: var(--honey); }
.why-stat-label { font-size: 12px; color: var(--stone); line-height: 1.4; }
.why-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-pillar { background: #fff; border: 1px solid rgba(31,58,52,0.08); border-radius: 16px; padding: 32px 28px; transition: transform 0.25s, box-shadow 0.25s; }
.why-pillar:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(20,36,31,0.08); }
.why-pillar-icon { width: 44px; height: 44px; background: rgba(216,154,83,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.why-pillar-title { font-size: 16px; font-weight: 700; color: var(--pine); margin-bottom: 10px; }
.why-pillar-desc { font-size: 13px; color: var(--stone); line-height: 1.65; }

/* ─── QUOTE (full page) ─── */
.quote-full { max-width: 680px; margin: 0 auto; text-align: center; }
.quote-full-text { font-family: 'Cormorant Garamond', serif; font-size: clamp(22px, 3vw, 32px); font-style: italic; font-weight: 400; color: #F6F1E8; line-height: 1.45; letter-spacing: -0.01em; }
.quote-full-cite { display: block; margin-top: 24px; font-size: 13px; color: var(--sage); letter-spacing: 0.04em; }

/* ─── COMPARISON TABLE ─── */
.compare-table { border-radius: 16px; overflow: hidden; border: 1px solid rgba(31,58,52,0.1); }
.compare-row { display: grid; grid-template-columns: 2fr 2fr 2fr; }
.compare-row-header { background: var(--pine); }
.compare-row:not(.compare-row-header):nth-child(even) { background: rgba(31,58,52,0.03); }
.compare-cell { padding: 16px 20px; font-size: 13px; color: var(--stone); border-bottom: 1px solid rgba(31,58,52,0.07); line-height: 1.5; }
.compare-row-header .compare-cell { font-size: 11px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(246,241,232,0.6); border-bottom: none; padding: 14px 20px; }
.compare-label { font-weight: 600; color: var(--pine); }
.compare-diy { color: #8a6a60; }
.compare-us { color: var(--pine); font-weight: 500; }
.compare-us::before { content: "✓ "; color: var(--honey); font-weight: 700; }

/* ─── TESTIMONIALS ─── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card { background: rgba(246,241,232,0.06); border: 1px solid rgba(246,241,232,0.1); border-radius: 20px; padding: 32px 28px; display: flex; flex-direction: column; gap: 24px; }
.testimonial-quote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 17px; color: rgba(246,241,232,0.85); line-height: 1.65; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-initials { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; background: rgba(216,154,83,0.2); border: 1px solid rgba(216,154,83,0.4); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--honey); letter-spacing: 0.05em; }
.testimonial-name { font-size: 13px; font-weight: 700; color: rgba(246,241,232,0.9); }
.testimonial-detail { font-size: 11px; color: rgba(246,241,232,0.45); margin-top: 2px; }

/* ─── FAQ ─── */
.faq-layout { display: grid; grid-template-columns: 340px 1fr; gap: 64px; align-items: start; }
.faq-left { position: sticky; top: 100px; }
.faq-right { display: flex; flex-direction: column; }
.faq-item { padding: 24px 0; border-bottom: 1px solid rgba(31,58,52,0.1); }
.faq-item:first-child { border-top: 1px solid rgba(31,58,52,0.1); }
.faq-q { font-size: 15px; font-weight: 700; color: var(--pine); line-height: 1.4; margin-bottom: 10px; }
.faq-a { font-size: 14px; color: var(--stone); line-height: 1.7; }

/* ─── MOBILE ─── */
@media (max-width: 900px) {

  /* NAV */
  nav { padding: 0 20px; gap: 0; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .lang-switch { margin-left: auto; margin-right: 10px; }
  .nav-hamburger { display: flex; margin-left: 0; }
  /* Hamburger bars: light on dark-hero pages before scroll */
  body.dark-hero nav:not(.scrolled) .nav-hamburger span { background: #F6F1E8; }
  /* Hamburger open → X shape */
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .section { padding: 64px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-cards { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .cta-banner-inner { flex-direction: column; text-align: center; gap: 28px; }
  .cta-banner-actions { align-items: center; }
  .services-full-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .why-intro { grid-template-columns: 1fr; gap: 36px; }
  .why-intro-stats { grid-template-columns: 1fr 1fr; }
  .why-pillars { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .faq-left { position: static; }
  .page-hero { padding: 110px 24px 60px; }
  div[style*="grid-template-columns:repeat(4,1fr)"] { grid-template-columns: repeat(2,1fr) !important; }
  .compare-row { grid-template-columns: 1fr; border-bottom: 1px solid rgba(31,58,52,0.08); }
  .compare-row-header { display: none; }
  .compare-cell { border-bottom: none; padding: 10px 16px; }
  .compare-label { font-weight: 700; color: var(--pine); padding-top: 16px; }
  /* Section h2 and sub */
  .section-h2 { font-size: clamp(32px, 7vw, 48px); }
  /* CTA banner */
  .cta-banner { padding: 60px 24px; }
  .cta-h2 { font-size: clamp(26px, 7vw, 38px); }
  .cta-sub { font-size: 14px; }
}

@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; }
  .why-cards { grid-template-columns: 1fr; }
  .why-pillars { grid-template-columns: 1fr; }
  .why-intro-stats { grid-template-columns: 1fr 1fr; }
  /* Hero stats row wraps nicely */
  .hero-stats { gap: 20px; }
  .hero-stat-num { font-size: 26px; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 40px; }
  .hero-sub { font-size: 15px; }
  .page-hero-h1 { font-size: 36px; }
  .page-hero-sub { font-size: 14px; }
  .hero-stat-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { padding: 100px 20px 48px; gap: 36px; }
  .section { padding: 52px 20px; }
  .btn-primary, .btn-outline { font-size: 13px; padding: 13px 22px; }
  /* Why page stat numbers smaller */
  .why-stat-num { font-size: 36px; }
  .cta-banner-inner > a { width: 100%; justify-content: center; }
}

/* ─── OFFERING GRID (services section) ─── */
.offering-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 56px;
  align-items: start;
}
.offering-card {
  background: #fff;
  border: 1px solid rgba(31,58,52,0.1);
  border-radius: 20px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.offering-card.offering-featured {
  background: var(--forest);
  border-color: transparent;
}
.offering-badge {
  position: absolute;
  top: -13px;
  left: 32px;
  background: var(--honey);
  color: var(--forest);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}
.offering-icon {
  width: 48px; height: 48px;
  background: rgba(216,154,83,0.12);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.offering-featured .offering-icon { background: rgba(216,154,83,0.15); }
.offering-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--pine);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.offering-featured .offering-title { color: #F6F1E8; }
.offering-desc {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.7;
}
.offering-featured .offering-desc { color: rgba(246,241,232,0.6); }
.offering-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.offering-list li {
  font-size: 13px;
  color: rgba(246,241,232,0.75);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.offering-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 6px; height: 6px;
  background: var(--honey);
  border-radius: 50%;
}
/* À la carte items */
.alacarte-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
.alacarte-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(31,58,52,0.07);
}
.alacarte-item:last-child { border-bottom: none; padding-bottom: 0; }
.alacarte-icon {
  width: 32px; height: 32px;
  background: rgba(216,154,83,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.alacarte-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--pine);
  margin-bottom: 4px;
}
.alacarte-desc {
  font-size: 12px;
  color: var(--stone);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .offering-grid { grid-template-columns: 1fr; }
}

/* ─── SERVICES PAGE REDESIGN ─── */

/* Hero 2-col layout */
.svc-hero { padding: 0 !important; min-height: 100vh; display: flex; align-items: center; }
.svc-hero-inner { max-width: 1200px; margin: 0 auto; padding: 140px 80px 80px; display: grid; grid-template-columns: 1fr 400px; gap: 80px; align-items: center; width: 100%; }
.svc-hero-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; border-radius: 20px; overflow: hidden; }
.svc-hero-stat { background: rgba(246,241,232,0.06); padding: 32px 28px; display: flex; flex-direction: column; gap: 8px; backdrop-filter: blur(4px); transition: background 0.25s; }
.svc-hero-stat:hover { background: rgba(246,241,232,0.1); }
.svc-stat-num { font-family: 'Inter', sans-serif; font-size: 36px; font-weight: 800; color: var(--honey); letter-spacing: -0.04em; line-height: 1; }
.svc-stat-label { font-size: 12px; color: rgba(246,241,232,0.5); letter-spacing: 0.03em; line-height: 1.4; }

/* Service quick-nav strip */
.svc-nav-strip { background: var(--pine); border-bottom: 1px solid rgba(246,241,232,0.08); position: sticky; top: 68px; z-index: 90; }
.svc-nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 80px; display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; }
.svc-nav-inner::-webkit-scrollbar { display: none; }
.svc-nav-pill { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 500; color: rgba(246,241,232,0.5); padding: 14px 16px; white-space: nowrap; text-decoration: none; border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s; letter-spacing: 0.02em; }
.svc-nav-pill:hover { color: #F6F1E8; border-bottom-color: var(--honey); }

/* Section head: side-by-side label + subtitle */
.svc-section-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; }

/* BENTO GRID */
.svc-bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* Wide cards span 2 columns */
.svc-card--wide { grid-column: span 2; }

/* Base card */
.svc-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 20px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(31,58,52,0.08);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1.5px solid transparent;
  transition: border-color 0.25s;
  pointer-events: none;
}
.svc-card:hover { transform: translateY(-3px); box-shadow: 0 24px 64px rgba(20,36,31,0.1); }
.svc-card:hover::before { border-color: var(--honey); }

/* Dark variant */
.svc-card--dark { background: var(--forest); border-color: transparent; }
.svc-card--dark .svc-card-name { color: #F6F1E8; }
.svc-card--dark .svc-card-desc { color: rgba(246,241,232,0.6); }
.svc-card--dark .svc-card-pills li { background: rgba(246,241,232,0.1); color: rgba(246,241,232,0.7); }
.svc-card--dark .svc-card-pills li:hover { background: rgba(216,154,83,0.25); color: #D89A53; }
.svc-card--dark .svc-card-num { color: rgba(246,241,232,0.07); }

/* Accent variant (honey tint) */
.svc-card--accent { background: #FBF3E7; border-color: rgba(216,154,83,0.2); }
.svc-card--accent .svc-card-icon { background: rgba(216,154,83,0.15); }
.svc-card--accent .svc-card-icon svg { stroke: var(--forest); }
.svc-card--accent .svc-card-pills li { background: rgba(216,154,83,0.12); color: #8a5a1a; }

/* Card number watermark */
.svc-card-num {
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  color: rgba(31,58,52,0.07);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

/* Card body */
.svc-card-body { display: flex; flex-direction: column; gap: 8px; }
.svc-card-icon { width: 34px; height: 34px; background: rgba(216,154,83,0.1); border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.svc-card-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--pine); letter-spacing: -0.01em; line-height: 1.1; }
.svc-card-desc { font-size: 13px; color: var(--stone); line-height: 1.6; }

/* Wide card horizontal layout */
.svc-card--wide .svc-card-body { flex-direction: row; gap: 20px; align-items: flex-start; }
.svc-card--wide .svc-card-icon { margin-top: 2px; }
.svc-card--wide .svc-card-desc { font-size: 13px; }

/* Pills */
.svc-card-pills { list-style: none; display: flex; flex-wrap: wrap; gap: 5px; }
.svc-card-pills li {
  font-size: 11px;
  font-weight: 500;
  color: var(--pine);
  background: rgba(31,58,52,0.06);
  border-radius: 100px;
  padding: 4px 10px;
  letter-spacing: 0.01em;
  transition: background 0.2s, color 0.2s;
  cursor: default;
}
.svc-card-pills li:hover { background: rgba(216,154,83,0.15); color: var(--forest); }

/* Comparison redesign */
.svc-compare-head { margin-bottom: 56px; }
.svc-compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; border-radius: 20px; overflow: hidden; }
.svc-compare-col { display: flex; flex-direction: column; }
.svc-compare-col-header { padding: 28px 36px 20px; }
.svc-compare-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; }
.svc-compare-tag--bad { background: rgba(255,255,255,0.06); color: rgba(246,241,232,0.4); }
.svc-compare-tag--good { background: var(--honey); color: var(--forest); }
.svc-compare-diy { background: rgba(246,241,232,0.04); }
.svc-compare-us { background: rgba(246,241,232,0.09); }
.svc-compare-item {
  padding: 18px 36px;
  font-size: 14px;
  color: rgba(246,241,232,0.55);
  border-top: 1px solid rgba(246,241,232,0.05);
  line-height: 1.55;
}
.svc-compare-us .svc-compare-item {
  color: rgba(246,241,232,0.85);
  font-weight: 500;
}
.svc-compare-us .svc-compare-item::before { content: "✓  "; color: var(--honey); font-weight: 700; }
.svc-compare-time {
  padding: 24px 36px;
  border-top: 1px solid rgba(246,241,232,0.05);
  font-size: 13px;
  margin-top: auto;
}
.svc-compare-time span { display: block; font-size: 28px; font-weight: 800; letter-spacing: -0.03em; font-family: 'Inter', sans-serif; margin-bottom: 4px; }
.svc-compare-time--bad { color: rgba(246,241,232,0.35); }
.svc-compare-time--bad span { color: rgba(200,80,60,0.8); }
.svc-compare-time--good { color: rgba(246,241,232,0.6); }
.svc-compare-time--good span { color: var(--honey); }

/* Mobile overrides for new services layout */
@media (max-width: 768px) {
  .svc-hero-inner { grid-template-columns: 1fr; padding: 120px 24px 60px; gap: 40px; }
  .svc-hero-stat-grid { grid-template-columns: 1fr 1fr; }
  .svc-nav-inner { padding: 0 20px; }
  .svc-section-head { flex-direction: column; gap: 16px; }
  .svc-bento { grid-template-columns: 1fr; }
  .svc-card--wide { grid-column: span 1; }
  .svc-card--wide .svc-card-body { flex-direction: column; gap: 14px; }
  .svc-card { padding: 28px; }
  .svc-compare-grid { grid-template-columns: 1fr; }
  .svc-compare-item, .svc-compare-time, .svc-compare-col-header { padding-left: 24px; padding-right: 24px; }
}
