/* ════════════════════════════════════════
   CSS VARIABLES & RESET
   ════════════════════════════════════════ */
:root {
  /* Basis — helle Seite */
  --linen: #F6F2EC;
  --white: #FFFFFF;

  /* Türkis — Hauptakzent */
  --teal: #0EA2A2;
  --teal-deep: #0C7878;
  --teal-dark: #14393D;

  /* Orange — Sekundärakzent */
  --orange: #D95B3F;

  /* Text */
  --text: #1A2A2E;
  --text-soft: rgba(26,42,46,0.55);
  --text-muted: rgba(26,42,46,0.35);

  /* Galerie-Modus */
  --gallery-bg: #14393D;
  --gallery-text: #F6F2EC;
  --gallery-text-soft: rgba(246,242,236,0.5);

  /* Utilities */
  --border: rgba(26,42,46,0.07);
  --nav-height: 64px;
  --section-pad: clamp(80px, 10vw, 140px);
  --container: 1140px;
  --container-wide: 1320px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background: var(--linen);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

/* ════════════════════════════════════════
   TYPOGRAPHY
   ════════════════════════════════════════ */
.font-display {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
}
.font-label {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* ════════════════════════════════════════
   PLACEHOLDER IMAGES
   ════════════════════════════════════════ */
.img-placeholder {
  background: linear-gradient(145deg, rgba(14,162,162,0.08), rgba(14,162,162,0.03));
  border: 1px dashed rgba(14,162,162,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--teal-deep);
  text-align: center;
  padding: 16px;
  line-height: 1.4;
  overflow: hidden;
  position: relative;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 40%, rgba(14,162,162,0.04) 40%, rgba(14,162,162,0.04) 60%, transparent 60%);
  pointer-events: none;
}
.placeholder-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  z-index: 1;
}
.img-filename {
  display: block;
  margin-top: 0.75em;
  font-family: monospace;
  font-size: 0.7rem;
  opacity: 0.5;
  letter-spacing: 0.02em;
  word-break: break-all;
}
.img-ratio {
  display: block;
  margin-top: 0.4em;
  font-size: 0.7rem;
  opacity: 0.5;
  letter-spacing: 0.02em;
}
.img-placeholder-dark .img-ratio {
  opacity: 0.6;
}

.img-placeholder-dark {
  background: linear-gradient(145deg, rgba(14,162,162,0.12), rgba(14,162,162,0.04));
  border-color: rgba(14,162,162,0.25);
  color: rgba(246,242,236,0.75);
}
.img-placeholder-dark .img-filename {
  opacity: 0.6;
}

/* ════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  line-height: 1;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

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

.btn-outline { background: transparent; color: var(--teal-deep); border: 1.5px solid rgba(14,162,162,0.3); }
.btn-outline:hover { border-color: var(--teal); background: rgba(14,162,162,0.04); }

.btn-dark { background: var(--text); color: #fff; }
.btn-dark:hover { background: #0f1c1f; }

.btn-white { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.btn-white:hover { background: rgba(255,255,255,0.25); }

.text-link {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--teal-deep);
  border-bottom: 1px solid rgba(12,120,120,0.25);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.text-link:hover { border-color: var(--teal); }

/* ════════════════════════════════════════
   SCROLL ANIMATIONS
   ════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ════════════════════════════════════════
   1. NAVIGATION
   ════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 100;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled {
  box-shadow: 0 2px 20px rgba(26,42,46,0.06);
}
.nav-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}
.nav-logo {
  height: 22px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
}
.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--teal); }
.nav-cta {
  padding: 8px 22px;
  border-radius: 6px;
  background: var(--teal);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--teal-deep); transform: translateY(-1px); }

@media (max-width: 768px) {
  .nav-links { display: none; }
}

/* ════════════════════════════════════════
   2. HERO
   ════════════════════════════════════════ */
.hero {
  padding-top: calc(var(--nav-height) + var(--section-pad));
  padding-bottom: var(--section-pad);
  background: var(--linen);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-text { padding-right: 20px; }
.hero-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-h1 em {
  color: var(--teal-deep);
  font-style: italic;
}
.hero-sub {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--text-soft);
  line-height: 1.75;
  max-width: 42ch;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-image {
  position: relative;
}
.hero-image .img-placeholder {
  aspect-ratio: 4/5;
  border-radius: 16px;
  font-size: 13px;
}

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-text { padding-right: 0; }
  .hero-image { order: -1; }
  .hero-image .img-placeholder { aspect-ratio: 16/10; }
}

/* ════════════════════════════════════════
   3. TRUST STRIP
   ════════════════════════════════════════ */
.trust {
  padding: 0 0 clamp(40px, 5vw, 64px);
  background: var(--linen);
}
.trust-inner {
  background: var(--white);
  border-radius: 12px;
  padding: 20px clamp(20px, 3vw, 32px);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  align-items: center;
  border: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-soft);
}
.trust-check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--teal);
}

/* ════════════════════════════════════════
   3b. PAIN SECTION
   ════════════════════════════════════════ */
.pain-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.pain-header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.pain-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 400;
  color: var(--text);
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pain-card {
  background: var(--linen);
  border-radius: 14px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--border);
}
.pain-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.pain-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.2;
}
.pain-card-text {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--text-soft);
}
.pain-fazit {
  text-align: center;
  margin-top: clamp(28px, 4vw, 40px);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-style: italic;
  color: var(--teal-deep);
}

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

/* ════════════════════════════════════════
   4/6/9. GALLERY ISLANDS (DARK)
   ════════════════════════════════════════ */
.gallery-island {
  background: var(--gallery-bg);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.gallery-island::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(14,162,162,0.06), transparent),
    radial-gradient(ellipse 40% 60% at 80% 70%, rgba(217,91,63,0.03), transparent);
  pointer-events: none;
}
.gallery-label {
  font-family: 'Raleway', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.gallery-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--gallery-text);
  margin-bottom: 10px;
}
.gallery-title em { color: var(--orange); font-style: italic; }
.gallery-sub {
  font-size: 14px;
  color: rgba(246,242,236,0.8);
  max-width: 48ch;
  margin-bottom: 36px;
  line-height: 1.7;
}

/* Gallery Grid: Business Avatare (asymmetrisch) */
.gallery-grid-avatars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 14px;
}
.gallery-grid-avatars .img-placeholder-dark:nth-child(1) {
  grid-row: 1 / 3;
  aspect-ratio: 3/5;
}
.gallery-grid-avatars .img-placeholder-dark:nth-child(2) { aspect-ratio: 4/5; }
.gallery-grid-avatars .img-placeholder-dark:nth-child(3) { aspect-ratio: 4/5; }
.gallery-grid-avatars .img-placeholder-dark:nth-child(4) { aspect-ratio: 4/5; }
.gallery-grid-avatars .img-placeholder-dark:nth-child(5) { aspect-ratio: 4/3; grid-column: 2 / 4; }
.gallery-grid-avatars .img-placeholder-dark:nth-child(6) { aspect-ratio: 4/5; }

/* Gallery Grid: Food & Produkt (querformatig) */
.gallery-grid-food {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 14px;
}
.gallery-grid-food .img-placeholder-dark { aspect-ratio: 4/3; }
.gallery-grid-food .img-placeholder-dark:first-child { aspect-ratio: 5/4; }

/* Gallery Grid: Kunst (Masonry-style) */
.gallery-grid-art {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 120px;
  gap: 12px;
}
.gallery-grid-art .img-placeholder-dark:nth-child(1) { grid-row: span 3; }
.gallery-grid-art .img-placeholder-dark:nth-child(2) { grid-row: span 2; }
.gallery-grid-art .img-placeholder-dark:nth-child(3) { grid-row: span 2; }
.gallery-grid-art .img-placeholder-dark:nth-child(4) { grid-row: span 3; }
.gallery-grid-art .img-placeholder-dark:nth-child(5) { grid-row: span 2; grid-column: 2 / 4; }
.gallery-grid-art .img-placeholder-dark:nth-child(6) { grid-row: span 2; }

.gallery-credit {
  margin-top: 28px;
  font-size: 12.5px;
  color: var(--orange);
  opacity: 0.9;
  font-style: italic;
}

@media (max-width: 768px) {
  .gallery-grid-avatars,
  .gallery-grid-food { grid-template-columns: 1fr 1fr; }
  .gallery-grid-avatars .img-placeholder-dark:nth-child(1) { grid-row: auto; }
  .gallery-grid-avatars .img-placeholder-dark:nth-child(5) { grid-column: auto; }
  .gallery-grid-avatars .img-placeholder-dark { aspect-ratio: 4/5 !important; }
  .gallery-grid-art { grid-template-columns: 1fr 1fr; grid-auto-rows: 100px; }
  .gallery-grid-art .img-placeholder-dark:nth-child(5) { grid-column: auto; }
}

/* ════════════════════════════════════════
   5. VALUE PROPS
   ════════════════════════════════════════ */
.value-section {
  padding: var(--section-pad) 0;
  background: var(--linen);
}
.value-section-header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 52px);
}
.value-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  color: var(--text);
}
.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.value-card {
  background: var(--white);
  border-radius: 14px;
  padding: clamp(28px, 3.5vw, 44px);
  border: 1px solid var(--border);
}
.value-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.value-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 12px;
}
.value-body {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-soft);
}

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

/* ════════════════════════════════════════
   7. PROCESS
   ════════════════════════════════════════ */
.process-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.process-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.process-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  color: var(--text);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), rgba(14,162,162,0.2));
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 clamp(6px, 1.2vw, 16px);
}
.process-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
}
.process-step-title {
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.process-step-text {
  font-size: 12.5px;
  color: var(--text-soft);
  line-height: 1.65;
}
.process-timeframe {
  text-align: center;
  margin-top: clamp(32px, 4vw, 48px);
  font-size: 13px;
  font-style: italic;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px 16px; }
  .process-steps::before { display: none; }
}
@media (max-width: 400px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   8. PACKAGES
   ════════════════════════════════════════ */
.packages-section {
  padding: var(--section-pad) 0;
  background: var(--linen);
}
.packages-header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.packages-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  color: var(--text);
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
}
.package-card {
  border-radius: 14px;
  padding: clamp(28px, 3vw, 40px) clamp(24px, 2.5vw, 32px);
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}
.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,42,46,0.08);
}
.package-card--featured {
  background: var(--teal);
  color: #fff;
  border-color: transparent;
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(14,162,162,0.2);
}
.package-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 16px 48px rgba(14,162,162,0.25);
}
.package-badge {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.package-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.package-name {
  font-family: 'Raleway', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.package-for {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-style: italic;
}
.package-card--featured .package-for {
  color: rgba(255,255,255,0.55);
}
.package-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 44px);
  font-weight: 400;
  margin-bottom: 4px;
}
.package-price-note {
  font-size: 12px;
  opacity: 0.45;
  margin-bottom: 20px;
}
.package-compare {
  font-size: 12px;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.package-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}
.package-features li {
  font-size: 13.5px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.package-features li:last-child { border-bottom: none; }
.package-features .feat-check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.package-card--featured .package-features li {
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
}
.package-card--white { background: var(--white); }
.package-cta-primary {
  display: block;
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
}
.package-cta-secondary {
  display: block;
  font-size: 12px;
  color: var(--teal-deep);
  border-bottom: 1px solid rgba(12,120,120,0.2);
  padding-bottom: 1px;
  width: fit-content;
  margin: 0 auto;
  transition: border-color 0.2s;
}
.package-cta-secondary:hover { border-color: var(--teal); }
.package-card--featured .package-cta-secondary {
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.25);
}
.package-card--featured .package-cta-secondary:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.package-hint {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

@media (max-width: 768px) {
  .packages-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .package-card--featured { transform: none; }
  .package-card--featured:hover { transform: translateY(-4px); }
}

/* ════════════════════════════════════════
   10. ABOUT SANNE
   ════════════════════════════════════════ */
.about-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.about-photo .img-placeholder {
  aspect-ratio: 1;
  border-radius: 14px;
  width: 100%;
}
.about-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 4px;
}
.about-role {
  font-size: 14px;
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 22px;
}
.about-bio {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-soft);
  max-width: 52ch;
  margin-bottom: 24px;
}
.about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 400;
  font-style: italic;
  color: var(--teal-deep);
  margin-bottom: 28px;
  padding-left: 20px;
  border-left: 3px solid var(--teal);
}
.about-creds {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-cred {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-soft);
}
.cred-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 200px; }
}

/* ════════════════════════════════════════
   11. FAQ
   ════════════════════════════════════════ */
.faq-section {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--linen);
}
.faq-header {
  margin-bottom: clamp(32px, 4vw, 48px);
}
.faq-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  color: var(--text);
}
.faq-list {
  max-width: 720px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  padding: 22px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s;
  user-select: none;
}
.faq-question:hover { color: var(--teal); }
.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--teal);
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 22px;
}
.faq-answer p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-soft);
  max-width: 56ch;
}

/* ════════════════════════════════════════
   12. FINAL CTA
   ════════════════════════════════════════ */
.cta-section {
  padding: var(--section-pad) 0;
  background: var(--linen);
}
.cta-block {
  background: linear-gradient(155deg, rgba(14,162,162,0.05) 0%, rgba(14,162,162,0.015) 100%);
  border: 1px solid rgba(14,162,162,0.1);
  border-radius: 20px;
  padding: clamp(48px, 6vw, 80px) clamp(28px, 4vw, 56px);
  text-align: center;
}
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 14px;
}
.cta-title em { color: var(--teal-deep); font-style: italic; }
.cta-sub {
  font-size: 15px;
  color: var(--text-soft);
  max-width: 42ch;
  margin: 0 auto 16px;
  line-height: 1.75;
}
.cta-trust {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}
.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════
   13. FOOTER
   ════════════════════════════════════════ */
.footer {
  padding: 24px 0 40px;
  background: var(--linen);
}
.footer-inner {
  background: var(--white);
  border-radius: 12px;
  padding: 20px clamp(20px, 3vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border: 1px solid var(--border);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.footer-logo {
  height: 18px;
  width: auto;
  display: block;
  opacity: 0.8;
}
.footer-links {
  display: flex;
  gap: 24px;
  font-size: 12.5px;
  color: var(--text-muted);
}
.footer-links a { transition: color 0.2s; }
.footer-links a:hover { color: var(--teal); }
.footer-copy {
  text-align: center;
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-muted);
}
