/* ════════════════════════════════════════════════
   SERENITY ZAAN — Complete Stylesheet
   Premium Moroccan Spa · Terracotta & Teal
   © 2026 PROJEXT Visuals
   ════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─────────────────────────────── */
:root {
  /* Palette */
  --c-sand:         #F2EBE0;
  --c-sand-dark:    #E6D9C8;
  --c-sand-deeper:  #D9CAB5;
  --c-terracotta:   #C4714A;
  --c-terra-light:  #D4896A;
  --c-terra-dark:   #A05535;
  --c-teal:         #3D7D7A;
  --c-teal-light:   #5A9E9B;
  --c-teal-dark:    #2A5A58;
  --c-gold:         #C9A96E;
  --c-gold-light:   #DCC08A;
  --c-ink:          #1C1A16;
  --c-ink-80:       rgba(28, 26, 22, .80);
  --c-ink-60:       rgba(28, 26, 22, .60);
  --c-ink-30:       rgba(28, 26, 22, .30);
  --c-ink-12:       rgba(28, 26, 22, .12);
  --c-white:        #FFFFFF;

  /* Typography */
  --f-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --f-sans:  'Jost', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Spacing scale (4-point grid) */
  --sp-1:   4px;
  --sp-2:   8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  24px;
  --sp-6:  32px;
  --sp-7:  48px;
  --sp-8:  64px;
  --sp-9:  96px;
  --sp-10: 128px;

  /* Layout */
  --max-w:    1200px;
  --r-sm:       4px;
  --r-md:       8px;
  --r-lg:      16px;
  --r-xl:      24px;
  --r-2xl:     40px;

  /* Shadows */
  --sh-sm: 0  2px  8px rgba(0,0,0,.07);
  --sh-md: 0  8px 24px rgba(0,0,0,.13);
  --sh-lg: 0 24px 48px rgba(0,0,0,.18);

  /* Motion */
  --t-fast: .18s ease;
  --t-mid:  .32s ease;
  --t-slow: .55s cubic-bezier(.16,1,.3,1);

  /* Layout */
  --header-h: 72px;
}

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

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

body {
  font-family: var(--f-sans);
  font-weight: 300;
  color: var(--c-ink);
  background-color: var(--c-white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast);
}

ul { list-style: none; }
button { font-family: var(--f-sans); }
input, select, textarea { font-family: var(--f-sans); }

/* ─── TYPOGRAPHY ─────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--f-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--c-ink);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw,  3.2rem);  }
h3 { font-size: clamp(1.3rem, 2vw,  1.8rem); font-weight: 500; }
h4 { font-size: 1.05rem; font-weight: 500; letter-spacing: .04em; }

h1 em, h2 em {
  font-style: italic;
  color: var(--c-terracotta);
}

p {
  margin-bottom: var(--sp-4);
  line-height: 1.75;
}
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  line-height: 1.8;
  font-weight: 300;
}

/* ─── LAYOUT HELPERS ─────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left:  var(--sp-5);
  padding-right: var(--sp-5);
}

.section-label {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-terracotta);
  margin-bottom: var(--sp-3);
}
.section-label.light { color: var(--c-gold-light); }

.section-header {
  text-align: center;
  margin-bottom: var(--sp-8);
}
.section-header h2    { margin-bottom: var(--sp-3); }
.section-header .lead { max-width: 580px; margin: 0 auto; color: var(--c-ink-60); }

/* ─── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--f-sans);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  border-radius: var(--r-sm);
  padding: .9em 2.2em;
  transition: all var(--t-mid);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-lg   { font-size: .92rem; padding: 1.05em 2.6em; }
.btn-sm   { font-size: .72rem; padding: .6em  1.4em;  }
.btn-full { width: 100%; }

/* Terracotta filled */
.btn-gold {
  background: var(--c-terracotta);
  color: var(--c-white);
  border-color: var(--c-terracotta);
  box-shadow: 0 4px 20px rgba(196,113,74,.28);
}
.btn-gold:hover {
  background: var(--c-terra-dark);
  border-color: var(--c-terra-dark);
  box-shadow: 0 8px 28px rgba(160,85,53,.38);
  transform: translateY(-2px);
  color: var(--c-white);
}
.btn-gold:active { transform: translateY(0); }

/* Outline */
.btn-outline-gold {
  background: transparent;
  color: var(--c-terracotta);
  border-color: var(--c-terracotta);
}
.btn-outline-gold:hover {
  background: var(--c-terracotta);
  color: var(--c-white);
}

/* Ghost dark-bg */
.btn-ghost {
  background: rgba(255,255,255,.1);
  color: var(--c-white);
  border-color: rgba(255,255,255,.45);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.2);
  border-color: var(--c-white);
  color: var(--c-white);
}

/* Ghost light (cookie btn) */
.btn-ghost-light {
  background: var(--c-terracotta);
  color: var(--c-white);
  border-color: var(--c-terracotta);
}
.btn-ghost-light:hover {
  background: var(--c-terra-dark);
  border-color: var(--c-terra-dark);
}

/* Text-link */
.btn-text {
  background: none;
  color: var(--c-teal);
  padding: 0;
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: none;
  font-weight: 500;
  border: none;
  border-bottom: 1px solid transparent;
  border-radius: 0;
}
.btn-text:hover {
  border-bottom-color: var(--c-teal);
  color: var(--c-teal-dark);
}

/* Text-link gold */
.btn-text-gold {
  background: none;
  color: var(--c-terracotta);
  padding: var(--sp-2) 0 0;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  display: inline-block;
}
.btn-text-gold:hover { border-bottom-color: var(--c-terracotta); }

/* Loading state */
.btn-loading { display: none; }
.btn--loading .btn-label  { display: none; }
.btn--loading .btn-loading { display: inline; }
.btn--loading { opacity: .75; cursor: wait; pointer-events: none; }


/* ══════════════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--c-ink);
  color: rgba(255,255,255,.82);
  padding: var(--sp-4) var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  font-size: .88rem;
  transform: translateY(100%);
  transition: transform .45s cubic-bezier(.16,1,.3,1);
  border-top: 1px solid rgba(255,255,255,.08);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { margin: 0; }

.cookie-link {
  color: var(--c-gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-link:hover { color: var(--c-gold); }

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: var(--sp-3);
    padding: var(--sp-5) var(--sp-4);
  }
  .cookie-banner .btn { width: 100%; }
}


/* ══════════════════════════════════════════════
   HEADER & NAVIGATION
══════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(242,235,224,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-ink-12);
  transition: background var(--t-mid), box-shadow var(--t-mid);
}
.site-header.scrolled {
  background: rgba(242,235,224,.97);
  box-shadow: var(--sh-sm);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-5);
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-name {
  font-family: var(--f-serif);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--c-ink);
  line-height: 1;
  letter-spacing: .01em;
}
.logo-sub {
  font-family: var(--f-sans);
  font-size: .64rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-terracotta);
  margin-top: 3px;
}

/* Desktop nav */
.main-nav { margin-left: auto; }
.main-nav ul {
  display: flex;
  gap: var(--sp-7);
}
.main-nav a {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-ink);
  position: relative;
  padding-bottom: 3px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--c-terracotta);
  transition: width var(--t-mid);
}
.main-nav a:hover       { color: var(--c-terracotta); }
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { width: 100%; }

.nav-book { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2);
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--c-ink);
  border-radius: 2px;
  transition: transform var(--t-mid), opacity var(--t-fast), background var(--t-fast);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -5px); }

/* Mobile nav */
@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--c-sand);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-mid);
    z-index: 800;
  }
  .main-nav.open {
    opacity: 1;
    pointer-events: all;
  }
  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: var(--sp-6);
  }
  .main-nav a {
    font-family: var(--f-serif);
    font-size: 2rem;
    letter-spacing: .03em;
    text-transform: none;
    font-weight: 400;
  }
  .hamburger { display: flex; }
  .nav-book  { display: none; }
}


/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    130deg,
    rgba(28,26,22,.78)  0%,
    rgba(28,26,22,.52)  45%,
    rgba(42,90,88,.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: var(--sp-10) var(--sp-5);
}

.hero-eyebrow {
  display: block;
  font-family: var(--f-sans);
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  margin-bottom: var(--sp-4);
  font-weight: 400;
}

.hero-headline {
  color: var(--c-white);
  margin-bottom: var(--sp-5);
  letter-spacing: -.01em;
}
.hero-headline em { color: var(--c-gold-light); }

.hero-sub {
  color: rgba(255,255,255,.80);
  font-size: 1.1rem;
  line-height: 1.85;
  margin-bottom: var(--sp-7);
  max-width: 520px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--sp-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
}
.hero-scroll span {
  display: block;
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,.55));
  animation: scrollPulse 2.2s ease-in-out infinite;
}
.hero-scroll p {
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin: 0;
}
@keyframes scrollPulse {
  0%         { opacity: 0; transform: scaleY(0);   transform-origin: top;    }
  30%, 70%   { opacity: 1; transform: scaleY(1);   }
  100%       { opacity: 0; transform: scaleY(.1);  transform-origin: bottom; }
}

.br-lg { display: none; }
@media (min-width: 800px) { .br-lg { display: inline; } }

@media (max-width: 640px) {
  .hero-content { padding: var(--sp-8) var(--sp-4); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-scroll { display: none; }
}

/* Language Switcher Styling */
.lang-switcher select {
  background: var(--c-terracotta);
  color: var(--c-white);
  border-color: var(--c-terracotta);
  box-shadow: 0 4px 20px rgba(196,113,74,.28);
  padding: 10px 10px;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 15px;
  outline: none;
    
}
.lang-switcher select option {
  color: #333; /* Tekstkleur in de dropdown lijst */
  background: #fff;
}

/* ══════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════ */
.trust-bar {
  background: var(--c-ink);
  padding: var(--sp-6) var(--sp-5);
}
.trust-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-4) var(--sp-6);
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  text-align: center;
  min-width: 100px;
}
.trust-num {
  font-family: var(--f-serif);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--c-gold);
  line-height: 1;
}
.trust-label {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  font-weight: 400;
}
.trust-divider {
  width: 1px; height: 44px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}
@media (max-width: 640px) { .trust-divider { display: none; } }


/* ══════════════════════════════════════════════
   PHILOSOPHY
══════════════════════════════════════════════ */
.philosophy {
  padding: var(--sp-10) var(--sp-5);
  background: var(--c-sand);
}
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-9);
  align-items: center;
}

.philosophy-image {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--sh-lg);
}
.philosophy-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.philosophy-image:hover img { transform: scale(1.04); }

/* Subtle gradient wash at bottom */
.arch-frame {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(42,90,88,.4), transparent);
  pointer-events: none;
}

.philosophy-text h2       { margin-bottom: var(--sp-5); }
.philosophy-text .lead    { margin-bottom: var(--sp-4); color: var(--c-ink); }
.philosophy-text p        { color: var(--c-ink-60); }

@media (max-width: 900px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-7);
  }
  .philosophy-image { aspect-ratio: 16/9; }
}


/* ══════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════ */
.services {
  padding: var(--sp-10) var(--sp-5);
  background: var(--c-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.service-card {
  background: var(--c-white);
  border: 1px solid var(--c-ink-12);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-mid), box-shadow var(--t-mid), border-color var(--t-mid);
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--sh-md);
  border-color: var(--c-sand-deeper);
}

/* Featured badge */
.service-card--featured {
  border-color: var(--c-terracotta);
}
.service-card--featured::before {
  content: 'Meest gekozen';
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  background: var(--c-terracotta);
  color: var(--c-white);
  font-family: var(--f-sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 2;
}
/* Need position relative for the pseudo element */
.service-card { position: relative; }

.service-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--c-sand-dark);
  flex-shrink: 0;
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.service-card:hover .service-img img { transform: scale(1.07); }

.service-body {
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--sp-2);
}

.service-tag {
  font-family: var(--f-sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-teal);
}

.service-body h3 {
  font-size: 1.45rem;
  color: var(--c-ink);
  margin: 0;
  line-height: 1.2;
}

.service-body p {
  font-size: .9rem;
  color: var(--c-ink-60);
  flex: 1;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1060px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════════
   ATMOSPHERE BAND
══════════════════════════════════════════════ */
.atmosphere {
  background: var(--c-sand);
  overflow: hidden;
}
.atm-band {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  min-height: 580px;
}

.atm-img {
  overflow: hidden;
  position: relative;
}
.atm-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.atm-img:hover img { transform: scale(1.05); }

.atm-text {
  padding: var(--sp-9) var(--sp-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--c-sand);
}
.atm-text h2          { margin-bottom: var(--sp-5); }
.atm-text p           { color: var(--c-ink-60); line-height: 1.85; }

@media (max-width: 960px) {
  .atm-band {
    grid-template-columns: 1fr;
    grid-template-rows: 300px auto 300px;
  }
  .atm-text { padding: var(--sp-8) var(--sp-5); }
}


/* ══════════════════════════════════════════════
   BENEFITS
══════════════════════════════════════════════ */
.benefits {
  padding: var(--sp-10) var(--sp-5);
  background: var(--c-teal-dark);
}
.benefits .section-label  { color: rgba(201,169,110,.65); }
.benefits .section-header h2 { color: var(--c-gold-light); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}

.benefit {
  text-align: center;
  padding: var(--sp-7) var(--sp-5);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  transition: background var(--t-mid), transform var(--t-mid), border-color var(--t-mid);
}
.benefit:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(201,169,110,.3);
  transform: translateY(-5px);
}
.benefit-icon {
  font-size: 1.6rem;
  color: var(--c-gold);
  margin-bottom: var(--sp-4);
  display: block;
  opacity: .85;
}
.benefit h3 {
  color: var(--c-white);
  font-size: 1.25rem;
  margin-bottom: var(--sp-3);
}
.benefit p {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 900px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .benefits-grid { grid-template-columns: 1fr; } }


/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.testimonials {
  padding: var(--sp-10) var(--sp-5);
  background: var(--c-sand);
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.testimonial {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: var(--sp-7) var(--sp-6);
  border: 1px solid var(--c-ink-12);
  transition: transform var(--t-mid), box-shadow var(--t-mid);
  quotes: "\201C" "\201D";
}
.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
}

.stars {
  color: var(--c-gold);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: var(--sp-4);
  display: block;
}

.testimonial > p {
  font-family: var(--f-serif);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--c-ink);
  font-style: italic;
  margin-bottom: var(--sp-5);
}
.testimonial > p::before {
  content: open-quote;
  color: var(--c-terracotta);
  font-size: 1.6em;
  line-height: 0;
  vertical-align: -.35em;
  margin-right: 2px;
}

.testimonial footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--c-ink-12);
}
.testimonial footer strong {
  font-family: var(--f-sans);
  font-size: .9rem;
  font-weight: 600;
  color: var(--c-ink);
}
.testimonial footer span {
  font-size: .78rem;
  color: var(--c-ink-60);
  letter-spacing: .06em;
}

@media (max-width: 900px) { .testimonials-track { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }
@media (max-width: 600px) { .testimonials-track { grid-template-columns: 1fr; } }


/* ══════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════ */
.about {
  padding: var(--sp-10) var(--sp-5);
  background: var(--c-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-9);
  align-items: center;
}

.about-text h2       { margin-bottom: var(--sp-5); }
.about-text .lead    { margin-bottom: var(--sp-4); }
.about-text p        { color: var(--c-ink-60); }

/* Credential badges */
.about-creds {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}
.cred {
  flex: 1 1 140px;
  background: var(--c-sand);
  border: 1px solid var(--c-sand-deeper);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
}
.cred-title {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-terracotta);
  margin-bottom: var(--sp-1);
}
.cred-body {
  display: block;
  font-size: .9rem;
  color: var(--c-ink);
  font-weight: 400;
}

/* About image collage */
.about-images {
  position: relative;
  height: 520px;
}
.about-img {
  position: absolute;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.about-img:hover {
  transform: scale(1.02);
  box-shadow: var(--sh-lg);
}
.about-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-img--main {
  top: 0; left: 0;
  width: 75%; height: 75%;
}
.about-img--accent {
  bottom: 0; right: 0;
  width: 52%; height: 52%;
  border: 4px solid var(--c-white);
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-7);
  }
  .about-images {
    height: 380px;
  }
}
@media (max-width: 500px) {
  .about-images  { height: 280px; }
  .about-creds   { flex-direction: column; }
}


/* ══════════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════════ */
.cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: var(--sp-10) var(--sp-5);
}

.cta-band-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-band-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.cta-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(28,26,22,.82) 0%,
    rgba(42,90,88,.72) 100%
  );
}

.cta-band-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}
.cta-band-content h2 {
  color: var(--c-white);
  margin-bottom: var(--sp-4);
}
.cta-band-content h2 em { color: var(--c-gold-light); }
.cta-band-content p {
  color: rgba(255,255,255,.80);
  font-size: 1.1rem;
  margin-bottom: var(--sp-7);
  line-height: 1.8;
}


/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
.contact {
  padding: var(--sp-10) var(--sp-5);
  background: var(--c-sand);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-9);
  align-items: start;
}

/* Contact info column */
.contact-info h2      { margin-bottom: var(--sp-6); }
.contact-info h2 em   { color: var(--c-terracotta); }

.info-group {
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--c-sand-deeper);
}
.info-group:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.info-group h4 {
  font-family: var(--f-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-terracotta);
  margin-bottom: var(--sp-3);
}
.info-group p {
  color: var(--c-ink-80);
  font-size: .95rem;
  margin-bottom: var(--sp-1);
  line-height: 1.7;
}
.info-group a {
  color: var(--c-teal);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast), color var(--t-fast);
}
.info-group a:hover {
  color: var(--c-teal-dark);
  border-bottom-color: var(--c-teal);
}

/* Hours list */
.hours-list { display: flex; flex-direction: column; gap: var(--sp-2); }
.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: .92rem;
  color: var(--c-ink-80);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--c-ink-12);
}
.hours-list li:last-child { border-bottom: none; padding-bottom: 0; }
.hours-list li span:first-child { font-weight: 400; }
.hours-list li span:last-child  { font-weight: 500; color: var(--c-teal-dark); }

/* Map */
.map-placeholder { border-radius: var(--r-md); overflow: hidden; }

/* Contact form */
.contact-form-wrap {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: var(--sp-7);
  box-shadow: var(--sh-md);
  border: 1px solid var(--c-sand-deeper);
}

.form-heading {
  font-family: var(--f-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--c-ink);
  margin-bottom: var(--sp-6);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-field label {
  font-family: var(--f-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-ink);
}

.required {
  color: var(--c-terracotta);
  margin-left: 2px;
}

.optional {
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
  font-size: .78rem;
  color: var(--c-ink-60);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--c-sand);
  border: 1px solid var(--c-sand-deeper);
  border-radius: var(--r-md);
  font-size: .95rem;
  color: var(--c-ink);
  font-weight: 300;
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  line-height: 1.5;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--c-ink-30);
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--c-terracotta);
  background: var(--c-white);
  box-shadow: 0 0 0 3px rgba(196,113,74,.1);
}
.form-field textarea {
  resize: vertical;
  min-height: 110px;
}

/* Custom select */
.select-wrap {
  position: relative;
}
.select-wrap select {
  width: 100%;
  padding: 13px 42px 13px 16px;
  background: var(--c-sand);
  border: 1px solid var(--c-sand-deeper);
  border-radius: var(--r-md);
  font-size: .95rem;
  font-family: var(--f-sans);
  font-weight: 300;
  color: var(--c-ink);
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.select-wrap select:focus {
  border-color: var(--c-terracotta);
  background: var(--c-white);
  box-shadow: 0 0 0 3px rgba(196,113,74,.1);
}

.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--c-terracotta);
  font-size: .8rem;
  pointer-events: none;
  line-height: 1;
}

/* Field error message */
.field-error {
  font-size: .78rem;
  color: #c0392b;
  min-height: 1em;
  display: block;
  font-weight: 400;
}

/* Form feedback banner */
.form-feedback {
  display: none;
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-md);
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.6;
}
.form-feedback.success {
  display: block;
  background: rgba(61,125,122,.1);
  border: 1px solid rgba(61,125,122,.3);
  color: var(--c-teal-dark);
}
.form-feedback.error {
  display: block;
  background: rgba(192,57,43,.08);
  border: 1px solid rgba(192,57,43,.25);
  color: #a93226;
}

/* Form note below submit */
.form-note {
  font-size: .8rem;
  color: var(--c-ink-60);
  text-align: center;
  margin: 0;
  line-height: 1.6;
}
.form-note span {
  color: var(--c-terracotta);
  font-size: .7rem;
  margin-right: var(--sp-1);
}

@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-7);
  }
}
@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: var(--sp-5); }
}


/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.site-footer {
  background: var(--c-ink);
  color: rgba(255,255,255,.75);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--sp-8);
  padding-top: var(--sp-9);
  padding-bottom: var(--sp-9);
}

/* Brand column */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.footer-brand .logo-name {
  font-family: var(--f-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--c-white);
  letter-spacing: .01em;
}
.footer-brand .logo-sub {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-terracotta);
}
.footer-tagline {
  margin: var(--sp-2) 0 var(--sp-4);
  font-size: .9rem;
  color: rgba(255,255,255,.45);
  font-style: italic;
  font-family: var(--f-serif);
}

/* Social row */
.social-row {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-1);
}
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.65);
  transition: all var(--t-mid);
  flex-shrink: 0;
}
.social-btn:hover {
  background: var(--c-terracotta);
  border-color: var(--c-terracotta);
  color: var(--c-white);
  transform: translateY(-2px);
}

/* Footer columns */
.footer-nav h4,
.footer-legal h4,
.footer-contact h4 {
  font-family: var(--f-sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  margin-bottom: var(--sp-4);
}

.footer-nav ul,
.footer-legal ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.footer-nav a,
.footer-legal a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--t-fast);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
.footer-nav a:hover,
.footer-legal a:hover {
  color: var(--c-gold-light);
  border-bottom-color: var(--c-gold-light);
}

.footer-contact p {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  margin-bottom: var(--sp-2);
  line-height: 1.6;
}
.footer-contact a {
  color: rgba(255,255,255,.6);
  transition: color var(--t-fast);
}
.footer-contact a:hover { color: var(--c-gold-light); }

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: var(--sp-5) var(--sp-5);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.footer-bottom p {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  margin: 0;
  line-height: 1.5;
}
.footer-bottom strong { color: rgba(255,255,255,.55); font-weight: 500; }

@media (max-width: 960px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-7);
  }
}
@media (max-width: 540px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
    padding-top: var(--sp-7);
    padding-bottom: var(--sp-7);
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}


/* ══════════════════════════════════════════════
   BACK TO TOP BUTTON
══════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  z-index: 800;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-terracotta);
  color: var(--c-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-md);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--t-mid), transform var(--t-mid), background var(--t-mid);
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover {
  background: var(--c-terra-dark);
  transform: translateY(-3px);
}
@media (max-width: 640px) {
  .back-to-top {
    bottom: var(--sp-4);
    right: var(--sp-4);
    width: 38px;
    height: 38px;
  }
}


/* ══════════════════════════════════════════════
   SCROLL REVEAL ANIMATION
══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.16,1,.3,1),
              transform .65s cubic-bezier(.16,1,.3,1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }


/* ══════════════════════════════════════════════
   ACCESSIBILITY & REDUCED MOTION
══════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-scroll { display: none; }
}

/* Focus visible for keyboard nav */
:focus-visible {
  outline: 2px solid var(--c-terracotta);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ══════════════════════════════════════════════
   PRINT
══════════════════════════════════════════════ */
@media print {
  .site-header,
  .cookie-banner,
  .back-to-top,
  .hero-scroll,
  .cta-band {
    display: none !important;
  }
  body { font-size: 12pt; color: #000; }
  a    { color: #000; text-decoration: underline; }
}