/* ---- Design tokens (extracted from the original site's CSS variables & custom.css) ---- */
:root {
  --color-brand: #008278;      /* primary teal — CTAs */
  --color-brand-dark: #105852; /* dark teal — headings/text */
  --color-mint: #cce6e4;       /* pale mint — section backgrounds */
  --color-gold: #f3ca43;       /* gold — highlights */
  --color-cream: #faf8f4;      /* warm off-white background */
  --color-ink: #22302e;
  --font-display: 'Young Serif', serif;
  --font-body: 'Bitter', serif;
  --max-width: 1200px;
  --header-max-width: 1440px;
  --radius: 14px;
  --space-1: .5em;
  --space-2: 1em;
  --space-3: 1.5em;
  --space-4: 2em;
  --space-5: 2.5em;
  --space-6: 3em;
  --space-7: 4em;
  --space-8: 6em;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4, .as-h1.as-h1.as-h1.as-h1, .as-h2.as-h2.as-h2.as-h2, .as-h3.as-h3.as-h3.as-h3, .as-h4.as-h4.as-h4.as-h4{
  font-family: var(--font-display);
  color: var(--color-brand-dark);
  line-height: 1.2;
  margin: 0 0 .5em;
}
h1, .as-h1.as-h1.as-h1.as-h1{ font-size: clamp(2rem, 4vw, 3.2rem); }
h2, .as-h2.as-h2.as-h2.as-h2{ font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3, .as-h3.as-h3.as-h3.as-h3{ font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4, .as-h4.as-h4.as-h4.as-h4{ font-size: 1.1rem; }
p { margin: 0 0 1em; }
a { color: var(--color-brand); text-decoration: none; }

.text-highlight {
  background: linear-gradient(120deg, rgba(243,202,67,.25) 0%, rgba(243,202,67,.35) 100%);
  padding: .05em .3em;
  border-radius: 4px;
  color: inherit;
  /* Without this the highlight wraps as one stretched box and the second line
     renders detached — very visible on mobile where headings wrap. */
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
a:hover { text-decoration: underline; }
ul { list-style: none; margin: 0; padding: 0; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-brand);
  color: #fff;
  padding: .75em 1.5em;
  z-index: 100;
}
.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.btn {
  display: inline-block;
  padding: .8em 1.9em;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.btn--primary {
  background: #fff;
  color: var(--color-brand);
  border-color: var(--color-brand);
}
.btn--primary:hover {
  background: var(--color-brand);
  color: #fff;
  text-decoration: none;
}
.btn--outline {
  background: transparent;
  color: var(--color-brand-dark);
  border-color: var(--color-brand-dark);
}
.btn--outline:hover {
  background: var(--color-brand-dark);
  color: #fff;
  text-decoration: none;
}

.highlight {
  color: var(--color-gold);
  font-style: italic;
  font-weight: 600;
}

/* Hand-drawn-style wavy underline flourish under a key phrase */
.underline-squiggle {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 14' preserveAspectRatio='none'%3E%3Cpath d='M0 9 Q 25 2 50 9 T 100 9' fill='none' stroke='%23f3ca43' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 12px;
  padding-bottom: .2em;
}

/* Simple straight gold underline */
.underline-straight {
  border-bottom: 2.5px solid var(--color-gold);
  padding-bottom: .2em;
}

/* Hand-drawn-style circle annotation around a key word */
.circle-highlight {
  position: relative;
  display: inline-block;
  padding: 0 .12em;
}
.circle-highlight::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -8%;
  right: -8%;
  top: -30%;
  bottom: -30%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 50' preserveAspectRatio='none'%3E%3Cpath d='M18,30 C14,12 58,3 100,4 C144,5 190,12 188,27 C192,44 146,49 100,48 C54,47 10,41 13,32 C14,29 16,28 20,29' fill='none' stroke='%23f3ca43' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 244, .68);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid rgba(16,88,82,.08);
  box-shadow: 0 0 0 rgba(16,88,82,0);
  transform: translateY(0);
  transition: box-shadow .35s ease, border-color .35s ease, transform .4s ease, background .35s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(16,88,82,.12);
  border-bottom-color: transparent;
  background: rgba(250, 248, 244, .82);
}
.site-header.is-hidden {
  transform: translateY(-100%);
}
.site-header__bar {
  max-width: var(--header-max-width);
  margin: 0 auto;
  padding: 1.8em var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-5);
  transition: padding .35s ease;
}
.site-header.is-scrolled .site-header__bar { padding-top: 1em; padding-bottom: 1em; }
.site-header__logo img { height: 58px; width: auto; transition: height .35s ease; }
.site-header.is-scrolled .site-header__logo img { height: 44px; }
.site-nav ul {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.site-nav a {
  color: var(--color-brand-dark);
  font-weight: 600;
  font-size: 1.05rem;
}
.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-dark);
  transition: color .2s ease, transform .2s ease;
}
.icon-link svg { width: 23px; height: 23px; display: block; }
.icon-link:hover { color: var(--color-brand); transform: translateY(-1px); }
.footer-social .icon-link,
.mobile-nav__social .icon-link { color: inherit; }
.site-header__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.site-header__actions a:not(.btn) {
  color: var(--color-brand-dark);
  font-size: .85rem;
}
.site-header__actions .btn { text-transform: uppercase; letter-spacing: .05em; }
.site-header__burger { display: none; }

.mobile-nav { display: none; }

@media (max-width: 860px) {
  .site-nav, .site-header__actions a:not(.btn) { display: none; }
  .site-header__actions .btn { display: none; }
  .site-header__burger {
    display: block;
    margin-left: auto;
    background: none;
    border: none;
    /* 44x44 tap target (was 32x24). The bars below stay 32px wide and 16px
       apart, so the icon itself looks exactly the same. */
    width: 44px; height: 44px;
    margin-right: -6px;
    position: relative;
    cursor: pointer;
  }
  .site-header__burger::before,
  .site-header__burger::after {
    content: "";
    position: absolute;
    left: 6px; right: 6px;
    height: 2px;
    background: var(--color-brand-dark);
  }
  .site-header__burger::before { top: 14px; }
  .site-header__burger::after { bottom: 14px; }

  /* iOS zooms the whole page when a focused field is under 16px. */
  .field input,
  .field select,
  .field textarea,
  .form-page .field input,
  .form-page .field select,
  .form-page .field textarea,
  .newsletter__fields input {
    font-size: 16px;
    min-height: 44px;
  }
  .mobile-nav[hidden] { display: none; }
  .mobile-nav {
    display: block;
    padding: var(--space-2) var(--space-3) var(--space-3);
    border-top: 1px solid rgba(0,0,0,.06);
  }
  .mobile-nav ul { display: flex; flex-direction: column; gap: var(--space-2); }
  .mobile-nav a { color: var(--color-brand-dark); font-weight: 600; }
  .mobile-nav__social { display: flex; gap: var(--space-2); margin-top: var(--space-2); }
}

/* ---- Generic section rhythm ---- */
/* Side padding grows to keep content within --max-width on wide screens,
   while backgrounds (which paint the full padding-box) stay edge-to-edge. */
main > section {
  padding: clamp(var(--space-6), 8vw, var(--space-8)) max(var(--space-3), calc((100% - var(--max-width)) / 2));
}

/* ---- Hero ---- */
.hero {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: var(--space-8) var(--space-3);
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(16,88,82,.55), rgba(16,88,82,.75));
}
.hero--video {
  overflow: hidden;
  margin-bottom: -1px;
}
.hero--video::before {
  background: rgba(0,130,120,.55);
}
.hero__bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  will-change: transform;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.hero h1, .hero .as-h1.as-h1.as-h1.as-h1{ color: #fff; font-size: clamp(2.2rem, 4.6vw, 3.8rem); }
.hero--wave-bottom h1, .hero--wave-bottom .as-h1.as-h1.as-h1.as-h1{ white-space: nowrap; }
@media (max-width: 760px) {
  .hero--wave-bottom h1, .hero--wave-bottom .as-h1.as-h1.as-h1.as-h1{ white-space: normal; }
}
@media (max-width: 640px) {
  .hero h1, .hero .as-h1.as-h1.as-h1.as-h1{ white-space: normal; }
}
.hero .lead { font-size: 1.15rem; font-weight: 700; }
.hero__subtext { font-size: 1.05rem; opacity: .9; }
.hero__stat { margin-top: var(--space-3); font-size: .9rem; letter-spacing: .05em; text-transform: uppercase; }

/* ---- Intro ---- */
.intro {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: var(--space-6);
  align-items: start;
}
.intro__image { border-radius: var(--radius); width: 100%; max-height: 420px; object-fit: cover; object-position: center bottom; }
@media (max-width: 900px) {
  .intro { grid-template-columns: 1fr; }
}
.intro__image--face { max-height: 560px; object-position: center 15%; }
.intro__image--top { max-height: 480px; object-position: center 48%; }
.intro__image--phone { max-height: 420px; object-fit: contain; }
.intro--parallax__left,
.intro--parallax__right {
  will-change: transform, opacity;
}

.intro__image--map {
  max-height: 520px;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(16,88,82,.18), 0 4px 12px rgba(16,88,82,.08);
  transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s ease;
}
.intro__image--map:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px rgba(16,88,82,.24), 0 8px 20px rgba(16,88,82,.12);
}
.intro--center { align-items: center; }

/* ---- Formulas ---- */
.section-header { text-align: center; max-width: 720px; margin-inline: auto; }
.formulas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-5);
}
.formula-card {
  background: #fff;
  border-radius: var(--radius);
  padding: var(--space-3);
  box-shadow: 0 6px 24px rgba(0,0,0,.06);
  text-align: center;
  border: 1.5px solid transparent;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.formula-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 44px rgba(16,88,82,.18);
  border-color: var(--color-mint);
}
.formula-card__image-wrap { border-radius: calc(var(--radius) - 4px); overflow: hidden; margin-bottom: 1em; }
.formula-card img { display: block; width: 100%; margin-bottom: 0; transition: transform .5s ease; }
.formula-card:hover img { transform: scale(1.08); }
.formula-card h3 span, .formula-card .as-h3.as-h3.as-h3.as-h3 span{ display: block; font-size: .8em; font-weight: 400; color: var(--color-brand); }
.formulas__cta { text-align: center; margin-top: var(--space-5); }
@media (max-width: 900px) {
  .formulas__grid { grid-template-columns: 1fr; }
}

.app-preview { text-align: center; margin-top: var(--space-7); }
.app-preview__images {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin: var(--space-3) 0;
}
.app-preview__images figure {
  margin: 0;
  width: 460px;
  max-width: 90vw;
  transition: width .5s cubic-bezier(.4,0,.2,1);
}
.app-preview__images figure:hover { width: 490px; }
.app-preview__images img {
  display: block;
  border-radius: var(--radius);
  width: 100%;
  height: 420px;
  object-fit: cover;
  cursor: zoom-in;
  transition: height .4s cubic-bezier(.4,0,.2,1), box-shadow .4s ease;
}
.app-preview__images figure:hover img {
  height: 450px;
  box-shadow: 0 12px 30px rgba(16,88,82,.15);
}
@media (max-width: 900px) {
  .app-preview__images figure:hover { width: 100%; }
  .app-preview__images figure:hover img { height: 420px; }
}
.app-preview__images figcaption { margin-top: var(--space-1); font-style: italic; color: var(--color-brand); }

/* ---- Section depth: soft shade cast by the section above ---- */
.shade-top { position: relative; }
.shade-top::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 52px;
  pointer-events: none;
  background: linear-gradient(to bottom,
    rgba(0,0,0,.13) 0,
    rgba(0,0,0,.05) 32%,
    rgba(0,0,0,.014) 64%,
    rgba(0,0,0,0) 100%);
}
.shade-top--strong::after {
  height: 62px;
  background: linear-gradient(to bottom,
    rgba(0,0,0,.20) 0,
    rgba(0,0,0,.08) 32%,
    rgba(0,0,0,.022) 64%,
    rgba(0,0,0,0) 100%);
}

/* ---- Why us ---- */
.why-us { background: var(--color-mint); }
.why-us--chevron-top {
  clip-path: polygon(0 0, 72% 3.5vw, 100% 0, 100% 100%, 0 100%);
  padding-top: calc(clamp(var(--space-6), 8vw, var(--space-8)) + 3.5vw);
}
.why-us h2, .why-us .as-h2.as-h2.as-h2.as-h2{ text-align: center; }
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-5);
}
.why-us__item { margin: 0; display: flex; flex-direction: column; }
.why-us__image-wrap { border-radius: var(--radius); overflow: hidden; }
.why-us__item img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform .5s ease;
}
.why-us__image-wrap:hover img { transform: scale(1.08); }
.why-us__item figcaption { font-size: .85rem; color: var(--color-brand); margin: var(--space-1) 0 0; }
.why-us__item h4, .why-us__item .as-h4.as-h4.as-h4.as-h4{ min-height: 2.6em; }
@media (max-width: 900px) {
  .why-us__grid { grid-template-columns: 1fr; }
}

/* ---- About teaser ---- */
.about-teaser {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: var(--space-6);
  align-items: center;
}
.about-teaser img { border-radius: var(--radius); width: 100%; height: 480px; object-fit: cover; object-position: center 55%; }
.stats {
  grid-column: 1 / -1;
  display: flex;
  gap: var(--space-6);
  justify-content: center;
  margin: var(--space-4) 0 0;
  text-align: center;
}
.stats div { margin: 0; }
.stats dt { font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: var(--color-brand); }
.stats dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-brand-dark);
}
@media (max-width: 760px) {
  .about-teaser { grid-template-columns: 1fr; }
}

/* ---- Where to go ---- */
.where-to-go {
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  text-align: center;
}
.where-to-go::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16,88,82,.7);
}
.where-to-go__content {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}
.where-to-go h2, .where-to-go .as-h2.as-h2.as-h2.as-h2{ color: #fff; }

/* ---- Services ---- */
.services__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.services__header img { width: 110px; height: 110px; object-fit: cover; border-radius: 50%; }
.services__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin: var(--space-5) 0;
}
.services__list li {
  background: #fff;
  border-radius: var(--radius);
  padding: var(--space-3);
  box-shadow: 0 6px 24px rgba(0,0,0,.06);
}
.services__list h3 span, .services__list .as-h3.as-h3.as-h3.as-h3 span{ font-weight: 400; font-size: .8em; color: var(--color-brand); }
@media (max-width: 700px) {
  .services__list { grid-template-columns: 1fr; }
}

/* ---- Partners ---- */
.partners {
  padding: var(--space-6) var(--space-4);
  text-align: center;
  overflow: hidden;
}
.partners__eyebrow {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-brand);
  margin-bottom: var(--space-1);
}
.partners h2, .partners .as-h2.as-h2.as-h2.as-h2{
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--color-brand-dark);
  margin-bottom: var(--space-5);
}
.partners__track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.partners__track img {
  height: 120px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .45;
  transition: filter .3s, opacity .3s;
}
.partners__track img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}
.partners__track img {
  transition: filter .3s, opacity .3s, transform .3s;
}
.partners__note {
  max-width: 520px;
  margin: var(--space-4) auto 0;
  font-size: .82rem;
  color: rgba(16,88,82,.55);
  line-height: 1.5;
  font-style: italic;
}
@media (max-width: 600px) {
  .partners__track { gap: var(--space-4); }
  .partners__track img { height: 50px; }
}

/* ---- Testimonials ---- */
.testimonials { background: var(--color-mint); overflow-x: hidden; }
.testimonials h2, .testimonials .as-h2.as-h2.as-h2.as-h2{ text-align: center; }
.testimonials__grid {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-5);
  overflow-x: auto;
  cursor: grab;
  /* break out of the centered content column to run edge-to-edge */
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  padding-left: max(var(--space-3), calc((100% - var(--max-width)) / 2 + var(--space-3)));
  padding-right: max(var(--space-3), calc((100% - var(--max-width)) / 2));
  padding-bottom: var(--space-3);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.testimonials__grid:active { cursor: grabbing; }
.testimonials__grid::-webkit-scrollbar { display: none; }
.testimonials blockquote {
  flex: 0 0 auto;
  width: min(340px, 82vw);
  margin: 0;
  background: #fff;
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.testimonial-avatar {
  order: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: var(--space-2);
}
.testimonials p { order: 2; font-style: italic; font-size: .95rem; margin: 0; text-align: left; }
.testimonials cite {
  order: 1;
  display: block;
  margin-bottom: var(--space-2);
  font-style: normal;
  font-weight: 700;
  color: var(--color-brand);
  font-size: 1rem;
}

/* ---- Blog teaser ---- */
.blog-teaser h2, /* ---- Blog teaser ---- */
.blog-teaser .as-h2.as-h2.as-h2.as-h2{ text-align: center; }
.blog-teaser__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  margin: var(--space-5) 0;
}
.blog-teaser__grid article { text-align: center; }
.blog-teaser__grid article img { border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; margin-bottom: 1em; }
.blog-teaser__grid article h3, .blog-teaser__grid article .as-h3.as-h3.as-h3.as-h3{ font-size: 1rem; }
.blog-teaser { text-align: center; }

/* Clickable blog cards (homepage) */
.blog-card {
  display: flex;
  flex-direction: column;
  text-align: left;
  text-decoration: none;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(16,88,82,.06);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 44px rgba(16,88,82,.16);
  text-decoration: none;
}
.blog-card__media {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.blog-card:hover .blog-card__media img { transform: scale(1.07); }
.blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--space-3);
  gap: var(--space-2);
}
.blog-card__body h3, .blog-card__body .as-h3.as-h3.as-h3.as-h3{
  font-size: 1.05rem;
  margin: 0;
  color: var(--color-brand-dark);
  transition: color .25s ease;
}
.blog-card:hover .blog-card__body h3, .blog-card:hover .blog-card__body .as-h3.as-h3.as-h3.as-h3{ color: var(--color-brand); }
.blog-card__body p {
  margin: 0;
  font-size: .92rem;
  color: var(--color-ink);
  line-height: 1.6;
}
.blog-card__cta {
  margin-top: auto;
  font-weight: 600;
  font-size: .9rem;
  color: var(--color-brand);
  display: inline-flex;
  align-items: center;
  gap: .4em;
}
.blog-card__arrow {
  transition: transform .3s ease;
  display: inline-block;
}
.blog-card:hover .blog-card__arrow { transform: translateX(5px); }
.blog-teaser__grid--three { grid-template-columns: repeat(3, 1fr); }
.blog-teaser__grid--four { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) {
  .blog-teaser__grid,
  .blog-teaser__grid--three { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .blog-teaser__grid,
  .blog-teaser__grid--three,
  .blog-teaser__grid--four { grid-template-columns: 1fr; }
}

/* ---- Contact banner ---- */
.contact-banner {
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
  color: #fff;
  padding: var(--space-7) var(--space-3);
}
.contact-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16,88,82,.65);
}
.contact-banner > * { position: relative; }
.contact-banner h2, .contact-banner .as-h2.as-h2.as-h2.as-h2{ color: #fff; letter-spacing: .1em; }

/* ---- Newsletter ---- */
.newsletter { background: var(--color-brand-dark); color: #fff; }
.newsletter__form { max-width: 760px; margin: 0 auto; text-align: center; }
.newsletter h2, .newsletter .as-h2.as-h2.as-h2.as-h2{ color: #fff; }
.newsletter__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
  margin: var(--space-3) 0;
  text-align: left;
}
.newsletter__fields .field:last-child { grid-column: 1 / -1; }
.field label {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.field input {
  width: 100%;
  padding: .7em 1em;
  border-radius: 8px;
  border: none;
  font-family: var(--font-body);
}
.newsletter__footnote { font-size: .75rem; opacity: .8; margin-top: var(--space-3); }
.newsletter__feedback {
  margin: var(--space-3) auto 0;
  font-size: .95rem;
  font-weight: 600;
  min-height: 1.2em;
  transition: opacity .3s;
}
.newsletter__feedback[data-state="success"] { color: #a7f3d0; }
.newsletter__feedback[data-state="error"] { color: #fca5a5; }
.newsletter__feedback[data-state="loading"] { opacity: .7; }
.form-page__feedback {
  margin-top: var(--space-3);
  font-size: .95rem;
  font-weight: 600;
  text-align: center;
  min-height: 1.2em;
  transition: opacity .3s;
}
.form-page__feedback[data-state="success"] { color: var(--color-brand); }
.form-page__feedback[data-state="error"] { color: #c0392b; }
.form-page__feedback[data-state="loading"] { opacity: .7; }
.contact-thank-you {
  text-align: center;
  padding: var(--space-5) var(--space-3);
  animation: contactThankYouIn .5s cubic-bezier(.2,.8,.2,1);
}
.contact-thank-you__icon {
  color: var(--color-brand);
  width: 84px;
  height: 84px;
  margin: 0 auto var(--space-4);
  animation: contactThankYouIcon .6s cubic-bezier(.34,1.56,.64,1) .1s both;
}
.contact-thank-you__icon svg {
  width: 100%;
  height: 100%;
}
.contact-thank-you__title {
  font-family: var(--font-display);
  color: var(--color-brand-dark);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  margin: 0 0 var(--space-3);
}
.contact-thank-you__text {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto var(--space-3);
}
.contact-thank-you__text--muted {
  color: #888;
  font-size: .9rem;
}
.contact-thank-you__btn {
  margin-top: var(--space-3);
}
@keyframes contactThankYouIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes contactThankYouIcon {
  0%   { opacity: 0; transform: scale(.4); }
  100% { opacity: 1; transform: scale(1); }
}
.newsletter__footnote a { color: #fff; text-decoration: underline; }

/* Single-field newsletter forms (contact, about, services): put the field and
   submit button side by side instead of stacking, matching the compact original layout. */
.newsletter__form:has(.newsletter__fields .field:only-child) {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: var(--space-2);
  align-items: end;
}
.newsletter__form:has(.newsletter__fields .field:only-child) header,
.newsletter__form:has(.newsletter__fields .field:only-child) .newsletter__footnote {
  grid-column: 1 / -1;
}
.newsletter__form:has(.newsletter__fields .field:only-child) .newsletter__fields {
  grid-column: 1;
  margin: 0;
}
.newsletter__form:has(.newsletter__fields .field:only-child) > button {
  grid-column: 2;
}
@media (max-width: 560px) {
  .newsletter__form:has(.newsletter__fields .field:only-child) { grid-template-columns: 1fr; }
  .newsletter__form:has(.newsletter__fields .field:only-child) > button { grid-column: 1; }
  .newsletter__fields { grid-template-columns: 1fr; }
  .newsletter__fields .field:last-child { grid-column: auto; }
}

/* ---- Footer ---- */
.site-footer {
  background: var(--color-ink);
  color: #fff;
  padding: var(--space-7) var(--space-3) var(--space-4);
}
.site-footer__columns {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.footer-col h4, .footer-col .as-h4.as-h4.as-h4.as-h4{ color: #fff; font-size: 1rem; }
.footer-col li { margin-bottom: .5em; }
.footer-col a { color: rgba(255,255,255,.75); }
.footer-social { display: flex; gap: var(--space-2); margin-top: var(--space-2); }
.footer-social a { color: rgba(255,255,255,.75); font-size: .85rem; }
.site-footer__legal {
  max-width: var(--max-width);
  margin: var(--space-6) auto 0;
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255,255,255,.15);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: .8rem;
  color: rgba(255,255,255,.6);
}
.site-footer__legal nav { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.site-footer__legal a { color: rgba(255,255,255,.6); }
@media (max-width: 860px) {
  .site-footer__columns { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .site-footer__columns { grid-template-columns: 1fr; }
}

/* ---- Shared components for subpages ---- */

/* Small uppercase label above a heading, e.g. "Votre voyage sur mesure" */
.eyebrow {
  display: block;
  color: var(--color-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  margin-bottom: var(--space-2);
}

/* Pull-quote used inside prose/intro sections */
blockquote.pull-quote {
  margin: var(--space-4) 0;
  padding-left: var(--space-3);
  border-left: 3px solid var(--color-gold);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--color-brand-dark);
}

/* Flexible value-props list (5+ items, wraps naturally, unlike the fixed 3-col why-us grid) */
.value-props {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-5) var(--space-4);
  margin-top: var(--space-5);
}
.value-props__item h4::before, .value-props__item .as-h4.as-h4.as-h4.as-h4::before{
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  background: var(--color-gold);
  margin-bottom: var(--space-2);
}
.value-props__item--feature {
  background: var(--color-gold);
  border-radius: var(--radius);
  padding: var(--space-4);
  display: flex;
  align-items: center;
  box-shadow: 0 12px 28px rgba(243,202,67,.35);
}
.value-props__item--feature p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.3;
  color: var(--color-brand-dark);
}
.value-props--centered {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.value-props--centered > .value-props__item { flex: 0 1 260px; }

/* Text-only comparison tiers (like formula-card, no image) */
.tier-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-5);
}
.tier-list > li {
  background: #fff;
  border-radius: var(--radius);
  padding: var(--space-4);
}
.tier-list > li > h3, .tier-list > li > .as-h3.as-h3.as-h3.as-h3{ font-size: 1.2rem; }
@media (max-width: 900px) {
  .tier-list { grid-template-columns: 1fr; }
}

/* Checklist / "what's included" grid: icon-style bullet + title + description */
.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4) var(--space-6);
  margin-top: var(--space-5);
}
.checklist__item h4, .checklist__item .as-h4.as-h4.as-h4.as-h4{ margin-bottom: var(--space-1); }
.checklist__item p { margin: 0; font-size: .95rem; }
@media (max-width: 700px) {
  .checklist { grid-template-columns: 1fr; }
}

/* Screenshot/preview gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  margin: var(--space-5) 0;
  align-items: end;
}
.gallery img {
  width: 100%;
  height: 460px;
  object-fit: contain;
  border-radius: var(--radius);
  filter: drop-shadow(0 10px 22px rgba(16,88,82,.15));
  transition: transform .4s cubic-bezier(.2,.8,.2,1), filter .4s ease;
  cursor: pointer;
}
.gallery img:hover {
  transform: translateY(-10px) scale(1.05);
  filter: drop-shadow(0 22px 40px rgba(16,88,82,.28));
}
@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery img { height: 400px; }
}
@media (max-width: 500px) {
  .gallery { grid-template-columns: 1fr; }
}

/* Interactive world map */
.world-map-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-6) var(--space-4);
}
.world-map-wrap {
  position: relative;
  width: 100%;
}
#world-map {
  width: 100%;
  height: auto;
  display: block;
}
#world-map path,
#world-map g {
  fill: #d5d5d5;
  stroke: #fff;
  stroke-width: .4;
  transition: fill .3s, transform .3s, filter .3s;
  cursor: pointer;
}
#world-map .visited,
#world-map .visited path {
  fill: var(--color-gold);
}
#world-map path:hover,
#world-map g:hover path {
  filter: brightness(.88);
}
#world-map .visited:hover,
#world-map .visited:hover path,
#world-map g.visited:hover path {
  fill: #d4a620;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.2));
}
.world-map-tooltip {
  position: absolute;
  pointer-events: none;
  background: var(--color-brand-dark);
  color: #fff;
  padding: .35em .8em;
  border-radius: 6px;
  font-size: .85rem;
  font-family: var(--font-body);
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .2s;
  z-index: 10;
}
.world-map-tooltip.is-visible {
  opacity: 1;
}
.world-map-text {
  text-align: center;
  max-width: 740px;
  margin: var(--space-5) auto 0;
}
.world-map-text h2, .world-map-text .as-h2.as-h2.as-h2.as-h2{
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--color-brand-dark);
  margin-bottom: var(--space-2);
}
.world-map-text .highlight {
  color: var(--color-accent);
  font-style: italic;
  font-weight: 600;
  margin-bottom: var(--space-3);
}
.world-map-text p {
  color: #444;
  line-height: 1.7;
}

/* Tabbed preview gallery */
.preview-gallery { text-align: center; }
.preview-gallery__tabs {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-5);
}
.preview-gallery__toggle {
  display: flex;
  background: var(--color-mint);
  border-radius: 100px;
  padding: 4px;
  position: relative;
}
.preview-gallery__tab {
  padding: .6em 2em;
  border: none;
  border-radius: 100px;
  background: transparent;
  color: var(--color-brand-dark);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: color .3s;
  position: relative;
  z-index: 1;
}
.preview-gallery__tab.is-active {
  color: #fff;
}
.preview-gallery__pill {
  position: absolute;
  top: 4px;
  height: calc(100% - 8px);
  border-radius: 100px;
  background: var(--color-brand-dark);
  transition: left .4s cubic-bezier(.4, 0, .2, 1), width .4s cubic-bezier(.4, 0, .2, 1);
  z-index: 0;
}
.preview-gallery__stage {
  position: relative;
  overflow-x: clip;
}
.preview-gallery__set {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  align-items: end;
  padding: var(--space-4) 0;
  transition: transform .7s cubic-bezier(.4, 0, .1, 1), opacity .7s cubic-bezier(.4, 0, .1, 1);
}
.preview-gallery__set:not(.is-active) {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(100%);
  pointer-events: none;
}
.preview-gallery__set.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.preview-gallery__set.slide-out-left {
  transform: translateX(-100%);
  opacity: 0;
}
.preview-gallery__set.slide-in-right {
  transform: translateX(100%);
  opacity: 0;
}
.preview-gallery__set.slide-out-right {
  transform: translateX(100%);
  opacity: 0;
}
.preview-gallery__set.slide-in-left {
  transform: translateX(-100%);
  opacity: 0;
}
.preview-gallery__set img {
  width: 280px;
  flex-shrink: 0;
  border-radius: var(--radius);
  filter: drop-shadow(0 10px 22px rgba(16,88,82,.15));
  transition: transform .4s cubic-bezier(.2,.8,.2,1), filter .4s ease;
  cursor: pointer;
}
.preview-gallery__set img:hover {
  transform: translateY(-8px) scale(1.02);
  filter: drop-shadow(0 22px 40px rgba(16,88,82,.28));
}
@media (max-width: 900px) {
  .preview-gallery__set { flex-wrap: wrap; }
  .preview-gallery__set img { width: 45%; }
}
@media (max-width: 500px) {
  .preview-gallery__set img { width: 80%; }
}

/* Feature callout row (used after a gallery or book preview) */
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  text-align: center;
  margin: var(--space-5) 0;
}
.feature-row h4, .feature-row .as-h4.as-h4.as-h4.as-h4{ font-size: 1rem; }
@media (max-width: 760px) {
  .feature-row { grid-template-columns: 1fr; }
}

/* Simple icon + text + link blurb (e.g. insurance partner call-out) */
.blurb {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius);
  padding: var(--space-4);
}
.blurb img { width: 64px; height: 64px; object-fit: contain; flex-shrink: 0; }
.blurb h4, .blurb .as-h4.as-h4.as-h4.as-h4{ margin-bottom: var(--space-2); }
@media (max-width: 560px) {
  .blurb { flex-direction: column; align-items: center; text-align: center; }
}

/* Full-bleed decorative image strip between sections */
.image-divider {
  width: 100%;
  height: clamp(200px, 30vw, 360px);
  object-fit: cover;
}

/* ---- Standalone form pages (quote requests, contact, etc.) ---- */
.form-page { background-color: #fff; padding: var(--space-6) var(--space-4); }
.form-page.form-page--bg {
  /* Charlotte sits at ~86% across a very wide photo, so the crop is horizontal:
     hold the frame to the right or her face is the first thing cut. */
  background: url("assets/images/charlotte-sommet-mont-agung-bali.webp") 85% 45% / cover no-repeat scroll !important;
  position: relative;
  padding: var(--space-7) var(--space-4);
}
.form-page--card {
  background-color: var(--color-cream);
  padding: var(--space-7) var(--space-4);
}
.form-page--card .form-page__card {
  background: #fff;
  border-radius: var(--radius);
  padding: var(--space-5);
  box-shadow: 0 8px 32px rgba(16,88,82,.1);
}
.form-page--bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
}
.form-page--bg .form-page__card {
  position: relative;
  background: rgba(255,255,255,.93);
  border-radius: var(--radius);
  padding: var(--space-5);
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
}
.form-page__card {
  max-width: 600px;
  margin: 0 auto;
}
.form-page__card > header { text-align: center; margin-bottom: var(--space-5); }
.form-page__card > header .eyebrow { display: block; }
.form-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}
.form-page__grid .field--full { grid-column: 1 / -1; }
.form-page .field { margin-bottom: var(--space-3); }
/* Paired fields can have labels/hints of different lengths (e.g. one wraps
   to 2 lines, one has a hint the other doesn't) — stretch each field to the
   row height and pin its input to the bottom so inputs always line up. */
.form-page__grid > .field:not(.field--full) {
  display: flex;
  flex-direction: column;
}
.form-page__grid > .field:not(.field--full) > input,
.form-page__grid > .field:not(.field--full) > select,
.form-page__grid > .field:not(.field--full) > .field__currency {
  margin-top: auto;
}
.form-page .field label {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
  display: block;
  font-size: .85rem;
  margin-bottom: var(--space-1);
  color: var(--color-brand-dark);
  font-weight: 600;
}
.form-page .field input,
.form-page .field select,
.form-page .field textarea {
  width: 100%;
  padding: .8em 1em;
  border-radius: 6px;
  border: 1px solid rgba(16,88,82,.10);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--color-mint);
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.form-page .field input:focus,
.form-page .field select:focus,
.form-page .field textarea:focus {
  outline: none;
  border-color: var(--color-brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0,130,120,.12);
}
.form-page .field textarea { min-height: 120px; resize: vertical; }
.field--upload {
  background: #fff;
  border: 1.5px solid var(--color-brand);
  border-radius: 10px;
  padding: var(--space-4);
}
.field--upload__label {
  font-weight: 600;
  color: var(--color-brand-dark);
  font-size: .85rem;
  text-align: center;
  margin-bottom: var(--space-2);
}
.field--upload input[type="file"] { display: none; }
.field--upload__trigger {
  display: block;
  text-align: center;
  cursor: pointer;
}
.field--upload__icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--color-mint);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--color-brand);
  transition: background .2s, color .2s;
  margin-bottom: var(--space-2);
}
.field--upload__trigger:hover .field--upload__icon { background: var(--color-brand); color: #fff; }
.field--upload__text { display: block; font-size: .85rem; color: var(--color-brand-dark); }
.form-page .field--checkbox { display: flex; align-items: flex-start; gap: var(--space-2); }
.form-page .field--checkbox input[type="checkbox"] {
  width: auto;
  accent-color: var(--color-brand);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}
.form-page .field--checkbox label { font-weight: 400; font-size: .8rem; margin: 0; }
.form-page .field--radio-group legend { font-size: .85rem; font-weight: 600; color: var(--color-brand-dark); margin-bottom: var(--space-2); }
.form-page .field--radio-group div { display: flex; align-items: center; gap: var(--space-1); margin-bottom: var(--space-1); font-size: .95rem; }
.form-page .field--radio-group input { width: auto; }
.form-page button[type="submit"] { width: 100%; margin-top: var(--space-4); padding: 1em; font-size: 1.1rem; }
@media (max-width: 600px) {
  .form-page__grid { grid-template-columns: 1fr; }
}

.form-page--signpost-bg {
  position: relative;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: left center;
  background-size: auto 100vh;
}
.form-page--signpost-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(204,230,228,.55);
}
.form-page--signpost-bg .form-page__card {
  position: relative;
  z-index: 1;
  box-shadow: 0 30px 70px rgba(16,88,82,.18);
}
@media (max-width: 900px) {
  .form-page--signpost-bg { background-image: none !important; }
  .form-page--signpost-bg::before { display: none; }
}

.field__required { font-weight: 400; font-size: .75rem; color: var(--color-brand); }
.field__hint { font-size: .78rem; color: rgba(16,88,82,.65); margin: -2px 0 .5em; }
.field--name { border: none; padding: 0; margin: 0; }
.field--name legend { font-size: .85rem; font-weight: 600; color: var(--color-brand-dark); margin-bottom: var(--space-1); }
.field__name-row, .field__phone-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}
.field__phone-row { grid-template-columns: 130px 1fr; }
.field__currency { position: relative; }
.field__currency input { padding-right: 2.2em; }
.field__currency span {
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-brand);
  font-weight: 600;
}
@media (max-width: 480px) {
  .field__name-row, .field__phone-row { grid-template-columns: 1fr; }
}

/* ---- Prose pages (legal text, blog articles) ---- */
.prose-page { padding-top: var(--space-6); }
.prose-page__header { max-width: 720px; margin: 0 auto var(--space-5); text-align: center; }
.prose-page__meta { color: var(--color-brand); font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; }
.prose {
  max-width: 720px;
  margin: 0 auto;
}
.prose h2, .prose .as-h2.as-h2.as-h2.as-h2{ margin-top: var(--space-5); font-size: 1.6rem; }
.prose h3, .prose .as-h3.as-h3.as-h3.as-h3{ margin-top: var(--space-4); font-size: 1.2rem; }
.prose h4, .prose .as-h4.as-h4.as-h4.as-h4{ margin-top: var(--space-3); }
.prose p { margin-bottom: var(--space-3); line-height: 1.75; }
.prose ul, .prose ol { margin: 0 0 var(--space-3); padding-left: 1.4em; }
.prose li { margin-bottom: var(--space-1); line-height: 1.7; }
.prose blockquote { margin: var(--space-4) 0; padding-left: var(--space-3); border-left: 3px solid var(--color-gold); font-style: italic; }
.prose img { border-radius: var(--radius); margin: var(--space-4) 0; }
.prose a { text-decoration: underline; }
.prose-page__back { display: block; max-width: 720px; margin: var(--space-6) auto 0; text-align: center; }

/* ---- Related-services cross-nav grid (used on the sub-service page cluster) ---- */
.service-nav__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-5);
}
.service-nav__grid a {
  display: block;
  background: #fff;
  border-radius: var(--radius);
  padding: var(--space-4);
  text-align: center;
  font-weight: 700;
  color: var(--color-brand-dark);
}
.service-nav__grid a:hover { background: var(--color-mint); text-decoration: none; }
.service-nav__grid a[aria-current="page"] { background: var(--color-brand); color: #fff; }
@media (max-width: 700px) {
  /* minmax(0,1fr) not 1fr: plain 1fr refuses to shrink below the longest word
     ("administratives"), which forced 185px tracks and overflowed the page. */
  .service-nav__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-nav__grid a {
    padding: var(--space-3);
    overflow-wrap: break-word;
    hyphens: auto;
  }
}

/* ---- Curved section dividers (hero -> teal panel -> next section) ---- */
.hero--wave-bottom { position: relative; padding-bottom: calc(var(--space-8) + 9vw); }
.hero__divider {
  position: absolute;
  z-index: 2;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: clamp(90px, 12vw, 170px);
  display: block;
}
.hero__divider path { fill: var(--color-brand); }
.hero__divider path.hero__divider-shadow { fill: none; }
.intro--teal-divider {
  background: var(--color-brand);
  position: relative;
  padding-top: calc(var(--space-6) + 1vw);
  padding-bottom: calc(var(--space-7) + 4vw);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 50% 100%, 0 88%);
  margin-bottom: var(--space-6);
}
.intro--teal-divider h2,
.intro--teal-divider h3,
.intro--teal-divider p,
.intro--teal-divider strong, .intro--teal-divider .as-h2.as-h2.as-h2.as-h2, .intro--teal-divider .as-h3.as-h3.as-h3.as-h3{ color: #fff; }
@media (max-width: 760px) {
  /* Stacked on mobile the section gets tall, so a notch set at 88% of height
     grew to 127px and cut into the photo. Pin it to a fixed depth instead. */
  .intro--teal-divider {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 56px), 50% 100%, 0 calc(100% - 56px));
    padding-bottom: calc(var(--space-6) + 56px);
  }
}

/* ---- Floating contact button ---- */
.fab-contact {
  position: fixed;
  right: 1.5em;
  bottom: 1.5em;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: .6em;
  padding: .9em 1.5em;
  border-radius: 999px;
  background: rgba(0, 130, 120, .5);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  box-shadow: 0 8px 28px rgba(16, 88, 82, .25);
  text-decoration: none;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.fab-contact:hover {
  background: rgba(0, 130, 120, .8);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(16, 88, 82, .35);
  text-decoration: none;
}
.fab-contact svg { width: 19px; height: 19px; flex-shrink: 0; display: block; }
@media (max-width: 560px) {
  .fab-contact span { display: none; }
  .fab-contact { padding: .95em; }
}

/* ---- Role showcase (text + overlapping photo collage) ---- */
.role-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: start;
}
.role-showcase__text { order: 2; }

.why-us--dark .value-props__item h4,
.why-us--dark .value-props__item p, .why-us--dark .value-props__item .as-h4.as-h4.as-h4.as-h4{ color: #fff; }
.role-showcase__images {
  order: 1;
  position: relative;
  min-height: 480px;
}
.role-showcase__img--main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
}
.role-showcase__img--circle {
  position: absolute;
  left: -6%;
  bottom: -8%;
  width: 52%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 7px solid var(--color-cream);
  box-shadow: 0 20px 44px rgba(0,0,0,.18);
  transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s ease;
  z-index: 2;
  cursor: pointer;
}
.role-showcase__img--circle:hover {
  transform: scale(1.6);
  box-shadow: 0 30px 60px rgba(0,0,0,.25);
}
@media (max-width: 860px) {
  .role-showcase { grid-template-columns: 1fr; }
  .role-showcase__images { min-height: 380px; margin-top: var(--space-4); }
  .role-showcase__img--main { height: 380px; }
}

/* ---- Video story (À propos) ---- */
.video-story { background: var(--color-brand); }
.video-story__intro {
  max-width: 760px;
  margin: 0 auto var(--space-6);
  text-align: center;
}
.video-story__intro .eyebrow { color: var(--color-gold); }
.video-story__intro h2,
.video-story__intro p,
.video-story__intro strong, .video-story__intro .as-h2.as-h2.as-h2.as-h2{ color: #fff; }
.video-story__intro .pull-quote {
  color: #fff;
  border-left: none;
  padding-left: 0;
  text-align: center;
  border-top: 2px solid var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
  padding: var(--space-3) 0;
  max-width: 620px;
  margin-inline: auto;
}
.video-embed {
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,.3);
}
.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---- Travel blog article ---- */
.article-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 0;
}
.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,88,82,.15) 0%, rgba(16,88,82,.35) 55%, rgba(16,88,82,.85) 100%);
}
.article-hero__back {
  position: absolute;
  top: var(--space-3);
  left: var(--space-4);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: .55em 1.2em;
  border-radius: 999px;
  background: rgba(250, 248, 244, .85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--color-brand-dark);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.5);
  transition: background .2s ease, transform .2s ease;
}
.article-hero__back:hover {
  background: #fff;
  transform: translateX(-3px);
  text-decoration: none;
}
.article-hero__inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
  padding: var(--space-6) var(--space-4);
}
.article-hero .eyebrow { color: var(--color-gold); }
.article-hero h1, .article-hero .as-h1.as-h1.as-h1.as-h1{ color: #fff; font-size: clamp(2rem, 4.5vw, 3.4rem); margin: 0; }

.article-body {
  max-width: 780px;
  margin: 0 auto;
  padding: var(--space-7) var(--space-4);
}
.article-body > p { font-size: 1.08rem; line-height: 1.8; margin: 0 0 1.3em; }
.article-body > h2, .article-body > .as-h2.as-h2.as-h2.as-h2{
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 1.6em 0 .6em;
}
.article-body > h3, .article-body > .as-h3.as-h3.as-h3.as-h3{ margin: 1.6em 0 .5em; }
.article-body > h4, .article-body > .as-h4.as-h4.as-h4.as-h4{
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-brand-dark);
  line-height: 1.35;
  margin: 1.4em 0 .6em;
}
.article-body > blockquote {
  margin: var(--space-4) 0;
  padding: var(--space-3) var(--space-4);
  border-left: 4px solid var(--color-gold);
  background: var(--color-mint);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-brand-dark);
  font-style: italic;
}
.article-body > blockquote p { margin: 0; }

/* Full-width rounded figure that breaks out of the text column */
.article-figure {
  margin: var(--space-5) calc((780px - min(880px, 100%)) / 2);
  max-width: min(880px, 100%);
}
.article-figure img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(16,88,82,.14);
  display: block;
}
.article-figure figcaption {
  text-align: center;
  font-size: .85rem;
  color: var(--color-brand);
  margin-top: var(--space-2);
  font-style: italic;
}

/* Teal callout block (heading + text on brand background) */
.article-callout {
  background: var(--color-brand);
  color: #fff;
  border-radius: var(--radius);
  padding: var(--space-5);
  margin: var(--space-5) 0;
}
.article-callout h2, .article-callout h3, .article-callout .as-h2.as-h2.as-h2.as-h2, .article-callout .as-h3.as-h3.as-h3.as-h3{ color: #fff; margin-top: 0; }
.article-callout p { color: #fff; margin-bottom: .8em; }
.article-callout strong { color: var(--color-gold); }
.article-callout p:last-child { margin-bottom: 0; }

/* Split: image + teal text block side by side (breaks out wider) */
.article-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  align-items: stretch;
  /* Negative margin breaks the block out of the 780px article column.
     min(0px, ...) stops it flipping positive below ~830px viewport,
     which used to push the block off-screen and cause horizontal scroll. */
  margin: var(--space-6) min(0px, calc((780px - min(1080px, 94vw)) / 2));
  max-width: min(1080px, 94vw);
}
.article-split__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.article-split__text {
  background: var(--color-brand);
  color: #fff;
  border-radius: var(--radius);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.article-split__text h2, .article-split__text h3, .article-split__text .as-h2.as-h2.as-h2.as-h2, .article-split__text .as-h3.as-h3.as-h3.as-h3{ color: #fff; margin-top: 0; }
.article-split__text p, .article-split__text h4, .article-split__text .as-h4.as-h4.as-h4.as-h4{ color: #fff; }
.article-split__text strong { color: var(--color-gold); }
.article-split--reverse .article-split__media { order: 2; }
@media (max-width: 760px) {
  .article-split { grid-template-columns: 1fr; }
  .article-split--reverse .article-split__media { order: 0; }
  .article-split__media img { min-height: 240px; }
}

.article-date {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-brand-dark);
  font-weight: 700;
  font-size: .8rem;
  padding: .35em 1em;
  border-radius: 999px;
  margin: var(--space-2) 0;
}
.article-back { display: block; text-align: center; margin-top: var(--space-5); }

/* Checklist bullets inside article blocks */
.article-checklist { margin: .5em 0 1em; }
.article-checklist li {
  position: relative;
  padding-left: 1.6em;
  margin-bottom: .4em;
  line-height: 1.5;
}
.article-checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: 700;
}

/* Table of contents for long-form articles: collapsible bar on mobile, fixed sidebar on wide screens */
.article-toc {
  position: static;
  max-width: 780px;
  margin: 0 auto var(--space-4);
  padding: 0 var(--space-4);
  z-index: 20;
  opacity: 0;
  transition: opacity .3s ease;
}
.article-toc.is-ready { opacity: 1; }
.article-toc__card {
  background: var(--color-cream);
  border: 1px solid var(--color-mint);
  border-radius: var(--radius);
  padding: var(--space-3);
  box-shadow: 0 8px 22px rgba(16,88,82,.10);
}
.article-toc__toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  background: none;
  border: 0;
  padding: .25em .3em;
  margin: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
  color: var(--color-brand);
}
.article-toc__title {
  font-family: var(--font-display);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-brand);
}
.article-toc__chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--color-brand);
  transition: transform .25s ease;
}
.article-toc.is-open .article-toc__chevron { transform: rotate(180deg); }
.article-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  flex-direction: column;
  gap: 2px;
}
.article-toc.is-open .article-toc__list { display: flex; margin-top: var(--space-2); }
.article-toc__link {
  display: flex;
  align-items: flex-start;
  gap: .6em;
  padding: .4em .5em;
  border-radius: 8px;
  font-size: .85rem;
  line-height: 1.35;
  color: var(--color-brand-dark);
  text-decoration: none;
  opacity: .62;
  transition: opacity .2s ease, background-color .2s ease, transform .2s ease;
}
.article-toc__link:hover { opacity: 1; background: var(--color-mint); transform: translateX(2px); text-decoration: none; }
.article-toc__dot {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: .45em;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--color-mint);
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.article-toc__link.is-active { opacity: 1; font-weight: 700; background: var(--color-mint); }
.article-toc__link.is-active .article-toc__dot { background: var(--color-gold); border-color: var(--color-gold); transform: scale(1.2); }
.article-toc__card::-webkit-scrollbar { width: 5px; }
.article-toc__card::-webkit-scrollbar-thumb { background: var(--color-mint); border-radius: 999px; }

@media (min-width: 1560px) {
  .article-toc {
    position: fixed;
    top: 50%;
    left: 24px;
    transform: translateY(-50%);
    width: 190px;
    margin: 0;
    padding: 0;
  }
  .article-toc__card { max-height: 65vh; overflow-y: auto; box-shadow: 0 14px 34px rgba(16,88,82,.14); }
  .article-toc__toggle { cursor: default; pointer-events: none; }
  .article-toc__chevron { display: none; }
  .article-toc__list { display: flex !important; margin-top: var(--space-2) !important; }
}

/* PVT pricing tiers inside article */
/* PVT pricing section */
.pvt-pricing {
  margin: var(--space-7) 0;
  padding: var(--space-7) var(--space-4);
  background: var(--color-cream);
  border-radius: var(--radius);
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}
.pvt-pricing__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-5);
}
.pvt-pricing__header h2, .pvt-pricing__header .as-h2.as-h2.as-h2.as-h2{ margin-bottom: .4em; }
.pvt-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  align-items: start;
}
.pvt-pricing__card {
  background: #fff;
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-3);
  text-align: center;
  border: 1.5px solid rgba(16,88,82,.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.pvt-pricing__card h3, .pvt-pricing__card .as-h3.as-h3.as-h3.as-h3{
  font-size: 1.3rem;
  margin: 0 0 .2em;
}
.pvt-pricing__price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--color-brand);
  margin: 0 0 var(--space-3);
}
.pvt-pricing__includes {
  font-size: .85rem;
  font-style: italic;
  color: #888;
  margin: 0 0 .5em;
}
.pvt-pricing__card ul {
  text-align: left;
  padding: 0;
  margin: 0 0 var(--space-4);
  width: 100%;
}
.pvt-pricing__card li {
  padding: .5em 0 .5em 1.6em;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
  font-size: .9rem;
  line-height: 1.45;
}
.pvt-pricing__card li:last-child { border-bottom: none; }
.pvt-pricing__card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-brand);
  font-weight: 700;
}
.pvt-pricing__card .btn { margin-top: auto; width: 100%; }
.pvt-pricing__card--featured {
  border-color: var(--color-brand);
  border-width: 2px;
  box-shadow: 0 8px 30px rgba(16,88,82,.12);
  transform: scale(1.04);
}
.pvt-pricing__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-brand);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .3em 1.2em;
  border-radius: 999px;
}
@media (max-width: 900px) {
  .pvt-pricing__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pvt-pricing__card--featured { transform: none; }
}

/* Section background swaps (itineraire-sur-mesure) */
.services--teal { background: var(--color-brand); }
.services--teal h2,
.services--teal .checklist__item h4,
.services--teal .checklist__item p, .services--teal .as-h2.as-h2.as-h2.as-h2, .services--teal .checklist__item .as-h4.as-h4.as-h4.as-h4{ color: #fff; }

.includes {
  background: var(--color-brand);
  clip-path: polygon(0 0, 72% 3.5vw, 100% 0, 100% 100%, 0 100%);
  padding-top: calc(clamp(var(--space-6), 8vw, var(--space-8)) + 3.5vw);
}
.includes .section-header { text-align: center; max-width: none; margin-bottom: var(--space-5); }
.includes .section-header h2, .includes .section-header .as-h2.as-h2.as-h2.as-h2{ color: #fff; white-space: nowrap; }
@media (max-width: 760px) {
  /* nowrap kept this heading on one line and ran it ~250px past the
     viewport, which was the main cause of horizontal scroll on this page. */
  .includes .section-header h2,
  .includes .section-header .as-h2.as-h2.as-h2.as-h2 { white-space: normal; }
}
.includes__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  max-width: var(--max-width);
  margin: 0 auto;
}
.includes__card {
  background: #fff;
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-3);
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.includes__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(16,88,82,.10);
}
.includes__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-mint);
  color: var(--color-brand);
  margin-bottom: var(--space-2);
}
.includes__icon svg { width: 24px; height: 24px; }
.includes__card h4, .includes__card .as-h4.as-h4.as-h4.as-h4{
  font-size: .95rem;
  color: var(--color-brand-dark);
  margin-bottom: var(--space-1);
}
.includes__card p {
  font-size: .85rem;
  color: rgba(16,88,82,.7);
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .includes__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .includes__grid { grid-template-columns: 1fr; }
}
.why-us--plain { background: var(--color-cream); }

/* ---- Book showcase (3 photos on teal) ---- */
.book-showcase { background: var(--color-brand); text-align: center; }
.book-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.book-showcase figure { margin: 0; }
.book-showcase img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
}
.book-showcase figure:hover img {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 24px 48px rgba(0,0,0,.3);
}
.book-showcase figcaption {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.3;
  margin-top: var(--space-3);
}
.book-showcase__note { color: rgba(255,255,255,.7); font-size: .8rem; margin-top: var(--space-2); }
.book-showcase .btn--primary:hover {
  background: var(--color-gold);
  color: var(--color-brand-dark);
  border-color: var(--color-gold);
}
@media (max-width: 760px) {
  .book-showcase__grid { grid-template-columns: 1fr; gap: var(--space-5); }
}

/* ---- Services voyage page ---- */
.btn--solid { background: var(--color-brand); color: #fff; border-color: var(--color-brand); }
.btn--solid:hover { background: var(--color-brand-dark); color: #fff; border-color: var(--color-brand-dark); text-decoration: none; }

.svc-banner {
  position: relative;
  height: clamp(340px, 42vw, 560px);
  background-size: cover;
  background-position: center 72%;
  margin-bottom: 0;
  will-change: background-position;
}
.svc-banner .hero__divider path { fill: var(--color-cream); }
.hero--noces .hero__divider path { fill: var(--color-cream); }
.svc-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,130,120,.4), rgba(16,88,82,.55));
}
.svc-intro { text-align: center; }
.svc-intro h1, .svc-intro .as-h1.as-h1.as-h1.as-h1{ font-size: clamp(2.2rem, 5vw, 3.6rem); }
.svc-intro .lead { max-width: 760px; margin: var(--space-4) auto; font-size: 1.15rem; color: var(--color-brand-dark); }
.svc-intro__stats { margin-top: var(--space-4); font-size: .9rem; color: var(--color-brand); font-weight: 600; }

.svc-context h2, .svc-context .as-h2.as-h2.as-h2.as-h2{ font-style: italic; }
.svc-context__lead { font-weight: 700; font-size: 1.2rem; }
.svc-context__bref { text-align: center; font-size: 1.25rem; max-width: 760px; margin: var(--space-5) auto 0; color: var(--color-brand-dark); }

/* Service block: text + media with price badge */
.service { }
.service--teal { background: var(--color-brand); }
.service--teal h1, .service--teal h2, .service--teal h3, .service--teal p, .service--teal li, .service--teal .as-h1.as-h1.as-h1.as-h1, .service--teal .as-h2.as-h2.as-h2.as-h2, .service--teal .as-h3.as-h3.as-h3.as-h3{ color: #fff; }
.service--teal .boutique-card h3, .service--teal .boutique-card .as-h3.as-h3.as-h3.as-h3{ color: var(--color-brand-dark); }
.service--teal .boutique-card p { color: inherit; }
.service--teal .boutique-card .boutique-card__price { color: var(--color-brand); }
.service--teal .boutique-card .boutique-card__tagline { color: #666; }
.service--mint { background: var(--color-mint); }
.service__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}
.service__inner--rev .service__media { order: -1; }
.service__head-underline { padding-bottom: .2em; border-bottom: 3px solid var(--color-gold); display: inline-block; }
.service__subtitle { font-style: italic; font-size: 1.2rem; }
.service__media { position: relative; }
.service__media img { width: 100%; border-radius: var(--radius); box-shadow: 0 18px 40px rgba(16,88,82,.25); display: block; }
.service__list { margin-bottom: var(--space-4); }
.service__list li { position: relative; padding-left: 1.3em; margin-bottom: var(--space-3); }
.service__list li::before { content: "–"; position: absolute; left: 0; }

.service-callout {
  background: var(--color-mint);
  border-radius: var(--radius);
  padding: var(--space-4);
  margin: var(--space-4) 0;
}
.service--teal .service-callout p,
.service--teal .service-callout li { color: var(--color-brand-dark); }
.service-callout__q { position: relative; padding-left: 1.4em; margin-bottom: .6em; }
.service-callout__q::before { content: "•"; position: absolute; left: .3em; color: var(--color-brand); }

.price-badge {
  position: absolute;
  bottom: -28px;
  left: -28px;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 8px 18px rgba(16,88,82,.3));
}
.price-badge svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.price-badge span {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--color-brand-dark);
  font-weight: 700;
}
.service__cta-note { font-size: .85rem; margin-top: var(--space-2); }
@media (max-width: 820px) {
  .service__inner { grid-template-columns: 1fr; }
  .service__inner--rev .service__media { order: 0; }
  .price-badge { width: 104px; height: 104px; left: auto; right: 16px; bottom: -22px; }
  .price-badge span { font-size: 1.5rem; }
}

/* Services: centered assurance + event banner */
.btn--dark { background: #1f2540; color: #fff; border-color: #1f2540; }
.btn--dark:hover { background: #000; color: #fff; border-color: #000; text-decoration: none; }

.svc-assurance { text-align: center; }
.svc-assurance__logo { max-width: 340px; margin: 0 auto var(--space-5); }
.svc-assurance p { max-width: 760px; margin-left: auto; margin-right: auto; }

.event-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
  padding: clamp(3em, 7vw, 5em) var(--space-4) calc(var(--space-5) + 0.5 * clamp(220px, 32vw, 360px));
}
.event-banner::before { content:""; position:absolute; inset:0; background: rgba(16,88,82,.25); }
.event-banner__inner { position: static; }
.event-banner .eyebrow { color: rgba(255,255,255,.85); }
.event-banner h2, .event-banner .as-h2.as-h2.as-h2.as-h2{ color: #fff; font-size: clamp(2rem, 4.5vw, 3.4rem); }
.event-circle {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: clamp(220px, 32vw, 360px);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid var(--color-brand);
}
.event-content { background: var(--color-brand); color: #fff; text-align: center; padding-top: calc(0.5 * clamp(220px, 32vw, 360px) + var(--space-5)); }
.event-content h3, .event-content p, .event-content .as-h3.as-h3.as-h3.as-h3{ color: #fff; }
.event-content > * { max-width: 780px; margin-left: auto; margin-right: auto; }
.event-content .highlight { color: var(--color-gold); }

.pvt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); align-items: center; }
.pvt-grid img { width: 100%; border-radius: var(--radius); box-shadow: 0 16px 36px rgba(0,0,0,.22); }
.pvt-cta { text-align: center; margin-top: var(--space-5); }
@media (max-width: 820px) {
  .pvt-grid { grid-template-columns: 1fr; }
}

/* White buttons sitting on a teal background: hover to gold instead of blending */
.btn--gold-hover:hover {
  background: var(--color-gold);
  color: var(--color-brand-dark);
  border-color: var(--color-gold);
  text-decoration: none;
}

/* ---- FAQ page ---- */
.faq-hero {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-7) var(--space-4) var(--space-5);
  text-align: center;
}
.faq-hero h1, .faq-hero .as-h1.as-h1.as-h1.as-h1{ margin: .3em 0 .4em; font-size: clamp(2.1rem, 4.5vw, 3rem); }
.faq-hero__lead { font-size: 1.1rem; color: var(--color-brand-dark); opacity: .85; }

.faq-list-section {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--space-4) var(--space-7);
}
.faq-list { display: flex; flex-direction: column; gap: var(--space-3); margin-bottom: var(--space-6); }

.faq-item {
  background: var(--color-cream);
  border: 1.5px solid var(--color-mint);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item[open] { border-color: var(--color-brand); box-shadow: 0 14px 32px rgba(16,88,82,.12); }
.faq-item__q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.4;
  color: var(--color-brand-dark);
  transition: background-color .2s ease;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::marker { content: ""; }
.faq-item__q:hover { background: var(--color-mint); }
.faq-item__icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--color-mint);
  color: var(--color-brand);
  transition: background-color .25s ease, color .25s ease, transform .3s ease;
}
.faq-item__icon svg { width: 16px; height: 16px; }
.faq-item[open] .faq-item__icon { background: var(--color-gold); color: var(--color-brand-dark); transform: rotate(135deg); }
.faq-item__a { padding: 0 var(--space-4) var(--space-4); color: var(--color-ink); }
.faq-item__a p { margin: 0 0 .8em; line-height: 1.75; }
.faq-item__a p:last-child { margin-bottom: 0; }
.faq-item__list { margin: 0; padding: 0; list-style: none; }
.faq-item__list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: .6em;
  line-height: 1.65;
}
.faq-item__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
}
.faq-item__list li:last-child { margin-bottom: 0; }

.faq-cta {
  background: var(--color-brand);
  color: #fff;
  border-radius: var(--radius);
  padding: var(--space-5);
  text-align: center;
}
.faq-cta h3, .faq-cta .as-h3.as-h3.as-h3.as-h3{ color: #fff; margin: 0 0 .4em; }
.faq-cta p { color: rgba(255,255,255,.9); margin: 0 0 var(--space-3); }

/* ---- Boutique grid & cards ---- */
.boutique-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-4);
}
.boutique-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  color: var(--color-ink);
  padding-bottom: var(--space-2);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}
.boutique-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
  text-decoration: none;
}
.boutique-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--color-cream);
}
.boutique-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.boutique-card:hover .boutique-card__img img {
  transform: scale(1.05);
}
.boutique-card h3, .boutique-card .as-h3.as-h3.as-h3.as-h3{
  margin: .6em 0 .1em;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--color-brand-dark);
}
.boutique-card__price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-brand);
  margin: 0 0 .2em;
}
.boutique-card__tagline {
  font-size: .85rem;
  color: #666 !important;
  font-style: italic;
  margin: 0 0 .6em;
  padding: 0 var(--space-2);
}
.btn--sm {
  padding: .55em 1.5em;
  font-size: .85rem;
}
@media (max-width: 820px) {
  .boutique-grid { grid-template-columns: 1fr; max-width: 400px; }
}

/* ---- Boutique page ---- */
.boutique-hero {
  text-align: center;
  padding: var(--space-7) var(--space-4) var(--space-5);
  max-width: var(--max-width);
  margin: 0 auto;
}
.boutique-hero .eyebrow { margin-bottom: var(--space-1); }

/* ---- Product detail page ---- */
.product-detail {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-6) var(--space-4) var(--space-8);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  align-items: start;
}
.product-detail__image {
  border-radius: var(--radius);
  overflow: hidden;
}
.product-detail__image img {
  width: 100%;
  display: block;
}
.product-detail__info h1, .product-detail__info .as-h1.as-h1.as-h1.as-h1{
  margin-bottom: .2em;
}
.product-detail__price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-brand);
  margin: 0 0 var(--space-3);
}
.product-detail__headline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-brand-dark);
  line-height: 1.35;
  margin: 0 0 var(--space-3);
}
.product-detail__list {
  padding-left: 1.2em;
  list-style: disc;
  margin: 0 0 var(--space-3);
}
.product-detail__list li {
  margin-bottom: .4em;
  line-height: 1.5;
}
.product-detail__steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-4);
}
.product-detail__steps li {
  counter-increment: step;
  padding: .6em 0 .6em 2.8em;
  position: relative;
  border-bottom: 1px solid #eee;
}
.product-detail__steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  background: var(--color-brand);
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-detail__validity {
  background: var(--color-cream);
  border-radius: var(--radius);
  padding: var(--space-3);
  margin: 0 0 var(--space-4);
}
.product-detail__validity h3, .product-detail__validity .as-h3.as-h3.as-h3.as-h3{ margin-bottom: .5em; }
.product-detail__validity ul {
  list-style: none;
  padding: 0;
}
.product-detail__validity li {
  padding: .25em 0;
  padding-left: 1.4em;
  position: relative;
}
.product-detail__validity li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--color-brand);
}
.product-detail__cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1em;
  font-size: 1.1rem;
}
.product-breadcrumb {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-3) var(--space-4) 0;
  font-size: .85rem;
  color: #888;
}
.product-breadcrumb a { color: var(--color-brand); }
.product-breadcrumb span { margin: 0 .4em; }
@media (max-width: 820px) {
  .product-detail {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    padding: var(--space-4) var(--space-4) var(--space-6);
  }
  .product-detail__image { }
}


/* ============================================================
   Mobile card carousels
   Peer card sets swipe sideways instead of stacking into an
   endless column. Deliberately NOT applied to: two-column
   text+image blocks (.intro, .about-teaser, .article-split,
   .feature-row, .service__inner, .product-detail), forms, or
   the footer - those must stay stacked.
   Placed last in the file so it overrides the earlier
   grid-template-columns: 1fr rules at equal specificity.
   ============================================================ */
@media (max-width: 760px) {
  /* .formulas__grid deliberately excluded - those cards read better stacked */
  .why-us__grid,
  .blog-teaser__grid,
  .blog-teaser__grid--three,
  .blog-teaser__grid--four,
  .services__list,
  .boutique-grid,
  .includes__grid,
  .pvt-pricing__grid,
  .app-preview__images,
  .gallery {
    display: flex;
    flex-wrap: nowrap;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
    gap: var(--space-3);
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--space-4);
    padding-bottom: var(--space-3);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* room so card shadows are not clipped by overflow */
    padding-top: 4px;
  }
  .why-us__grid::-webkit-scrollbar,
  .blog-teaser__grid::-webkit-scrollbar,
  .services__list::-webkit-scrollbar,
  .boutique-grid::-webkit-scrollbar,
  .includes__grid::-webkit-scrollbar,
  .pvt-pricing__grid::-webkit-scrollbar,
  .app-preview__images::-webkit-scrollbar,
  .gallery::-webkit-scrollbar { display: none; }

  /* 80% leaves the next card peeking - the cue that tells a user to swipe */
  .why-us__grid > *,
  .blog-teaser__grid > *,
  .services__list > *,
  .boutique-grid > *,
  .includes__grid > *,
  .pvt-pricing__grid > *,
  .app-preview__images > *,
  .gallery > * {
    flex: 0 0 80%;
    min-width: 0;
    scroll-snap-align: start;
  }
  /* the desktop hover-grow would jump the card inside a scroll container */
  .app-preview__images figure,
  .app-preview__images figure:hover { width: auto; }
  .app-preview__images figure img,
  .app-preview__images figure:hover img { width: 100%; height: auto; }

  /* featured pricing card is scaled up on desktop; that transform
     overflows a scroll container, so flatten it here */
  .pvt-pricing__card--featured { transform: none; }
}
