/* ============================================================
   Coastal Photography — Pacific Northwest Real Estate
   Main Stylesheet
   Design brief: forest green + teal + cream palette, editorial
   ============================================================ */

/* ---------------------------------------------------------------
   CSS CUSTOM PROPERTIES (Design Tokens)
--------------------------------------------------------------- */
:root {
  /* — Colors (RMT/Wellness Minimalist Base) — */
  --mist:          #FAFAFA;   /* primary background (off-white) */
  --slate-light:   #F3F2EE;   /* secondary background (warm beige) */
  --charcoal:      #212529;   /* primary text (softer dark grey) */
  --evergreen:     #808F85;   /* primary accent (soft sage green) */
  --evergreen-mid: #91A096;   /* secondary accent (lighter sage) */
  --cedar:         #C9BCAE;   /* highlight (warm beige/sand) */
  --white:         #FFFFFF;
  --card-border:   #EAEAEA;
  --muted:         #5E605C;   /* darkened to pass WCAG AA 4.5:1 on white */
  --overlay:       #212529;   /* used at 50% opacity */
  --glacier:       #D8D3CC;   /* light mushroom/grey */
  --star:          #E5C07B;   /* testimonial stars (softer gold) */
  --color-gold:       #B8965A;   /* primary brand accent (warm gold) */
  --color-gold-hover: #9A7A45;   /* gold hover / pressed */
  --color-gold-light: #F5EED8;   /* gold tint — backgrounds, badges */
  --error:         #C0392B;
  --success:       #808F85;

  /* Legacy mappings to prevent breaks before full refactor */
  --cream:         var(--mist);
  --parchment:     var(--slate-light);
  --forest:        var(--evergreen);
  --forest-mid:    var(--evergreen-mid);
  --lime:          var(--cedar);
  --teal:          var(--glacier);

  /* — Typography — */
  --font-heading: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-accent:  'Outfit', system-ui, -apple-system, sans-serif;

  /* — Spacing (8px base) — */
  --s-1:  0.25rem;   /* 4px  */
  --s-2:  0.5rem;    /* 8px  */
  --s-3:  0.75rem;   /* 12px */
  --s-4:  1rem;      /* 16px */
  --s-5:  1.25rem;   /* 20px */
  --s-6:  1.5rem;    /* 24px */
  --s-8:  2rem;      /* 32px */
  --s-10: 2.5rem;    /* 40px */
  --s-12: 3rem;      /* 48px */
  --s-16: 4rem;      /* 64px */
  --s-20: 5rem;      /* 80px */
  --s-24: 6rem;      /* 96px */
  --s-32: 8rem;      /* 128px */

  /* — Borders — */
  --radius-sm:    4px;
  --radius-md:    8px;
  --radius-card:  12px;
  --radius-card-lg: 16px;
  --radius-pill:  999px;

  /* — Shadows — */
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.16);
  --shadow-card: 0 24px 80px rgba(0,0,0,0.30);

  /* — Layout — */
  --max-width:  1280px;
  --gutter:     2.5rem;     /* 40px */
  --nav-height: 72px;

  /* — Transitions — */
  --ease: 0.2s;
  --ease-slow: 0.6s;

  /* — Dynamic Layout — */
  --section-spacing: clamp(var(--s-16), 10vw, var(--s-32));
  --container-padding: clamp(var(--s-4), 5vw, var(--s-8));
}

/* ---------------------------------------------------------------
   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(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--mist);
  overflow-x: hidden;
}

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

/* ---------------------------------------------------------------
   LAYOUT UTILITIES
--------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section-header        { max-width: 640px; margin-bottom: var(--s-16); }
.section-header         { margin-bottom: var(--s-16); }
.section-header--left  { text-align: left; }
.section-header:not(.section-header--left) { text-align: center; margin-left: auto; margin-right: auto; }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--s-4);
}
.section-eyebrow--light { color: var(--teal); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: var(--s-4);
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ---------------------------------------------------------------
   PILL TAGS
--------------------------------------------------------------- */
.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.3125rem 0.875rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pill--evergreen { background: var(--evergreen); color: var(--white); }
.pill--glacier   { background: var(--glacier);   color: var(--charcoal); }
.pill--cedar     { background: var(--cedar);     color: var(--white); }

/* ---------------------------------------------------------------
   BUTTONS
--------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background var(--ease), color var(--ease),
              border-color var(--ease), transform var(--ease),
              box-shadow var(--ease);
}
.btn:focus-visible {
  outline: 3px solid var(--charcoal);
  outline-offset: 3px;
}

/* Forest (primary) */
.btn--forest {
  background: var(--forest);
  color: var(--white);
}
.btn--forest:hover {
  background: var(--forest-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Ghost (hero) */
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* Outline */
.btn--outline {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
}
.btn--outline:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-2px);
}

/* Cedar (neutral warm — contact/secondary contexts) */
.btn--cedar,
.btn--lime {
  background: var(--charcoal);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(33, 37, 41, 0.22);
}
.btn--cedar:hover,
.btn--lime:hover {
  background: #353a3f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(33, 37, 41, 0.32);
}

/* White (use on coloured / dark section backgrounds) */
.btn--white {
  background: var(--white);
  color: var(--charcoal);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.14);
}
.btn--white:hover {
  background: var(--slate-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
}

/* Evergreen (main CTA) */
.btn--evergreen {
  background: var(--evergreen);
  color: var(--white);
}
.btn--evergreen:hover {
  background: var(--evergreen-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--evergreen:focus-visible {
  outline: 3px solid var(--charcoal);
  outline-offset: 3px;
}

/* Inline link — evergreen colour */
.link--evergreen {
  color: var(--evergreen);
  font-weight: 600;
  transition: color var(--ease);
}
.link--evergreen:hover { color: var(--evergreen-mid); }
.link--evergreen:focus-visible {
  outline: 2px solid var(--charcoal);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ---------------------------------------------------------------
   NAVIGATION
--------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 900;
  transition: background var(--ease), box-shadow var(--ease), backdrop-filter var(--ease);
}

.nav--scrolled {
  background: rgba(248, 249, 250, 0.75); /* var(--mist) with extra transparency */
  backdrop-filter: blur(30px) saturate(190%);
  -webkit-backdrop-filter: blur(30px) saturate(190%);
  box-shadow: 0 1px 0 var(--card-border), 0 8px 32px rgba(0,0,0,0.04);
}

.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Logo */
.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  transition: color var(--ease), opacity var(--ease);
}
.nav__logo span { color: var(--teal); }
.nav--scrolled .nav__logo { color: var(--forest); }
.nav--scrolled .nav__logo span { color: var(--teal); }
.nav__logo:hover { opacity: 0.85; }

/* Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--s-10);
}

.nav__links a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  transition: color var(--ease);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:focus-visible { outline: 2px solid var(--teal); outline-offset: 4px; border-radius: 2px; }

.nav--scrolled .nav__links a       { color: var(--muted); }
.nav--scrolled .nav__links a:hover { color: var(--forest); }

/* CTA button in nav */
.nav__cta {
  padding: 0.5rem 1.25rem !important;
  background: var(--forest) !important;
  color: var(--white) !important;
  border-radius: var(--radius-md) !important;
  letter-spacing: 0.06em;
  transition: background var(--ease), transform var(--ease) !important;
}
.nav__cta:hover {
  background: var(--forest-mid) !important;
  transform: translateY(-1px);
}

/* Mobile hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--s-2);
  margin-right: calc(-1 * var(--s-2));
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease), background var(--ease);
}
.nav--scrolled .nav__toggle span { background: var(--charcoal); }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav__toggle { display: flex; }

  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(248,249,250,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--card-border);
    padding: var(--s-6) var(--gutter);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--ease), opacity var(--ease);
  }
  .nav__links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__links li { border-bottom: 1px solid var(--card-border); }
  .nav__links li:last-child { border-bottom: none; padding-top: var(--s-4); }
  .nav__links a {
    display: block;
    padding: var(--s-4) 0;
    font-size: 1rem;
    color: var(--muted) !important;
  }
  .nav__links a:hover { color: var(--forest) !important; }
  .nav__cta { display: block; text-align: center; padding: var(--s-4) !important; }
}

/* ---------------------------------------------------------------
   HERO
--------------------------------------------------------------- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/ui/hero-vancouver.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--forest); /* fallback */
  transform: scale(1);
  transition: transform 30s ease-out;
  will-change: transform;
}

.hero--loaded .hero__bg {
  transform: scale(1.1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.65) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: calc(var(--nav-height) + var(--s-8)) var(--s-8) 0;
}

.hero__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: var(--s-6);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: var(--s-6);
  text-shadow: 0 2px 32px rgba(0,0,0,0.4);
}
.hero__title-line {
  display: block;
}

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto var(--s-10);
}

.hero__actions {
  display: flex;
  gap: var(--s-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--s-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  color: rgba(255,255,255,0.45);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 1;
  transition: color var(--ease);
}
.hero__scroll:hover { color: rgba(255,255,255,0.75); }

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.50), transparent);
  /* keyframes removed for performance */
}
@keyframes scrollPulse {
  0%,100% { opacity: 1; }
}

/* ---------------------------------------------------------------
   PHILOSOPHY STRIP
--------------------------------------------------------------- */
.philosophy {
  background: var(--forest);
  padding: var(--s-16) 0;
}

.philosophy__quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 400;
  color: var(--white);
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.01em;
  opacity: 0.92;
}

/* ---------------------------------------------------------------
   SERVICES
--------------------------------------------------------------- */
.services {
  padding: var(--s-32) 0;
  background: var(--cream);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
}

.services__card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.services__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(0,0,0,0.08);
  border-color: rgba(131, 197, 190, 0.3);
}

/* Featured / highlighted card */
.services__card--featured {
  border-color: var(--evergreen);
  box-shadow: 0 0 0 2px var(--evergreen), 0 20px 60px rgba(128,143,133,0.25);
  transform: translateY(-8px);
  position: relative;
}

/* Accent bar across the top */
.services__card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--evergreen);
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  z-index: 1;
}

.services__card--featured:hover {
  transform: translateY(-14px);
  box-shadow: 0 0 0 2px var(--evergreen), 0 32px 72px rgba(128,143,133,0.32);
}

.services__card--featured .services__card-body {
  background: linear-gradient(to bottom, rgba(128,143,133,0.06) 0%, transparent 60%);
}

.services__card--featured .services__card-body h3 {
  color: var(--evergreen);
}

/* "Most Popular" badge — sits above the image, anchored to the top accent bar */
.services__card-badge {
  position: absolute;
  top: -1px;       /* flush against the accent bar */
  right: var(--s-4);
  z-index: 2;
  background: var(--evergreen);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px 3px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.services__card-badge--luxury {
  top: var(--s-3);
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: var(--radius-pill);
  padding: 2px 10px;
  font-size: 0.6rem;
}

/* Photo top */
.services__card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 800 / 540;
}
.services__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease-slow);
}
.services__card:hover .services__card-img img { transform: scale(1.04); }

.services__card-img .pill {
  position: absolute;
  top: var(--s-4);
  left: var(--s-4);
}

/* Text body */
.services__card-body {
  padding: var(--s-8);
}
.services__card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: var(--s-3);
  line-height: 1.25;
}
.services__card-body p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
}

/* 4-col → 2×2 at tablet → 1-col on mobile */
@media (max-width: 900px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .services__grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------
   SERVICE AREAS GRID
--------------------------------------------------------------- */
.areas__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s-4);
  margin-top: var(--s-10);
}

/* 5×2 → 2-col on tablet → 1-col on mobile */
@media (max-width: 900px) {
  .areas__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .areas__grid { grid-template-columns: 1fr; }
}

.area-card {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  background: var(--white);
  border-radius: var(--radius-card);
  padding: var(--s-5);
  border: 1px solid var(--card-border);
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--ease), border-color var(--ease), transform var(--ease);
}
.area-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--evergreen);
  transform: translateY(-2px);
}
.area-card__name {
  font-weight: 700;
  color: var(--evergreen);
  margin: 0;
  font-size: 0.95rem;
}
.area-card__desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  flex: 1;
}
.area-card__cta {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--evergreen);
  margin-top: var(--s-2);
  letter-spacing: 0.02em;
}

/* ---------------------------------------------------------------
   PORTFOLIO
--------------------------------------------------------------- */
.portfolio {
  padding: var(--s-32) 0;
  background: var(--cream);
}

/* Masonry-style grid */
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  grid-auto-flow: dense;
  gap: var(--s-4);
  margin-bottom: var(--s-12);
}

.portfolio__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  cursor: pointer;
  background: var(--card-border);
  display: block;
}
.portfolio__item:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

.portfolio__item--wide { grid-column: span 2; }
.portfolio__item--tall { grid-row: span 2; }
.portfolio__item--full { grid-column: span 3; }

.portfolio__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--ease-slow);
}
.portfolio__item:hover img,
.portfolio__item:focus-visible img { transform: scale(1.05); }

/* SEO caption — visually hidden, present in DOM for search engines */
.portfolio__item figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Hover overlay */
.portfolio__overlay {
  position: absolute;
  inset: 0;
  background: rgba(248, 249, 250, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--ease);
}
.portfolio__item:hover .portfolio__overlay,
.portfolio__item:focus-visible .portfolio__overlay { opacity: 1; }

.portfolio__overlay span {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  padding: var(--s-3) var(--s-6);
  border: 1.5px solid var(--forest);
  border-radius: var(--radius-pill);
  background: var(--white);
}

.portfolio__footer {
  text-align: center;
}

.portfolio__cta {
  display: flex;
  justify-content: center;
  margin-top: var(--s-8);
}

@media (max-width: 900px) {
  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }
}
@media (max-width: 600px) {
  .portfolio__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }
  .portfolio__item--wide,
  .portfolio__item--tall,
  .portfolio__item--full {
    grid-column: span 1;
    grid-row: span 1;
  }
  .portfolio__overlay { opacity: 1; }
}

/* ---------------------------------------------------------------
   FLOATING CARD FEATURE  (signature section)
--------------------------------------------------------------- */
.feature {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-24) var(--gutter);
  overflow: hidden;
}

.feature__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/ui/hero-vancouver.jpg');
  background-size: cover;
  background-position: center;
  background-color: var(--charcoal);
}

.feature__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 16, 0.50);
}

/* The floating white card */
.feature__card {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-card-lg);
  box-shadow: var(--shadow-card);
  max-width: 560px;
  width: 100%;
  overflow: hidden;
}

.feature__card-thumb {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.feature__card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature__card-body {
  padding: var(--s-10);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}

.feature__card-title {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.25;
}

.feature__card-text {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ---------------------------------------------------------------
   STATS / CREDIBILITY BAR
--------------------------------------------------------------- */
.stats {
  background: var(--charcoal);
  padding: var(--s-20) 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-8);
  text-align: center;
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
}

.stats__number-row {
  display: flex;
  align-items: baseline;
  gap: var(--s-1);
  line-height: 1;
}

.stats__number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stats__suffix {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}

.stats__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 640px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-10) var(--s-6); }
}

/* ---------------------------------------------------------------
   TESTIMONIALS
--------------------------------------------------------------- */
.testimonials {
  padding: var(--s-32) 0;
  background: var(--cream);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: var(--s-8);
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
  transition: box-shadow var(--ease), transform var(--ease);
}
.testimonial:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial--featured {
  border-color: var(--teal);
  background: linear-gradient(160deg, #FFFFFF 0%, #F8F9FA 100%);
}

.testimonial__stars {
  font-size: 1rem;
  color: var(--star);
  letter-spacing: 0.1em;
}

.testimonial__text {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.65;
  flex: 1;
}

.testimonial__footer {
  display: flex;
  align-items: center;
  gap: var(--s-4);
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--parchment);
  border: 1.5px solid var(--card-border);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.testimonial__name {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--charcoal);
}

.testimonial__role {
  display: block;
  font-size: 0.8125rem;
  color: var(--muted);
}

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

/* ---------------------------------------------------------------
   ABOUT
--------------------------------------------------------------- */
.about {
  padding: var(--s-32) 0;
  background: var(--forest);
}
.about .section-title {
  color: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--s-24);
  align-items: center;
}

.about__image-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
}
.about__image {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  width: 100%;
}
.about__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--white);
  font-style: italic;
}
.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Subtle lime border accent on image */
.about__image::after {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: 8px;
  bottom: 8px;
  border: 2px solid var(--lime);
  border-radius: var(--radius-card);
  pointer-events: none;
  opacity: 0.5;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
}

.about__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
}

.about__text {
  font-size: 1.0625rem;
  color: var(--white);   /* full white = 3.22:1 on sage; rgba(255,255,255,0.85) was ~2.78:1 */
  line-height: 1.75;
}

.about__pullquote {
  border-left: 3px solid var(--lime);
  padding-left: var(--s-6);
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--forest);
  line-height: 1.5;
  margin: var(--s-2) 0;
}

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; gap: var(--s-12); }
  .about__image { max-width: 480px; }
}

/* ---------------------------------------------------------------
   CONTACT — Inquiry Form + Calendly
--------------------------------------------------------------- */
.contact {
  padding: var(--s-32) 0;
  background: var(--parchment);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-12);
  align-items: stretch;
}

.contact__col {
  display: flex;
  flex-direction: column;
}

/* Stretch the form and its inner box to fill the column height */
.contact__col .inquiry-form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact__col .inquiry-form > .form-section {
  flex: 1;
}

/* Stretch the right column's direct form-section to fill column height */
.contact__col > .form-section {
  flex: 1;
}

.contact__col-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: var(--s-6);
  line-height: 1.25;
}

.contact__col-desc {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: var(--s-6);
}

/* Contact details block below Calendly */
.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  padding-top: var(--s-8);
  border-top: 1px solid var(--card-border);
  margin-top: var(--s-8);
}

.contact__detail {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
}

.contact__detail-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

.contact__detail-value {
  font-size: 0.9375rem;
  color: var(--charcoal);
  transition: color var(--ease);
}
a.contact__detail-value:hover { color: var(--forest); }

/* ── Contact info list (right column) ──────────────────────── */
.contact__info {
  list-style: none;
  padding: 0;
  margin-top: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s-4);
}

.contact__info-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0.15em;
  color: var(--evergreen);
}

.contact__info-body {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
}

.contact__info-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact__info-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  transition: color var(--ease);
}

.contact__info-link:hover { color: var(--evergreen); }

.contact__info-link:focus-visible {
  outline: 2px solid var(--evergreen);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Divider between sub-sections inside a form-section card */
.form-section__divider {
  margin-top: var(--s-8);
  padding-top: var(--s-8);
  border-top: 1px solid var(--card-border);
}

/* Full-width CTA button in right contact column */
.contact__cta-btn {
  width: 100%;
  justify-content: center;
  margin-top: var(--s-4);
}

/* ── Form ──────────────────────────────────────────────────── */
.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: var(--s-8);
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  padding: var(--container-padding);
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--ease), border-color var(--ease);
}

.form-section:focus-within {
  border-color: var(--teal);
  box-shadow: 0 4px 12px rgba(126, 200, 192, 0.1);
}

.form-section-title {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: var(--s-2);
  display: flex;
  align-items: center;
  gap: var(--s-2);
}

.form-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--card-border);
  opacity: 0.5;
}

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

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

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

.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}

.form-required { color: var(--teal); }

.form-input,
.form-select,
.form-textarea {
  padding: 0.75rem var(--s-4);
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--charcoal);
  background: var(--white);
  width: 100%;
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--muted); opacity: 0.6; }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--evergreen);
  box-shadow: 0 0 0 4px rgba(13, 43, 34, 0.08);
  background: #fff;
}

.form-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--s-3);
  margin-top: var(--s-3);
}

/* — Custom Range Slider — */
.slider-group {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding: var(--s-4) 0;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.slider-display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--forest);
}

.form-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--card-border);
  border-radius: var(--radius-full);
  outline: none;
  margin: var(--s-4) 0;
}

.form-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--forest);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.1s ease;
}

.form-range::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  background: var(--cedar);
}

.form-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--forest);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

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

.form-checkbox {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  padding: var(--s-3) var(--s-4);
  background: var(--parchment);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  transition: all var(--ease);
  user-select: none;
}

.form-checkbox:hover {
  background: var(--white);
  border-color: var(--teal);
  color: var(--forest);
  box-shadow: var(--shadow-sm);
}

.form-checkbox:has(input:checked) {
  background: var(--white);
  border-color: var(--forest);
  color: var(--charcoal);
  box-shadow: inset 0 0 0 1px var(--forest);
}

.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  border-radius: 3px;
  accent-color: var(--forest);
  cursor: pointer;
}

.form-input.is-error,
.form-select.is-error { border-color: var(--error); box-shadow: 0 0 0 3px rgba(192,57,43,0.10); }

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7468' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-textarea { resize: vertical; min-height: 90px; }

.form-error {
  font-size: 0.8125rem;
  color: var(--error);
  min-height: 1.1em;
}

.form-actions {
  margin-top: auto;
}

.btn--submit {
  width: 100%;
  justify-content: center;
  margin-top: var(--s-2);
  padding: 1rem;
  font-size: 0.9375rem;
}

.btn--submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.form-feedback {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  padding: var(--s-4) var(--s-5);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
}

[hidden] {
  display: none !important;
}

.form-feedback--success {
  background: rgba(13, 43, 34, 0.08);
  border: 1px solid rgba(13, 43, 34, 0.20);
  color: var(--evergreen);
}

.form-feedback--error {
  background: rgba(192, 57, 43, 0.07);
  border: 1px solid rgba(192, 57, 43, 0.20);
  color: var(--error);
}
.form-feedback--error a { color: var(--error); text-decoration: underline; }

/* ── Pixieset Widget ───────────────────────────────────────── */
.pixieset-inline-widget {
  min-width: 280px;
  height: 100%;
  min-height: 700px;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--card-border);
  background: var(--white);
}

/* Shown before Pixieset is configured */
.pixieset-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-4);
  padding: var(--s-8);
  text-align: center;
  background: var(--cream);
}

.pixieset-placeholder__icon { font-size: 2.5rem; }

.pixieset-placeholder__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
}

.pixieset-placeholder__body {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 320px;
}

.pixieset-placeholder__body code {
  font-family: monospace;
  font-size: 0.8125rem;
  background: var(--parchment);
  padding: 0.125rem 0.375rem;
  border-radius: 3px;
  color: var(--forest);
}

/* Responsive */
@media (max-width: 960px) {
  .contact__grid { grid-template-columns: 1fr; }
  .pixieset-inline-widget { height: 580px; }
}
@media (max-width: 580px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------
   PIXIESET APPOINTMENTS — Secure Online Booking
--------------------------------------------------------------- */
.pixieset-booking {
  background: var(--evergreen);
  padding: var(--section-spacing) 0;
}

/* Two-column layout */
.pixieset-booking__layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--s-12);
  align-items: center;
}

/* LEFT column */
.pixieset-booking__left {
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
}

.pixieset-booking__title {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.pixieset-booking__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  max-width: 520px;
}

/* CTAs */
.pixieset-booking__actions {
  display: flex;
  gap: var(--s-4);
  flex-wrap: wrap;
  align-items: center;
}

.pixieset-booking__btn {
  font-size: 1rem;
  padding: 1rem 2rem;
}

.pixieset-booking__btn--ghost {
  font-size: 1rem;
  padding: 1rem 1.75rem;
  border: 1.5px solid rgba(255,255,255,0.45);
  color: rgba(255,255,255,0.9);
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: border-color var(--ease), background var(--ease);
}

.pixieset-booking__btn--ghost:hover {
  border-color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08);
}

/* Trust badges */
.pixieset-booking__badges {
  display: flex;
  gap: var(--s-6);
  flex-wrap: wrap;
  padding-top: var(--s-6);
  border-top: 1px solid rgba(255,255,255,0.15);
}

.pixieset-booking__badge {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

.pixieset-booking__badge-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: rgba(255,255,255,0.6);
}

.pixieset-booking__note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.03em;
  margin-top: calc(-1 * var(--s-3));
}

/* RIGHT column: steps card */
.pixieset-booking__steps-card {
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-card-lg);
  padding: var(--s-8);
  backdrop-filter: blur(4px);
}

.pixieset-booking__steps-heading {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--s-6);
}

.pixieset-booking__steps {
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
  list-style: none;
  padding: 0;
}

.pixieset-booking__step {
  display: flex;
  gap: var(--s-4);
  align-items: flex-start;
}

.pixieset-booking__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.pixieset-booking__step-body {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
}

.pixieset-booking__step-body strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.pixieset-booking__step-body span {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.55;
}

.pixieset-booking__steps-note {
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

.pixieset-booking__steps-link {
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--ease);
}

.pixieset-booking__steps-link:hover {
  color: var(--white);
}

/* Responsive */
@media (max-width: 900px) {
  .pixieset-booking__layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .pixieset-booking__actions { flex-direction: column; align-items: flex-start; }
  .pixieset-booking__btn,
  .pixieset-booking__btn--ghost { width: 100%; text-align: center; }
  .pixieset-booking__badges { gap: var(--s-4); }
}

/* ---------------------------------------------------------------
   PLATFORMS STRIP
--------------------------------------------------------------- */
.platforms {
  background: var(--parchment);
  padding: var(--s-6) 0;
  border-bottom: 1px solid var(--card-border);
  overflow: hidden;
}
.platforms__header {
  text-align: center;
  margin-bottom: var(--s-6);
}
.platforms__label {
  font-size: 0.6875rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 600;
}
.platforms__marquee {
  display: flex;
  width: max-content;
  animation: scrollMarquee 30s linear infinite; /* Increased speed per user request */
  user-select: none;
  will-change: transform;
}
.platforms__track {
  display: flex;
  align-items: center;
  gap: var(--s-16);
  padding-right: var(--s-16); 
  flex-shrink: 0;
  transform: translateZ(0); /* Hardware acceleration */
}
.platforms__logo {
  height: 40px;
  width: auto;
  opacity: 0.50;
  filter: grayscale(100%);
  transition: opacity var(--ease), filter var(--ease), transform var(--ease);
  object-fit: contain;
}
.platforms__logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}
@keyframes scrollMarquee {
  to { transform: translateX(-50%); }
}

/* ---------------------------------------------------------------
   PROCESS
--------------------------------------------------------------- */
.process {
  background: var(--parchment);
  padding: var(--section-spacing) 0;
}
.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: var(--s-12);
}
.process__step {
  flex: 1;
  padding: 0 var(--s-8);
}
.process__step:first-child { padding-left: 0; }
.process__step:last-child  { padding-right: 0; }
.process__connector {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--card-border), transparent);
  flex-shrink: 0;
  margin-top: var(--s-6);
}
.process__num {
  font-family: var(--font-accent);
  font-size: 4rem;
  font-weight: 600;
  color: var(--forest);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: var(--s-3);
}
.process__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: var(--s-3);
}
.process__body {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
}
@media (max-width: 768px) {
  .process__steps {
    flex-direction: column;
    gap: var(--s-2);
  }
  .process__connector {
    width: 40px;
    height: 1px;
    background: linear-gradient(to right, var(--card-border), transparent);
    margin: 0 0 0 var(--s-4);
    align-self: auto;
  }
  .process__step { padding: 0; }
}

/* ---------------------------------------------------------------
   PRICING
--------------------------------------------------------------- */
.pricing {
  background: var(--parchment);
  padding: var(--section-spacing) 0;
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
  margin-top: var(--s-10);
  align-items: start;
}

/* ---- Package cards (new design) ---- */
.pkg-card {
  background: var(--white);
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-card-lg);
  padding: var(--s-8);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
  transition: box-shadow var(--ease), transform var(--ease);
}
.pkg-card:hover {
  box-shadow: 0 8px 32px rgba(128,143,133,0.18);
  transform: translateY(-3px);
}
.pkg-card--featured {
  background: var(--evergreen);
  border-color: var(--evergreen);
  box-shadow: 0 12px 40px rgba(128,143,133,0.35);
}
.pkg-card--featured:hover {
  box-shadow: 0 20px 56px rgba(128,143,133,0.45);
  transform: translateY(-5px);
}

/* Badge */
.pkg-card__badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--cedar);
  color: var(--charcoal);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}
.pkg-card--featured .pkg-card__badge {
  background: rgba(255,255,255,0.22);
  color: var(--white);
}
.pkg-card__badge--entry {
  background: var(--slate-light);
  color: var(--muted);
  border: 1px solid var(--card-border);
}
.pkg-card__badge--luxury {
  background: var(--charcoal);
  color: var(--white);
}
.pkg-card__sparkle {
  color: inherit;
  font-style: normal;
}

/* Top block: label + price + size */
.pkg-card__top {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
}
.pkg-card__label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.pkg-card--featured .pkg-card__label {
  color: rgba(255,255,255,0.75);
}
.pkg-card__price {
  font-family: var(--font-accent);
  font-size: 3rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}
.pkg-card--featured .pkg-card__price {
  color: var(--white);
}
.pkg-card__dollar {
  font-size: 1.375rem;
  vertical-align: super;
  line-height: 1;
}
.pkg-card__size {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: var(--s-1);
}
.pkg-card--featured .pkg-card__size {
  color: rgba(255,255,255,0.7);
}

/* Divider */
.pkg-card__top::after {
  content: '';
  display: block;
  height: 1px;
  background: var(--card-border);
  margin-top: var(--s-4);
}
.pkg-card--featured .pkg-card__top::after {
  background: rgba(255,255,255,0.2);
}

/* Feature list */
.pkg-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  flex: 1;
}
.pkg-card__features li {
  font-size: 0.875rem;
  color: var(--charcoal);
  padding-left: var(--s-6);
  position: relative;
  line-height: 1.4;
}
.pkg-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--evergreen);
  font-weight: 700;
}
.pkg-card--featured .pkg-card__features li {
  color: rgba(255,255,255,0.92);
}
.pkg-card--featured .pkg-card__features li::before {
  color: rgba(255,255,255,0.7);
}

/* CTA button */
.pkg-card__btn {
  display: block;
  text-align: center;
  padding: 0.75rem var(--s-6);
  border-radius: var(--radius-md);
  border-radius: var(--radius-card);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background var(--ease), color var(--ease), transform var(--ease);
  background: var(--white);
  color: var(--evergreen);
  border: 1.5px solid var(--evergreen);
}
.pkg-card__btn:hover {
  background: var(--evergreen);
  color: var(--white);
  border-color: var(--evergreen);
  transform: translateY(-1px);
}
.pkg-card--featured .pkg-card__btn {
  background: var(--white);
  color: var(--evergreen);
  border-color: transparent;
}
.pkg-card--featured .pkg-card__btn:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* ADD-ON BADGE */
.pricing__addon {
  position: relative;
}
.badge--popular {
  position: absolute;
  top: -10px;
  left: var(--s-6);
  background: rgba(128,143,133,0.12);
  color: var(--evergreen);
  border: 1px solid rgba(128,143,133,0.3);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  z-index: 10;
}
.pricing__cta {
  font-size: 0.8125rem;
  padding: 0.625rem 1.25rem;
  justify-self: end;
}
.pricing__addons {
  margin-top: var(--s-12);
  padding-top: var(--s-10);
  border-top: 1px solid var(--card-border);
}
.pricing__addons-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: var(--s-6);
  text-align: center;
}
.pricing__addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-6);
  max-width: 840px;
  margin: 0 auto;
}
.pricing__addon {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: var(--s-6);
  transition: box-shadow var(--ease), transform var(--ease);
}
.pricing__addon:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.pricing__addon-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--s-2);
  gap: var(--s-4);
}
.pricing__addon-name {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.3;
}
.pricing__addon-price {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--forest);
  white-space: nowrap;
}
.pricing__addon-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}
.badge--referred {
  position: absolute;
  top: -10px;
  left: var(--s-6);
  background: var(--glacier);
  color: var(--charcoal);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  z-index: 10;
}
@media (max-width: 768px) {
  .pricing__addons-grid {
    grid-template-columns: 1fr;
  }
}

/* Travel fees */
.pricing__travel {
  margin-top: var(--s-10);
  padding-top: var(--s-10);
  border-top: 1px solid var(--card-border);
}
.pricing__travel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-6);
  max-width: 840px;
  margin: 0 auto;
}
.pricing__travel-table {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.pricing__travel-region {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: var(--s-4) var(--s-5);
  border-bottom: 1px solid var(--card-border);
  margin: 0;
}
.travel-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.travel-table thead th {
  background: var(--slate-light);
  padding: var(--s-2) var(--s-5);
  text-align: left;
  font-weight: 600;
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.travel-table tbody td {
  padding: var(--s-3) var(--s-5);
  color: var(--charcoal);
  border-top: 1px solid var(--card-border);
}
.travel-table tbody td:last-child {
  font-weight: 600;
  color: var(--evergreen);
  text-align: right;
  white-space: nowrap;
}
.travel-table tbody tr:first-child td { border-top: none; }
.travel-table tbody tr.travel-free td:last-child { color: var(--evergreen); }
@media (max-width: 768px) {
  .pricing__travel-grid { grid-template-columns: 1fr; }
}

.pricing__note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: var(--s-8);
}
.pricing__note a {
  color: var(--forest);
  font-weight: 600;
}
.pricing__note a:hover { text-decoration: underline; }

/* CALCULATOR LAYOUT */
.pricing__layout {
  display: grid;
  grid-template-columns: minmax(auto, 840px) 380px;
  gap: var(--s-12);
  align-items: start;
  margin-top: var(--s-12);
  justify-content: center;
}

.pricing__calc {
  position: sticky;
  top: calc(var(--nav-height) + var(--s-8));
  z-index: 10;
}

.calc-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card-lg);
  padding: var(--s-8);
  box-shadow: var(--shadow-lg);
}

.calc-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: var(--s-1);
}

.calc-card__sub {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: var(--s-8);
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  margin-bottom: var(--s-10);
}

.calc-checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
  margin-top: var(--s-2);
}

.calc-checkbox {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 0.8125rem;
  color: var(--charcoal);
  cursor: pointer;
  user-select: none;
}

.calc-checkbox input {
  width: 16px;
  height: 16px;
  accent-color: var(--forest);
}

.calc-result {
  background: var(--cream);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: var(--s-6);
}

.calc-result__header {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: var(--s-4);
  padding-bottom: var(--s-4);
  border-bottom: 2px dashed var(--card-border);
}

.calc-result__label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.calc-result__package {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--forest);
}

.calc-result__breakdown {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  margin-bottom: var(--s-6);
}

.calc-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--muted);
}

.calc-line--total {
  margin-top: var(--s-2);
  padding-top: var(--s-3);
  border-top: 1px solid var(--card-border);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--charcoal);
}

.calc-result__includes {
  margin-bottom: var(--s-6);
}

.calc-result__includes p {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: var(--s-2);
}

.calc-result__includes ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.calc-result__includes li {
  font-size: 0.75rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: var(--s-2);
}

.calc-result__includes li::before {
  content: '✓';
  color: var(--success);
  font-weight: 900;
}

.btn--full {
  width: 100%;
}

@media (max-width: 1200px) {
  .pricing__layout {
    grid-template-columns: 1fr;
    gap: var(--s-16);
  }
  .pricing__calc {
    position: static;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 960px) {
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  .pkg-card--featured {
    transform: none;
  }
  .pkg-card--featured:hover { transform: translateY(-3px); }
  .pricing__cta {
    width: 100%;
  }
  .pricing__desc {
    max-width: none;
  }
  .services__card-badge--luxury {
    top: var(--s-2);
    right: var(--s-3);
  }
}

/* ---------------------------------------------------------------
   FAQ
--------------------------------------------------------------- */
.faq {
  background: var(--cream);
  padding: var(--section-spacing) 0;
}
.faq__list {
  margin-top: var(--s-12);
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.faq__item {
  border-bottom: 1px solid var(--card-border);
}
.faq__item:first-child { border-top: 1px solid var(--card-border); }
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: clamp(var(--s-4), 3vw, var(--s-8)) 0;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  color: var(--charcoal);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--ease);
}
.faq__question:hover { color: var(--forest); }
.faq__question:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
.faq__icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--card-border);
  flex-shrink: 0;
  position: relative;
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--glacier);
  transition: transform 0.3s var(--ease), opacity var(--ease), background var(--ease);
}
.faq__icon::before { width: 10px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq__icon::after  { width: 1.5px; height: 10px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq__question[aria-expanded="true"] .faq__icon {
  background: var(--forest);
  border-color: var(--forest);
  transform: rotate(45deg);
}
.faq__question[aria-expanded="true"] .faq__icon::before,
.faq__question[aria-expanded="true"] .faq__icon::after { background: var(--white); }
.faq__answer {
  padding: 0 0 clamp(var(--s-6), 4vw, var(--s-10)) 0;
  max-width: 860px;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
}
.faq__fees {
  margin-top: var(--s-4);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.faq__fee-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-4) var(--s-5);
  border-top: 1px solid var(--card-border);
}
.faq__fee-row:first-child { border-top: none; }
.faq__fee-info {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
}
.faq__fee-name {
  font-weight: 600;
  color: var(--charcoal);
  font-size: 0.9375rem;
}
.faq__fee-desc {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.5;
}
.faq__fee-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gold);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ---------------------------------------------------------------
   CTA BANNER
--------------------------------------------------------------- */
.cta-banner {
  position: relative;
  background: var(--forest);
  padding: var(--section-spacing) 0;
  overflow: hidden;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  background: url('../images/ui/hero-vancouver.jpg') center / cover no-repeat;
  opacity: 0.10;
  pointer-events: none;
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--s-12);
}
.cta-banner__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: var(--s-6);
}
.cta-banner__image-wrapper {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform var(--ease);
}
.cta-banner__image-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}
.cta-banner__image {
  width: 100%;
  height: auto;
  display: block;
}
.cta-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}
.cta-banner__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.62);
  max-width: 540px;
  line-height: 1.65;
}
.cta-banner__actions {
  display: flex;
  gap: var(--s-4);
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 900px) {
  .cta-banner__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cta-banner__content {
    align-items: center;
    text-align: center;
  }
  .cta-banner__actions {
    justify-content: center;
  }
  .cta-banner__image-wrapper {
    transform: none;
  }
}
@media (max-width: 580px) {
  .cta-banner__actions { flex-direction: column; align-items: stretch; }
  .cta-banner__actions .btn { justify-content: center; }
}

/* ---------------------------------------------------------------
   FOOTER
--------------------------------------------------------------- */
.footer {
  background: var(--charcoal);
  padding: var(--s-20) 0 var(--s-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: var(--s-12);
  margin-bottom: var(--s-12);
}

.footer__logo {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--s-4);
}
.footer__logo span { color: var(--teal); }

.footer__tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

.footer__heading {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
  margin-bottom: var(--s-5);
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.footer__links a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--ease);
}
.footer__links a:hover { color: var(--white); }

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
}
.footer__contact a { transition: color var(--ease); }
.footer__contact a:hover { color: var(--teal); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding-top: var(--s-8);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.30);
  flex-wrap: wrap;
}

/* ---------------------------------------------------------------
   LANGUAGE TOGGLE
--------------------------------------------------------------- */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color var(--ease);
  overflow: hidden;
  flex-shrink: 0;
}
.lang-toggle:hover {
  border-color: rgba(255,255,255,0.40);
}
.lang-toggle:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}
.lang-toggle__option {
  padding: 0.3125rem 0.625rem;
  color: rgba(255,255,255,0.35);
  transition: background var(--ease), color var(--ease);
  line-height: 1;
}
.lang-toggle__option--active {
  background: rgba(255,255,255,0.14);
  color: var(--white);
}
.lang-toggle__divider {
  width: 1px;
  height: 1rem;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}

@media (max-width: 520px) {
  .lang-toggle { align-self: flex-start; }
}

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
}
@media (max-width: 520px) {
  .footer {
    padding: var(--s-12) 0 var(--s-12);
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--s-8);
  }
  .footer__brand { grid-column: span 1; }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s-2);
    padding-top: var(--s-6);
  }
}

/* ---------------------------------------------------------------
   LIGHTBOX
--------------------------------------------------------------- */
.lightbox__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17,17,16,0.94);
  z-index: 1000;
  cursor: pointer;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-8);
  pointer-events: none;
}
.lightbox:not([hidden]) { pointer-events: auto; }

.lightbox__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-4);
  max-width: 90vw;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}

.lightbox__caption {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  text-align: center;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: fixed;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease);
  z-index: 1002;
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(255,255,255,0.22); }
.lightbox__close:focus-visible,
.lightbox__prev:focus-visible,
.lightbox__next:focus-visible { outline: 2px solid var(--teal); }

.lightbox__close { top: var(--s-8); right: var(--s-8); }
.lightbox__prev  { left: var(--s-8); top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: var(--s-8); top: 50%; transform: translateY(-50%); }

/* ---------------------------------------------------------------
   SCROLL-TRIGGERED FADE-IN
--------------------------------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in:nth-child(2) { transition-delay: 0.05s; }
.fade-in:nth-child(3) { transition-delay: 0.1s; }
.fade-in:nth-child(4) { transition-delay: 0.15s; }

/* ---------------------------------------------------------------
   PRICING CALCULATOR
--------------------------------------------------------------- */
.calc {
  background: var(--slate-light);
  padding: var(--s-32) 0;
}

.container--calc {
  max-width: 1100px;
}

/* Two-column layout: inputs | sticky result */
.calc__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--s-8);
  align-items: start;
  margin-top: var(--s-10);
}

/* LEFT: Input form */
.calc__inputs {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}

.calc__step {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card-lg);
  padding: var(--s-8);
}

.calc__step-heading {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: var(--s-6);
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.calc__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--evergreen);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  font-family: var(--font-body);
  flex-shrink: 0;
}

.calc__step-optional {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: var(--slate-light);
  padding: 2px 8px;
  border-radius: 20px;
  font-family: var(--font-body);
  margin-left: auto;
}

.calc__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
  margin-top: var(--s-6);
}

/* Tier labels below the slider */
.calc__tier-track {
  display: flex;
  justify-content: space-between;
  margin-top: var(--s-2);
  padding: 0 2px;
}

.calc__tier-track span {
  font-size: 0.6875rem;
  color: var(--muted);
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
}

.calc__tier-track em {
  display: block;
  font-style: normal;
  color: var(--evergreen);
  font-weight: 600;
}

/* Add-on toggle list */
.calc__addon-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.calc__addon-toggle {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-4) var(--s-5);
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-card);
  cursor: pointer;
  background: var(--white);
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  position: relative;
  user-select: none;
}

.calc__addon-toggle:hover {
  border-color: var(--glacier);
  background: var(--white);
}

/* Hide native checkbox */
.calc__addon-toggle input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Selected state */
.calc__addon-toggle:has(input:checked) {
  border-color: var(--evergreen);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(128, 143, 133, 0.15);
}

/* Qty card active state (toggled via JS) */
.calc__addon-toggle--qty.calc__addon-toggle--active {
  border-color: var(--evergreen);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(128, 143, 133, 0.15);
}

.calc__addon-name {
  flex: 1;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.calc__addon-price {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--evergreen);
  flex-shrink: 0;
}

/* Checkmark pill (checkbox cards only) */
.calc__addon-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: transparent;
  transition: all 0.15s;
  flex-shrink: 0;
  background: var(--white);
}

.calc__addon-toggle:has(input:checked) .calc__addon-check {
  background: var(--evergreen);
  border-color: var(--evergreen);
  color: var(--white);
}

/* Qty controls */
.calc__qty-control {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  background: var(--slate-light);
  padding: 4px;
  border-radius: var(--radius-sm);
  width: fit-content;
}

.calc__qty-btn {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--card-border);
  color: var(--charcoal);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--ease);
}

.calc__qty-btn:hover {
  background: var(--evergreen);
  color: var(--white);
  border-color: var(--evergreen);
}

.calc__qty-btn:active {
  transform: scale(0.95);
}

.calc__qty-val {
  font-weight: 700;
  font-size: 0.9375rem;
  min-width: 24px;
  text-align: center;
  color: var(--charcoal);
}

/* RIGHT: Live result panel */
.calc__result {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card-lg);
  padding: var(--s-8);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}

.calc__result-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: var(--s-1);
}

.calc__result-package {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--evergreen);
  margin-bottom: var(--s-6);
}

.calc__breakdown {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  padding-bottom: var(--s-5);
}

.calc__breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.calc__breakdown-label {
  color: var(--muted);
}

.calc__breakdown-val {
  font-weight: 600;
  color: var(--charcoal);
}

.calc__result-divider {
  height: 1px;
  background: var(--card-border);
  margin-bottom: var(--s-5);
}

.calc__result-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--s-6);
}

.calc__result-total-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
}

.calc__result-total-val {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}

.calc__includes {
  list-style: none;
  padding: 0;
  margin-bottom: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.calc__includes li {
  font-size: 0.8125rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: var(--s-2);
}

.calc__includes li::before {
  content: '✓';
  color: var(--evergreen);
  font-weight: 700;
  flex-shrink: 0;
}

.calc__result-cta {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.calc__result-note {
  margin-top: var(--s-3);
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 960px) {
  .calc__layout {
    grid-template-columns: 1fr;
  }
  .calc__result {
    position: static;
  }
}

@media (max-width: 640px) {
  .calc__row { grid-template-columns: 1fr; }
  .calc__step { padding: var(--s-6); }
  .calc__result { padding: var(--s-6); }
}

/* ---------------------------------------------------------------
   GLOBAL RESPONSIVE HELPERS
--------------------------------------------------------------- */
@media (max-width: 640px) {
  .container { padding: 0 var(--s-6); }
  .services, .portfolio, .testimonials, .about,
  .booking-cta, .stats { padding-top: var(--s-20); padding-bottom: var(--s-20); }
}

/* ---------------------------------------------------------------
   COOKIE CONSENT BANNER
--------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: var(--s-6);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - var(--s-12));
  max-width: 760px;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-card);
  padding: var(--s-5) var(--s-6);
  display: flex;
  align-items: center;
  gap: var(--s-6);
  flex-wrap: wrap;
  z-index: 9999;
  box-shadow: 0 8px 48px rgba(0,0,0,0.35);
  animation: cookieSlideUp 0.3s ease;
}
.cookie-banner[hidden] { display: none !important; }

@keyframes cookieSlideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(12px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0);    }
}

.cookie-banner__text {
  flex: 1;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
  min-width: 200px;
}

.cookie-banner__link {
  color: var(--glacier);
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}
.cookie-banner__link:hover { color: var(--white); }

.cookie-banner__actions {
  display: flex;
  gap: var(--s-3);
  flex-shrink: 0;
  align-items: center;
}

.cookie-banner__decline {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
  background: none;
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-md);
  padding: 0.625rem 1.125rem;
  cursor: pointer;
  transition: border-color var(--ease), color var(--ease);
}
.cookie-banner__decline:hover {
  border-color: rgba(255,255,255,0.45);
  color: var(--white);
}
.cookie-banner__decline:focus-visible {
  outline: 2px solid rgba(255,255,255,0.5);
  outline-offset: 3px;
}

.cookie-banner__accept {
  font-size: 0.8125rem;
  padding: 0.625rem 1.125rem;
}

@media (max-width: 580px) {
  .cookie-banner {
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
    border-radius: var(--radius-card) var(--radius-card) 0 0;
  }
  @keyframes cookieSlideUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0);    }
  }
  .cookie-banner__actions {
    width: 100%;
  }
  .cookie-banner__decline,
  .cookie-banner__accept {
    flex: 1;
    justify-content: center;
    text-align: center;
  }
}

/* ---------------------------------------------------------------
   PREFERS-REDUCED-MOTION — disable all animations
--------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
