/* ============================================
   Ako Janitorial Services — Shared Styles
   Sage + terracotta + cream / warm humanist
   ============================================ */

:root {
  /* Brand palette */
  --sage-50:  #F0F4EE;
  --sage-100: #DDE6D7;
  --sage-300: #A8C09C;
  --sage-500: #7BA081;
  --sage-700: #5C8064;
  --sage-900: #324A38;

  --terracotta-50:  #FBEDE5;
  --terracotta-300: #E3A282;
  --terracotta-500: #C77B5C;
  --terracotta-700: #9A5A40;

  --cream:     #F8F5EE;
  --cream-2:   #F2EDE2;
  --ink:       #2A2A2A;
  --ink-soft:  #5A5A5A;
  --ink-faint: #8C8C8C;
  --line:      #E5E0D4;
  --line-soft: #EFEAE0;
  --white:     #FFFFFF;

  /* Typography scales */
  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --t-hero: clamp(40px, 6.5vw, 84px);
  --t-h1:   clamp(36px, 5vw, 64px);
  --t-h2:   clamp(28px, 3.6vw, 44px);
  --t-h3:   clamp(20px, 1.6vw, 24px);
  --t-lead: clamp(18px, 1.4vw, 22px);
  --t-body: 17px;
  --t-small: 14px;

  /* Spacing */
  --space-section: clamp(64px, 8vw, 120px);
  --space-hero:    clamp(80px, 10vw, 160px);

  /* Shapes */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(50, 74, 56, 0.06), 0 2px 6px rgba(50, 74, 56, 0.04);
  --shadow-md: 0 4px 12px rgba(50, 74, 56, 0.08), 0 12px 28px rgba(50, 74, 56, 0.06);
  --shadow-lg: 0 12px 32px rgba(50, 74, 56, 0.10), 0 24px 56px rgba(50, 74, 56, 0.08);
}

/* ============ Reset ============ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ============ Typography ============ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--sage-900);
  margin: 0;
}
.hero-title { font-size: var(--t-hero); font-weight: 400; }
h1 { font-size: var(--t-h1); }
h2 { font-size: var(--t-h2); }
h3 { font-size: var(--t-h3); }
.lead { font-size: var(--t-lead); line-height: 1.5; color: var(--ink-soft); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta-500);
  margin: 0 0 16px 0;
}

/* ============ Layout ============ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: var(--space-section) 0; }

/* ============ Header / Nav ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 245, 238, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sage-500);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--sage-900);
  letter-spacing: -0.01em;
}
.brand-tag {
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: -2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links a {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 150ms ease;
}
.nav-links a:hover { color: var(--sage-700); }
.nav-links a.active { color: var(--sage-700); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--terracotta-500);
  border-radius: 1px;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sage-900);
  color: var(--cream);
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  transition: background 150ms ease, transform 150ms ease;
}
.nav-cta:hover { background: var(--sage-700); transform: translateY(-1px); }
.nav-cta-icon { font-size: 12px; }

/* Mobile nav (CSS only via checkbox hack) */
.nav-toggle { display: none; }
.nav-toggle-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: var(--r-sm);
  align-items: center;
  justify-content: center;
}
.nav-toggle-btn span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
}
.nav-toggle-btn span::before,
.nav-toggle-btn span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
}
.nav-toggle-btn span::before { top: -6px; }
.nav-toggle-btn span::after  { top: 6px; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border: none;
  transition: all 180ms ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--sage-900);
  color: var(--cream);
}
.btn-primary:hover { background: var(--sage-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: transparent;
  color: var(--sage-900);
  border: 1.5px solid var(--sage-900);
}
.btn-secondary:hover { background: var(--sage-900); color: var(--cream); }
.btn-accent {
  background: var(--terracotta-500);
  color: var(--cream);
}
.btn-accent:hover { background: var(--terracotta-700); transform: translateY(-2px); }
.btn-text {
  background: transparent;
  color: var(--sage-700);
  padding: 8px 0;
  border-bottom: 1.5px solid var(--sage-700);
  border-radius: 0;
}
.btn-text:hover { color: var(--terracotta-500); border-color: var(--terracotta-500); }

/* ============ Hero (homepage) ============ */
.hero {
  padding: var(--space-hero) 0 calc(var(--space-hero) * 0.7);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.hero-title {
  margin-bottom: 24px;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero-title em {
  font-style: normal;
  color: var(--terracotta-500);
}
.hero-sub {
  font-size: var(--t-lead);
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.5;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero-aside {
  position: relative;
}
.hero-image-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--sage-100) url("https://images.pexels.com/photos/6996087/pexels-photo-6996087.jpeg?auto=compress&cs=tinysrgb&w=1200") center/cover;
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
}
.hero-image-badge {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: var(--cream);
  border-radius: var(--r-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  transform: rotate(-3deg);
  max-width: 220px;
}
.hero-image-badge-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--terracotta-500);
  font-weight: 500;
  line-height: 1;
}
.hero-image-badge-label {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 4px;
  line-height: 1.3;
}
.hero-decor {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sage-300) 0%, transparent 70%);
  filter: blur(40px);
  opacity: 0.4;
  top: -100px;
  right: -120px;
  z-index: 0;
}

/* ============ Trust Strip ============ */
.trust-strip {
  background: var(--sage-900);
  color: var(--cream);
  padding: 28px 0;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}
.trust-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sage-500);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

/* ============ Differentiation Block ============ */
.diff-block {
  padding: var(--space-section) 0;
  text-align: center;
  background:
    radial-gradient(circle at 30% 20%, var(--terracotta-50) 0%, transparent 50%),
    radial-gradient(circle at 75% 80%, var(--sage-50) 0%, transparent 55%),
    var(--cream);
}
.diff-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.25;
  max-width: 880px;
  margin: 0 auto;
  color: var(--sage-900);
}
.diff-quote em {
  font-style: normal;
  color: var(--terracotta-500);
}
.diff-author {
  margin-top: 24px;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ============ Section Header ============ */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.section-head-text { max-width: 640px; }
.section-head h2 { margin-bottom: 12px; }
.section-head p { color: var(--ink-soft); margin: 0; }

/* ============ Services Grid ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  border: 1px solid var(--line);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage-300);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: var(--sage-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--sage-700);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: 10px; color: var(--sage-900); }
.service-card p {
  margin: 0 0 16px 0;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.service-card-link {
  font-size: 14px;
  color: var(--sage-700);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card-link::after { content: "→"; transition: transform 150ms ease; }
.service-card:hover .service-card-link::after { transform: translateX(4px); }

/* ============ Meet Inga ============ */
.meet-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.meet-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--sage-100) 0%, var(--terracotta-50) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.meet-photo-initials {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 400;
  color: var(--sage-700);
  letter-spacing: -0.04em;
  opacity: 0.6;
}
.meet-photo-note {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(248, 245, 238, 0.92);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.meet-content .eyebrow { color: var(--terracotta-500); }
.meet-content h2 { margin-bottom: 24px; }
.meet-content p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 20px 0;
}
.meet-sig {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--sage-900);
  margin-top: 12px;
}

/* ============ Service Area Mini ============ */
.area-block {
  background: var(--cream-2);
  padding: var(--space-section) 0;
}
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.area-content h2 { margin-bottom: 16px; }
.area-cities {
  list-style: none;
  padding: 0;
  margin: 24px 0 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
.area-cities li {
  font-size: 15px;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 1px solid var(--line-soft);
}
.area-cities li::before {
  content: "◇";
  color: var(--terracotta-500);
  margin-right: 10px;
  font-size: 10px;
}
.area-map {
  aspect-ratio: 1 / 1;
  background: var(--white);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.area-map-svg { width: 100%; height: 100%; }

/* ============ Testimonials Placeholder ============ */
.testimonials {
  padding: var(--space-section) 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px;
  border: 1px solid var(--line);
}
.testi-stars {
  color: var(--terracotta-500);
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 18px;
}
.testi-quote {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.45;
  color: var(--sage-900);
  font-style: italic;
  margin: 0 0 24px 0;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--sage-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  font-family: var(--font-display);
}
.testi-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.testi-meta {
  font-size: 13px;
  color: var(--ink-faint);
}
.testi-placeholder-note {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--ink-faint);
  font-style: italic;
}

/* ============ Final CTA ============ */
.final-cta {
  background: var(--sage-900);
  color: var(--cream);
  padding: var(--space-section) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--terracotta-500) 0%, transparent 60%);
  opacity: 0.15;
  filter: blur(60px);
}
.final-cta::after {
  content: "";
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sage-300) 0%, transparent 60%);
  opacity: 0.15;
  filter: blur(60px);
}
.final-cta-inner { position: relative; z-index: 2; }
.final-cta h2 {
  color: var(--cream);
  font-style: italic;
  margin-bottom: 16px;
}
.final-cta p {
  font-size: var(--t-lead);
  color: rgba(248, 245, 238, 0.8);
  margin: 0 auto 32px;
  max-width: 580px;
}
.final-cta .btn-primary {
  background: var(--terracotta-500);
}
.final-cta .btn-primary:hover { background: var(--terracotta-700); }
.final-cta .btn-secondary {
  border-color: var(--cream);
  color: var(--cream);
}
.final-cta .btn-secondary:hover {
  background: var(--cream);
  color: var(--sage-900);
}

/* ============ Footer ============ */
.site-footer {
  background: var(--cream-2);
  padding: 64px 0 32px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 18px 0;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li {
  margin-bottom: 10px;
  font-size: 14px;
}
.footer-col a:hover { color: var(--terracotta-500); }
.footer-brand-text {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 12px 0 18px;
  max-width: 320px;
}
.footer-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-badge {
  background: var(--sage-50);
  color: var(--sage-900);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--sage-100);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--ink-faint);
}

/* ============ Page Hero (sub-pages) ============ */
.page-hero {
  padding: calc(var(--space-hero) * 0.8) 0 var(--space-section);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, var(--sage-50) 0%, transparent 60%),
    var(--cream);
}
.page-hero h1 { margin-bottom: 16px; font-style: italic; }
.page-hero h1 em { font-style: normal; color: var(--terracotta-500); }
.page-hero p {
  font-size: var(--t-lead);
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto;
}

/* ============ Service Detail Blocks (Services page) ============ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse .service-detail-img { order: 2; }
.service-detail-img {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-xl);
  background: var(--sage-100);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-md);
}
.service-detail .eyebrow { color: var(--terracotta-500); }
.service-detail h2 { margin-bottom: 16px; }
.service-detail p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 16px 0;
}
.service-detail-who {
  background: var(--cream-2);
  padding: 16px 20px;
  border-left: 3px solid var(--terracotta-500);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin: 20px 0 28px;
}
.service-detail-who-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta-500);
  margin-bottom: 4px;
}
.service-detail-who-text {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}

/* ============ About Page ============ */
.about-story {
  font-size: var(--t-lead);
  line-height: 1.7;
  color: var(--ink);
}
.about-story p { margin: 0 0 22px 0; }
.about-story p:first-child::first-letter {
  font-family: var(--font-display);
  font-size: 64px;
  float: left;
  line-height: 0.9;
  margin: 6px 12px 0 0;
  color: var(--terracotta-500);
  font-weight: 400;
}
.about-sig {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  color: var(--sage-900);
  margin-top: 8px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.value-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}
.value-icon {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--terracotta-500);
  margin-bottom: 12px;
  line-height: 1;
}
.value-card h3 { margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--ink-soft); margin: 0; line-height: 1.5; }

/* ============ Form ============ */
.form-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: flex-start;
}
.form-side h2 { margin-bottom: 16px; }
.form-side p { color: var(--ink-soft); margin: 0 0 32px 0; }
.contact-block {
  background: var(--cream-2);
  padding: 28px;
  border-radius: var(--r-lg);
  margin-bottom: 16px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.contact-row:last-child { border-bottom: none; }
.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage-500);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
}
.contact-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--sage-900);
}
.quote-form {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.field label .req { color: var(--terracotta-500); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  transition: border-color 150ms ease, background 150ms ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sage-500);
  background: var(--white);
}
.field textarea { min-height: 110px; resize: vertical; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.consent {
  font-size: 12px;
  color: var(--ink-faint);
  line-height: 1.5;
  margin: 16px 0 0 0;
}
.consent a { color: var(--sage-700); text-decoration: underline; }
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* ============ FAQ ============ */
.faq-list { margin-top: 16px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 0;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 150ms ease;
}
.faq-item[open] { border-color: var(--sage-300); }
.faq-item summary {
  padding: 22px 24px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--sage-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--terracotta-500);
  line-height: 1;
  transition: transform 200ms ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item-body {
  padding: 0 24px 22px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ============ Service Area Map (page) ============ */
.area-map-large {
  aspect-ratio: 16 / 10;
  background: var(--white);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 56px;
}
.area-cities-large {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 32px;
  max-width: 920px;
  margin: 0 auto;
}
.area-cities-large li {
  font-size: 17px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
}
.area-cities-large li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--sage-50);
  color: var(--sage-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle-btn { display: inline-flex; }
  .nav-cta { padding: 8px 14px; font-size: 13px; }

  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-aside { max-width: 480px; margin: 0 auto; }
  .hero-image-card { transform: rotate(0); }
  .hero-image-badge { left: 20px; bottom: -32px; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .meet-block { grid-template-columns: 1fr; gap: 40px; }
  .meet-photo { max-width: 380px; margin: 0 auto; }
  .area-grid { grid-template-columns: 1fr; gap: 40px; }
  .area-cities { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-wrap { grid-template-columns: 1fr; gap: 40px; }
  .service-detail { grid-template-columns: 1fr; gap: 32px; }
  .service-detail.reverse .service-detail-img { order: 0; }
  .values-grid { grid-template-columns: 1fr; }
  .area-cities-large { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .area-cities-large { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .trust-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .quote-form { padding: 28px 20px; }
}

/* ============ Booking page ============ */
.booking-page { padding: 60px 0 var(--space-section); }

.stepper {
  display: flex;
  justify-content: space-between;
  max-width: 760px;
  margin: 0 auto 56px;
  position: relative;
  gap: 4px;
}
.stepper::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: var(--line);
  z-index: 0;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
  flex: 1;
}
.step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  color: var(--ink-faint);
  transition: all 200ms ease;
}
.step.active .step-num {
  background: var(--sage-900);
  border-color: var(--sage-900);
  color: var(--cream);
  box-shadow: 0 0 0 6px rgba(50, 74, 56, 0.08);
}
.step.done .step-num {
  background: var(--sage-500);
  border-color: var(--sage-500);
  color: var(--cream);
}
.step.done .step-num::after { content: "✓"; }
.step.done .step-num span { display: none; }
.step-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  text-align: center;
}
.step.active .step-label,
.step.done .step-label { color: var(--sage-900); }

.booking-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: flex-start;
}
.booking-main {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.booking-main h2 { margin-bottom: 12px; }
.booking-main .step-intro {
  color: var(--ink-soft);
  margin: 0 0 32px 0;
  font-size: 16px;
}
.booking-step { display: none; }
.booking-step.active { display: block; animation: fadeIn 220ms ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.service-picks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 8px;
}
.service-pick {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all 150ms ease;
}
.service-pick:hover {
  border-color: var(--sage-300);
  background: var(--sage-50);
}
.service-pick input {
  margin-top: 3px;
  accent-color: var(--sage-700);
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
}
.service-pick.selected {
  border-color: var(--sage-700);
  background: var(--sage-50);
}
.service-pick-title {
  font-weight: 600;
  font-size: 15px;
  color: var(--sage-900);
  margin-bottom: 2px;
}
.service-pick-desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.45;
}

.calendar-card {
  background: var(--cream);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  padding: 28px;
  margin-bottom: 24px;
}
.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.calendar-month {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--sage-900);
}
.calendar-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: var(--ink);
  transition: all 150ms ease;
  font-family: var(--font-body);
}
.calendar-nav-btn:hover { background: var(--sage-50); border-color: var(--sage-300); }
.calendar-nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 6px;
}
.calendar-weekday {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  text-align: center;
  padding: 6px 0;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  background: var(--white);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 150ms ease;
  font-family: var(--font-body);
}
.calendar-day:hover:not(:disabled):not(.other-month) {
  background: var(--sage-50);
  border-color: var(--sage-300);
}
.calendar-day:disabled {
  color: var(--ink-faint);
  opacity: 0.35;
  cursor: not-allowed;
  background: transparent;
  text-decoration: line-through;
}
.calendar-day.other-month {
  visibility: hidden;
}
.calendar-day.today {
  font-weight: 700;
  color: var(--terracotta-500);
  border-color: var(--terracotta-300);
}
.calendar-day.selected {
  background: var(--sage-900);
  color: var(--cream);
  border-color: var(--sage-900);
}
.calendar-day.selected.today { color: var(--cream); }
.calendar-legend {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  font-size: 12px;
  color: var(--ink-faint);
  flex-wrap: wrap;
}
.calendar-legend-item { display: flex; align-items: center; gap: 6px; }
.calendar-legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--sage-900);
}
.calendar-legend-dot.today { background: transparent; border: 1.5px solid var(--terracotta-300); }
.calendar-legend-dot.unavailable { background: transparent; border: 1px solid var(--line); position: relative; }
.calendar-legend-dot.unavailable::after {
  content: "";
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: var(--ink-faint);
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.time-slot {
  padding: 14px 8px;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: all 150ms ease;
}
.time-slot:hover:not(:disabled) {
  border-color: var(--sage-300);
  background: var(--sage-50);
}
.time-slot:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}
.time-slot.selected {
  background: var(--sage-900);
  color: var(--cream);
  border-color: var(--sage-900);
}

.step-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 36px;
  gap: 16px;
  flex-wrap: wrap;
}
.step-actions .back-link {
  background: transparent;
  border: none;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 0;
}
.step-actions .back-link:hover { color: var(--sage-900); }

.summary-card {
  background: var(--cream-2);
  border-radius: var(--r-lg);
  padding: 24px;
  margin-bottom: 24px;
}
.summary-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--sage-900);
}
.summary-card-sub {
  font-size: 13px;
  color: var(--ink-faint);
  margin-bottom: 16px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  gap: 16px;
  font-size: 14px;
}
.summary-row:last-child { border-bottom: none; }
.summary-label {
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  padding-top: 2px;
}
.summary-value {
  text-align: right;
  color: var(--ink);
  font-weight: 600;
}

.booking-aside { position: sticky; top: 100px; }
.aside-card {
  background: var(--sage-900);
  color: var(--cream);
  border-radius: var(--r-lg);
  padding: 28px;
  margin-bottom: 16px;
}
.aside-card h3 {
  color: var(--cream);
  font-size: 19px;
  margin-bottom: 6px;
}
.aside-card-sub {
  font-size: 13px;
  color: rgba(248, 245, 238, 0.65);
  margin-bottom: 18px;
}
.aside-card-list { padding: 8px 0; }
.aside-card-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(248, 245, 238, 0.1);
  font-size: 14px;
  gap: 12px;
}
.aside-card-item:last-child { border-bottom: none; }
.aside-card-label {
  color: rgba(248, 245, 238, 0.65);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  flex-shrink: 0;
}
.aside-card-value {
  font-weight: 600;
  text-align: right;
  color: var(--cream);
}
.aside-empty {
  color: rgba(248, 245, 238, 0.5);
  font-style: italic;
  font-size: 13px;
  padding: 8px 0;
  text-align: center;
}
.aside-help {
  background: var(--cream-2);
  border-radius: var(--r-lg);
  padding: 24px;
  text-align: center;
}
.aside-help h4 {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0 0 8px 0;
  color: var(--sage-900);
}
.aside-help p {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0 0 14px 0;
}

.booking-success {
  text-align: center;
  padding: 60px 24px;
}
.booking-success-mark {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--sage-50);
  border: 2px solid var(--sage-500);
  color: var(--sage-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin-bottom: 24px;
}
.booking-success h2 {
  font-style: italic;
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .booking-layout { grid-template-columns: 1fr; }
  .booking-aside { position: static; }
  .service-picks { grid-template-columns: 1fr; }
  .time-grid { grid-template-columns: repeat(3, 1fr); }
  .booking-main { padding: 28px 22px; }
  .stepper { max-width: 100%; }
  .step-label { font-size: 9.5px; }
}

@media (max-width: 560px) {
  .time-grid { grid-template-columns: repeat(2, 1fr); }
  .step-num { width: 32px; height: 32px; font-size: 14px; }
  .stepper::before { top: 16px; }
  .calendar-card { padding: 18px; }
  .calendar-day { font-size: 13px; }
}

/* ============ Service hero illustrations (replaces stock photos) ============ */
/* Brand-consistent CSS illustrations used on each service detail page hero
   and on services.html overview blocks. Guaranteed on-topic, no
   external image dependencies, lightweight. */

.service-hero-illustration {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8%;
  background:
    radial-gradient(circle at 25% 18%, rgba(199, 123, 92, 0.18) 0%, transparent 35%),
    radial-gradient(circle at 78% 82%, rgba(123, 160, 129, 0.22) 0%, transparent 40%),
    linear-gradient(160deg, var(--sage-100) 0%, var(--cream-2) 55%, var(--terracotta-50) 100%);
}
.service-hero-illustration::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 22%, var(--sage-700) 1.5px, transparent 1.5px),
    radial-gradient(circle at 88% 14%, var(--terracotta-500) 1.5px, transparent 1.5px),
    radial-gradient(circle at 18% 80%, var(--terracotta-500) 1px, transparent 1px),
    radial-gradient(circle at 82% 72%, var(--sage-700) 1px, transparent 1px),
    radial-gradient(circle at 50% 8%, var(--sage-700) 1px, transparent 1px),
    radial-gradient(circle at 45% 92%, var(--terracotta-500) 1px, transparent 1px);
  opacity: 0.25;
  pointer-events: none;
}
.service-hero-illustration .illustration-frame {
  width: 100%;
  height: 78%;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--r-lg);
  border: 1px solid rgba(50, 74, 56, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 16px rgba(50, 74, 56, 0.06);
  position: relative;
  z-index: 1;
}
.service-hero-illustration .illustration-icon {
  width: 56%;
  height: auto;
  color: var(--sage-900);
  stroke-width: 1.2;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-hero-illustration .illustration-label {
  margin-top: 6%;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--sage-900);
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Smaller variant used on services.html overview blocks where the
   img column is half-width. Same look, slightly tighter padding. */
.service-detail .service-hero-illustration { padding: 6%; }
.service-detail .service-hero-illustration .illustration-frame { height: 80%; }

/* Home page hero — keeps card layout but uses an illustrated kitchen scene
   instead of a stock photo. Adjusts the hero-image-card class. */
.hero-image-card.illustration {
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px;
  background:
    radial-gradient(circle at 25% 18%, rgba(199, 123, 92, 0.18) 0%, transparent 35%),
    radial-gradient(circle at 78% 82%, rgba(123, 160, 129, 0.22) 0%, transparent 40%),
    linear-gradient(160deg, var(--sage-100) 0%, var(--cream-2) 55%, var(--terracotta-50) 100%);
}
.hero-image-card.illustration::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 22%, var(--sage-700) 1.5px, transparent 1.5px),
    radial-gradient(circle at 88% 14%, var(--terracotta-500) 1.5px, transparent 1.5px),
    radial-gradient(circle at 18% 80%, var(--terracotta-500) 1px, transparent 1px),
    radial-gradient(circle at 82% 72%, var(--sage-700) 1px, transparent 1px);
  opacity: 0.22;
  pointer-events: none;
}
.hero-image-card.illustration .illustration-frame {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.55);
  border-radius: var(--r-lg);
  border: 1px solid rgba(50, 74, 56, 0.08);
  position: relative;
  z-index: 1;
}
.hero-image-card.illustration .illustration-icon {
  width: 60%;
  height: auto;
  color: var(--sage-900);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============ Utility ============ */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
