/* =====================================================
   ANNIKA'S – Yoga & Energetik | Main Stylesheet 2026
   ===================================================== */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ── Design Tokens ── */
:root {
  --cream:       #F8F4EF;
  --cream-deep:  #F0EAE1;
  --sage:        #7B9E87;
  --sage-dark:   #4D7A5F;
  --sage-light:  #EBF2EC;
  --terra:       #C17F58;
  --terra-dark:  #A0653A;
  --charcoal:    #2C2C2C;
  --charcoal-md: #4A4A4A;
  --mid:         #8A8479;
  --border:      rgba(44,44,44,0.10);
  --warm-white:  #FDFAF7;
  --gold:        #B8924A;
  --gold-light:  #D4A85E;

  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans:  'Inter', system-ui, -apple-system, sans-serif;

  --section-py:  clamp(72px, 10vw, 140px);
  --max-w:       1240px;
  --px:          clamp(20px, 5vw, 80px);

  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --ease-o: cubic-bezier(0, 0, 0.2, 1);
  --t:      0.35s var(--ease);

  --sh-sm: 0 2px 10px rgba(44,44,44,0.07);
  --sh-md: 0 6px 28px rgba(44,44,44,0.11);
  --sh-lg: 0 18px 60px rgba(44,44,44,0.14);

  --r:    4px;
  --r-md: 10px;
  --r-lg: 20px;
  --r-xl: 32px;

  --nav-h: 76px;
  --banner-h: 0px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-sans);
  font-weight: 400;
  color: var(--charcoal);
  background: var(--warm-white);
  line-height: 1.65;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ── Typography ── */
h1, h2, h3 {
  font-family: var(--ff-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
}
h4, h5 {
  font-family: var(--ff-sans);
  font-weight: 600;
  line-height: 1.25;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
h4 { font-size: clamp(1rem, 1.5vw, 1.2rem); }
h5 { font-size: 0.875rem; }

p { font-size: clamp(0.95rem, 1.2vw, 1.05rem); color: var(--charcoal-md); }
p + p { margin-top: 1em; }

.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  font-family: var(--ff-sans);
  font-weight: 300;
  color: var(--charcoal-md);
  line-height: 1.6;
}

blockquote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--charcoal);
}

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

.section {
  padding: var(--section-py) 0;
}

.section--cream  { background: var(--cream); }
.section--sage   { background: var(--sage-light); }
.section--dark   { background: var(--charcoal); color: var(--warm-white); }
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--warm-white); }
.section--dark p  { color: rgba(253,250,247,0.75); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.text-center { text-align: center; }
.text-right  { text-align: right; }

.section-label {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 1rem;
}
.section-label--terra { color: var(--terra); }
.section-label--gold  { color: var(--gold); }

.section-heading {
  margin-bottom: 0.5rem;
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--sage);
  margin: 1.5rem 0;
}
.divider--center { margin-left: auto; margin-right: auto; }
.divider--terra  { background: var(--terra); }
.divider--gold   { background: var(--gold); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--ff-sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: var(--r);
  transition: var(--t);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: var(--t);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--sage);
  color: #fff;
  box-shadow: 0 4px 14px rgba(123,158,135,0.35);
}
.btn-primary:hover {
  background: var(--sage-dark);
  box-shadow: 0 6px 20px rgba(77,122,95,0.4);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1.5px solid var(--sage);
  color: var(--sage-dark);
}
.btn-outline:hover {
  background: var(--sage);
  color: #fff;
  transform: translateY(-1px);
}

.btn-terra {
  background: var(--terra);
  color: #fff;
  box-shadow: 0 4px 14px rgba(193,127,88,0.35);
}
.btn-terra:hover {
  background: var(--terra-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--charcoal);
  padding-left: 0;
  padding-right: 0;
}
.btn-ghost::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.btn-ghost:hover::before { transform: scaleX(1); }

.btn-sm { padding: 0.65rem 1.5rem; font-size: 0.82rem; }
.btn-lg { padding: 1.1rem 2.8rem; font-size: 0.95rem; }

/* ── Header / Navigation ── */
.site-header {
  position: fixed;
  top: var(--banner-h);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--t), box-shadow var(--t);
}

.site-header.transparent {
  background: transparent;
}
.site-header.scrolled, .site-header.solid {
  background: rgba(253,250,247,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity var(--t);
}
.logo:hover { opacity: 0.8; }

.logo-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: var(--ff-serif);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}
.logo-sub {
  font-family: var(--ff-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dark);
}

.transparent .logo-name,
.transparent .logo-sub { color: #fff; }
.transparent .logo-sub { color: rgba(255,255,255,0.75); }

/* Desktop Nav */
.main-nav { display: flex; align-items: center; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  border-radius: var(--r);
  transition: var(--t);
  white-space: nowrap;
}
.nav-list > li > a:hover {
  background: var(--sage-light);
  color: var(--sage-dark);
}
.nav-list > li > a.active {
  color: var(--sage-dark);
}

.transparent .nav-list > li > a { color: rgba(255,255,255,0.9); }
.transparent .nav-list > li > a:hover { background: rgba(255,255,255,0.12); color: #fff; }

.nav-chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.25s var(--ease);
  opacity: 0.6;
}
.nav-list > li:hover .nav-chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;           /* flush against nav item — no gap to cross */
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  min-width: 200px;
  padding: 0.5rem;
  padding-top: 0.75rem; /* visual breathing room below nav link */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  pointer-events: none;
}
.nav-list > li:hover .dropdown,
.nav-list > li:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.dropdown li a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--charcoal-md);
  border-radius: var(--r);
  transition: var(--t);
}
.dropdown li a:hover {
  background: var(--sage-light);
  color: var(--sage-dark);
}

.nav-cta {
  background: var(--sage) !important;
  color: #fff !important;
  border-radius: var(--r) !important;
  padding: 0.55rem 1.3rem !important;
  box-shadow: 0 3px 12px rgba(123,158,135,0.3);
}
.nav-cta:hover {
  background: var(--sage-dark) !important;
  box-shadow: 0 4px 18px rgba(77,122,95,0.4) !important;
}
.transparent .nav-cta { background: rgba(255,255,255,0.2) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r);
  transition: var(--t);
  gap: 0;
}
.hamburger:hover { background: var(--sage-light); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  transform-origin: center;
}
.hamburger span:nth-child(1) { margin-bottom: 5px; }
.hamburger span:nth-child(3) { margin-top: 5px; }
.transparent .hamburger span { background: #fff; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 90vw);
  height: 100dvh;
  background: var(--warm-white);
  z-index: 1100;
  padding: calc(var(--banner-h) + var(--nav-h) + 1rem) 1.5rem 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-o);
  box-shadow: var(--sh-lg);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav ul { display: flex; flex-direction: column; gap: 0.2rem; }
.mobile-nav a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  border-radius: var(--r);
  transition: var(--t);
}
.mobile-nav a:hover { background: var(--sage-light); color: var(--sage-dark); }
.mobile-nav .sub-group { padding-left: 1rem; }
.mobile-nav .sub-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
  padding: 1rem 1rem 0.4rem;
}
.mobile-nav .mobile-cta {
  margin-top: 1.5rem;
  width: 100%;
  justify-content: center;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,44,44,0.5);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.overlay.open { opacity: 1; visibility: visible; }

/* ── Hero Sections ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44,44,44,0.62) 0%,
    rgba(44,44,44,0.30) 60%,
    rgba(77,122,95,0.20) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--banner-h) + var(--nav-h) + 40px) var(--px) 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.25rem;
}
.hero h1 { color: #fff; max-width: 720px; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero .lead { color: rgba(255,255,255,0.85); max-width: 560px; margin-top: 1.25rem; }
.hero-actions { display: flex; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap; }

/* Page hero (shorter, for inner pages) */
.page-hero {
  position: relative;
  padding: calc(var(--banner-h) + var(--nav-h) + 60px) var(--px) 80px;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero .hero-bg::after {
  background: linear-gradient(
    180deg,
    rgba(44,44,44,0.55) 0%,
    rgba(44,44,44,0.48) 40%,
    rgba(44,44,44,0.60) 100%
  );
}
.page-hero .hero-bg img {
  filter: brightness(0.65) saturate(0.75);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.page-hero h1 { color: #fff; }
.page-hero .page-hero-sub {
  color: rgba(255,255,255,0.88);
  font-family: var(--ff-sans);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300;
  margin-top: 0.75rem;
}
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,0.65); transition: var(--t); }
.page-hero-breadcrumb a:hover { color: #fff; }
.page-hero-breadcrumb svg { width: 12px; height: 12px; }

/* Minimal hero for legal pages */
.mini-hero {
  padding: calc(var(--banner-h) + var(--nav-h) + 40px) var(--px) 48px;
  background: var(--cream);
}
.mini-hero h1 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--charcoal);
}
@media (max-width: 768px) {
  .mini-hero { text-align: center; }
  .mini-hero .divider { margin-left: auto; margin-right: auto; }
}

/* ── Notice Banner ── */
body.has-banner { --banner-h: 44px; }
@media (max-width: 600px) {
  body.has-banner { --banner-h: 56px; }
}

.notice-banner {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  background: linear-gradient(135deg, var(--terra) 0%, var(--terra-dark) 100%);
  color: #fff;
  text-align: center;
  padding: 0.6rem var(--px);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
body.has-banner .notice-banner {
  display: flex;
}
@media (max-width: 600px) {
  body.has-banner { --banner-h: 72px; }
  body.has-banner .notice-banner {
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.65rem var(--px);
  }
}
.notice-banner a { color: #fff; text-decoration: underline; }

/* ── Cards ── */
.card {
  background: var(--warm-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: var(--t);
  border: 1px solid var(--border);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.card-img { aspect-ratio: 16/10; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 1.75rem; }
.card-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 0.6rem;
}
.card h3 { margin-bottom: 0.6rem; }
.card p { font-size: 0.9rem; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sage-dark);
  transition: var(--t);
}
.card-link svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.card-link:hover { color: var(--sage); }
.card-link:hover svg { transform: translateX(4px); }

/* Service cards (large, 2-up) */
.service-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: var(--t);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.service-card-bg { position: absolute; inset: 0; }
.service-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  filter: brightness(0.62) saturate(0.75);
}
.service-card:hover .service-card-bg img { transform: scale(1.05); }
.service-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(44,44,44,0.90) 0%,
    rgba(44,44,44,0.65) 30%,
    rgba(44,44,44,0.50) 55%,
    rgba(44,44,44,0.40) 80%,
    rgba(44,44,44,0.32) 100%
  );
}
.service-card-body {
  position: relative;
  z-index: 1;
  padding: 2.5rem;
  color: #fff;
}
.service-card-body .card-label { color: rgba(255,255,255,0.7); }
.service-card-body h3 { color: #fff; font-size: clamp(1.6rem, 2.5vw, 2.2rem); margin-bottom: 0.5rem; }
.service-card-body p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.service-card-body .btn { margin-top: 1.5rem; }

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.pricing-card {
  background: var(--warm-white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.pricing-card.featured {
  border-color: var(--sage);
  background: linear-gradient(145deg, var(--sage-light) 0%, #fff 100%);
}
.pricing-card.featured::before {
  content: 'Beliebt';
  position: absolute;
  top: 1rem;
  right: -1.8rem;
  background: var(--sage);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 2.2rem;
  transform: rotate(35deg);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.pricing-icon {
  width: 56px;
  height: 56px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.pricing-icon svg { width: 28px; height: 28px; color: var(--sage-dark); }
.pricing-icon i { font-size: 1.4rem; color: var(--sage-dark); }
.pricing-name {
  font-family: var(--ff-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}
.pricing-price {
  font-family: var(--ff-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--sage-dark);
  line-height: 1;
  margin: 0.8rem 0 0.3rem;
}
.pricing-price sup { font-size: 1.2rem; vertical-align: super; }
.pricing-price sub { font-size: 0.9rem; color: var(--mid); }
.pricing-note {
  font-size: 0.82rem;
  color: var(--mid);
  margin-top: 0.3rem;
}
.pricing-divider {
  width: 32px;
  height: 1px;
  background: var(--border);
  margin: 1.5rem auto;
}
.pricing-features { text-align: left; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--charcoal-md);
  padding: 0.35rem 0;
}
.pricing-features li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.5em;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.testimonial-card {
  background: var(--warm-white);
  border-radius: var(--r-lg);
  padding: 2.25rem;
  border: 1px solid var(--border);
  position: relative;
  transition: var(--t);
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1.25rem;
  right: 1.75rem;
  font-family: var(--ff-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--sage-light);
  pointer-events: none;
}
.testimonial-text {
  font-family: var(--ff-sans);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  font-weight: 400;
  color: var(--charcoal-md);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-initials {
  width: 40px;
  height: 40px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-sans);
  font-weight: 600;
  color: var(--sage-dark);
  font-size: 0.875rem;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--charcoal);
}
.testimonial-role {
  font-size: 0.78rem;
  color: var(--mid);
}

/* ── Quote Block ── */
.quote-block {
  padding: var(--section-py) var(--px);
  text-align: center;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.quote-block::before {
  content: '\201C';
  position: absolute;
  top: -0.3em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-serif);
  font-size: 20rem;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
}
.quote-block blockquote {
  color: #fff;
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}
.quote-block cite {
  display: block;
  font-family: var(--ff-sans);
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 1.5rem;
}

/* ── Feature List (icon + text) ── */
.feature-list { display: flex; flex-direction: column; gap: 1.5rem; }
.feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--sage-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 22px; height: 22px; color: var(--sage-dark); }
.feature-icon--terra { background: #fdf0e8; }
.feature-icon--terra svg { color: var(--terra); }
.feature-body h4 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.feature-body p { font-size: 0.9rem; }

/* ── Checklist ── */
.checklist { display: flex; flex-direction: column; gap: 0.75rem; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--charcoal-md);
}
.checklist li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--sage-light);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%234D7A5F' d='M7.5 13.5L4 10l-1.4 1.4 4.9 4.9 10.5-10.5L16.6 4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  margin-top: 0.1em;
}

/* ── Contact Form ── */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.form-grid .field-full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-md);
}
.field input,
.field textarea,
.field select {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  background: var(--warm-white);
  color: var(--charcoal);
  font-size: 0.95rem;
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
  width: 100%;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(123,158,135,0.15);
}
.field input.error,
.field textarea.error { border-color: #e05555; }
.field textarea { resize: vertical; min-height: 140px; }
.field-error {
  font-size: 0.78rem;
  color: #e05555;
  margin-top: 0.2rem;
}
.form-status {
  padding: 1rem 1.25rem;
  border-radius: var(--r);
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
  margin-top: 1rem;
}
.form-status.success {
  background: rgba(123,158,135,0.12);
  border: 1px solid var(--sage);
  color: var(--sage-dark);
  display: block;
}
.form-status.error {
  background: rgba(224,85,85,0.08);
  border: 1px solid #e05555;
  color: #c02020;
  display: block;
}
.form-submit { display: flex; justify-content: flex-start; margin-top: 0.5rem; }

@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* ── Google Maps ── */
.map-container {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  background: var(--cream);
}
.map-placeholder {
  width: 100%;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--cream);
  border: 1.5px dashed var(--border);
  border-radius: var(--r-lg);
  text-align: center;
  padding: 2rem;
}
.map-placeholder svg { width: 48px; height: 48px; color: var(--mid); }
.map-placeholder p { font-size: 0.9rem; color: var(--mid); }
.map-iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: none;
}
.map-iframe.loaded { display: block; }

/* ── Cookie Consent ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: rgba(253,250,247,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 40px rgba(44,44,44,0.12);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-o);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem var(--px);
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 280px; }
.cookie-text h4 {
  font-size: 1rem;
  font-family: var(--ff-sans);
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.cookie-text p { font-size: 0.83rem; color: var(--mid); }
.cookie-text a { color: var(--sage-dark); text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ── Footer ── */
.site-footer {
  background: var(--charcoal);
  color: rgba(253,250,247,0.75);
  padding: var(--section-py) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: var(--section-py);
}
.footer-brand .logo-name { color: var(--warm-white); }
.footer-brand .logo-sub  { color: rgba(235,242,236,0.6); }
.footer-brand .tagline {
  font-family: var(--ff-sans);
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(253,250,247,0.65);
  margin-top: 1.25rem;
  line-height: 1.5;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--r);
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t);
  color: rgba(253,250,247,0.7);
}
.footer-social a:hover { background: var(--sage); color: #fff; }
.footer-social a svg { width: 18px; height: 18px; }
.footer-col h5 {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(253,250,247,0.45);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a {
  font-size: 0.9rem;
  color: rgba(253,250,247,0.65);
  transition: color var(--t);
}
.footer-col a:hover { color: var(--warm-white); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(253,250,247,0.65);
  margin-bottom: 0.5rem;
}
.footer-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 0.15em; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(253,250,247,0.35); }
.footer-bottom a { color: rgba(253,250,247,0.45); transition: var(--t); }
.footer-bottom a:hover { color: rgba(253,250,247,0.75); }

@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── Back to Top ── */
.back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  background: var(--sage);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-md);
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--t);
}
.back-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { background: var(--sage-dark); transform: translateY(-2px); }
.back-top svg { width: 20px; height: 20px; }

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }

/* ── Content prose (legal pages) ── */
.prose {
  max-width: 800px;
}
.prose h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.prose h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
.prose p { margin-bottom: 1rem; }
.prose ul {
  list-style: disc;
  padding-left: 1.75rem;
  margin-bottom: 1rem;
}
.prose ul li {
  font-size: 0.95rem;
  color: var(--charcoal-md);
  margin-bottom: 0.4rem;
}
.prose a { color: var(--sage-dark); text-decoration: underline; }
.prose strong { font-weight: 600; color: var(--charcoal); }
.prose hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}
.prose address {
  font-style: normal;
  background: var(--cream);
  border-radius: var(--r-md);
  padding: 1.5rem 2rem;
  margin: 1.5rem 0;
  border-left: 3px solid var(--sage);
}

/* ── Split layout (text + image) ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 768px) {
  .split, .split.reverse { grid-template-columns: 1fr; direction: ltr; }
  .split.reverse > * { direction: ltr; }
}

/* ── Responsive Overrides ── */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
}

/* ── 404 page ── */
.not-found {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 40px) var(--px) var(--px);
  background: var(--cream);
}
.not-found-inner { max-width: 560px; }
.not-found-code {
  font-family: var(--ff-serif);
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 300;
  color: var(--sage-light);
  line-height: 1;
  margin-bottom: -0.2em;
}
.not-found h1 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 1rem; }
.not-found p { color: var(--mid); margin-bottom: 2rem; }

/* ── Utility ── */
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3rem; }
.mb-sm { margin-bottom: 1rem; }
.mb-md { margin-bottom: 2rem; }
.mb-lg { margin-bottom: 3rem; }
.gap-sm { gap: 0.5rem; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.w-full { width: 100%; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
