/* ==========================================================================
   Gouffy — storefront stylesheet
   Brand blue sampled from the logo: #6B9DCE
   Display face: Caprasimo. Text face: Instrument Sans.
   ========================================================================== */

/* ---------- tokens ---------- */
:root {
  --blue:        #6B9DCE;
  --blue-600:    #4E82B6;
  --blue-700:    #3C6C9C;
  --blue-050:    #EDF3FA;
  --pine:        #16362B;
  --pine-600:    #235244;
  --ink:         #101315;
  --ink-700:     #3A4148;
  --ink-500:     #6A737B;
  --line:        #E2E5E8;
  --grey:        #F1F2F3;   /* product-tile background */
  --cream:       #FBFAF8;
  --sand:        #EFE6D9;
  --white:       #FFFFFF;
  --amber:       #E9A23B;

  --shadow-sm: 0 1px 2px rgba(16,19,21,.06), 0 2px 8px rgba(16,19,21,.05);
  --shadow-md: 0 4px 12px rgba(16,19,21,.07), 0 12px 32px rgba(16,19,21,.07);
  --shadow-lg: 0 8px 24px rgba(16,19,21,.09), 0 24px 64px rgba(16,19,21,.10);

  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --wrap: 1240px;
  --gut: clamp(20px, 4vw, 48px);

  --display: "Caprasimo", "Georgia", serif;
  --text: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
          Roboto, Helvetica, Arial, sans-serif;

  --header-h: 68px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  font-family: var(--text);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
table { border-collapse: collapse; width: 100%; }
:focus-visible { outline: 3px solid var(--blue-700); outline-offset: 3px; border-radius: 4px; }

/* ---------- bilingual switching (no JS needed to render) ---------- */
html[lang="fr"] [data-l="en"],
html[lang="en"] [data-l="fr"] { display: none !important; }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.wrap-narrow { max-width: 860px; }
.section { padding-block: clamp(64px, 8vw, 116px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section--cream { background: var(--cream); }
.section--grey { background: var(--grey); }
.section--ink { background: var(--ink); color: #fff; }
.section--pine { background: var(--pine); color: #fff; }
.section--blue { background: var(--blue); color: #fff; }

/* ---------- type ---------- */
.display {
  font-family: var(--display);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.005em;
}
.h1 { font-size: clamp(42px, 7.2vw, 84px); }
.h2 { font-size: clamp(32px, 4.6vw, 56px); }
.h3 { font-size: clamp(24px, 2.6vw, 34px); }

/* every Caprasimo heading carries the logo blue, on light and dark alike */
.h1, .h2, .h3, .drawer__head h2 { color: var(--blue); }
.section--blue .h1, .section--blue .h2, .section--blue .h3 { color: #fff; }
/* titles sitting on a photo stay white */
.terrain__body h3 { color: #fff; text-shadow: 0 1px 12px rgba(0,0,0,.35); }
.section--photo .h1, .section--photo .h2, .section--photo .h3 { color: #fff; }
.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--blue-700);
}
.section--ink .eyebrow, .section--pine .eyebrow { color: var(--blue); }
.section--blue .eyebrow { color: var(--pine); }
.section--photo .eyebrow { color: rgba(255,255,255,.88); }
.lede { font-size: clamp(17px, 1.6vw, 20px); color: var(--ink-700); line-height: 1.62; }
.section--ink .lede, .section--pine .lede { color: rgba(255,255,255,.76); }
.section--blue .lede { color: #fff; }
.muted { color: var(--ink-500); font-size: 15px; }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 4.5vw, 60px); }
.section-head .eyebrow { display: block; margin-bottom: 14px; }
.section-head .lede { margin-top: 18px; }

/* card titles use the display face, like the big headings */
.tile__body h3, .gift__body h3, .tl h3 {
  font-family: var(--display); font-weight: 400; line-height: 1.06;
}
.tile__body h3 { font-size: 22px; }
.gift__body h3 { font-size: 20px; }
.tl h3 { font-size: 21px; }

/* every sub-heading sitting on a white or grey background takes the brand blue */
.trust__cell b,
.flist b,
.tile__body h3,
.gift__body h3,
.tl h3,
.review__title,
.included h3,
.faq summary,
.acc summary,
.legal h2,
.legal h3 { color: var(--blue); }
/* except where the background is dark or a photo — those stay white */
.section--ink .flist b,
.section--pine .flist b,
.section--blue .flist b,
.section--photo .flist b,
.terrain__body h3 { color: #fff; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border: 1.5px solid transparent; border-radius: 999px;
  font-weight: 600; font-size: 16px; letter-spacing: .005em;
  transition: transform .16s ease, background-color .16s ease, border-color .16s ease, box-shadow .16s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: #7FADD9; box-shadow: var(--shadow-md); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: #23292E; }
.btn--ghost { border-color: currentColor; background: transparent; }
.btn--ghost:hover { background: rgba(16,19,21,.05); }
.section--ink .btn--ghost:hover, .hero .btn--ghost:hover { background: rgba(255,255,255,.12); }
.btn--block { width: 100%; }
.btn--lg { padding: 18px 36px; font-size: 17px; }

/* ---------- announcement bar ---------- */
.announce {
  background: var(--ink); color: #fff; font-size: 13.5px; letter-spacing: .01em;
  height: 38px; display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.announce__track { position: relative; height: 38px; width: 100%; }
.announce__item {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  gap: 10px; opacity: 0; transform: translateY(8px);
  transition: opacity .5s ease, transform .5s ease; text-align: center; padding-inline: 16px;
}
.announce__item.is-on { opacity: 1; transform: translateY(0); }
.announce b { font-weight: 600; }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header__in {
  display: flex; align-items: center; gap: 28px;
  height: var(--header-h);
}
.logo { flex: 0 0 auto; }
.logo img { height: 26px; width: auto; }
.nav { display: flex; align-items: center; gap: 26px; margin-inline: auto; }
.nav a { font-size: 15px; font-weight: 500; color: var(--ink-700); position: relative; padding-block: 4px; }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--blue); transform: scaleX(0); transform-origin: left;
  transition: transform .2s ease;
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); }
.header__tools { display: flex; align-items: center; gap: 8px; flex: 0 0 auto; }

.langswitch { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; padding: 3px; background: #fff; }
.langswitch button {
  border: 0; background: transparent; padding: 5px 12px; border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--ink-500); letter-spacing: .04em;
}
.langswitch button[aria-pressed="true"] { background: var(--ink); color: #fff; }

.iconbtn {
  position: relative; width: 42px; height: 42px; border: 0; background: transparent;
  border-radius: 50%; display: grid; place-items: center;
}
.iconbtn:hover { background: var(--grey); }
.iconbtn svg { width: 21px; height: 21px; }
.cart-count {
  position: absolute; top: 4px; right: 3px; min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 999px; background: var(--blue-700); color: #fff;
  font-size: 11px; font-weight: 700; display: grid; place-items: center;
}
.cart-count[hidden] { display: none; }

.burger { display: none; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: min(84vh, 760px); display: flex; align-items: flex-end; color: #fff; }
.hero__media { position: absolute; inset: 0; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 55% 60%; }
/* no dark filter over the hero photo — legibility comes from the text shadow */
.hero__media::after { content: none; }
.hero__in { position: relative; padding-block: clamp(56px, 9vw, 108px); }
.hero__in > * { max-width: 720px; }
.hero .h1 { color: #fff; }
.hero__sub { margin-top: 22px; font-size: clamp(17px, 1.7vw, 20px); color: #fff; max-width: 30em;
  text-shadow: 0 1px 8px rgba(8,12,16,.6), 0 3px 24px rgba(8,12,16,.4); }
.hero__cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__price { margin-top: 26px; font-size: 15px; color: #fff;
  text-shadow: 0 1px 8px rgba(8,12,16,.65); }
.hero__price b { font-weight: 600; color: #fff; }
.hero__badge {
  position: absolute; right: var(--gut); bottom: clamp(56px, 9vw, 108px);
  background: rgba(8,12,16,.34); border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius); padding: 18px 22px; max-width: 230px;
}
.hero__badge .n { font-family: var(--display); font-size: 34px; line-height: 1; }
.hero__badge .t { font-size: 13px; color: rgba(255,255,255,.9); margin-top: 8px; }

/* ---------- trust strip ---------- */
.trust { background: var(--cream); border-bottom: 1px solid var(--line); }
.trust__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3.4vw, 48px);
  padding-block: clamp(36px, 4.4vw, 56px);
}
.trust__cell {
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
  padding: 0; background: transparent;
}
.trust__cell svg {
  width: 46px; height: 46px; padding: 11px; box-sizing: border-box;
  border-radius: 14px; background: var(--blue-050); color: var(--blue-700);
  flex: 0 0 auto; margin: 0;
}
.trust__cell b {
  display: block; font-family: var(--display); font-weight: 400;
  font-size: 21px; line-height: 1.08; color: var(--blue);
}
.trust__cell span { font-size: 14.5px; color: var(--ink-700); line-height: 1.55; }
.trust__cell > div { display: grid; gap: 6px; }

@media (max-width: 900px) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 30px 24px; }
}
@media (max-width: 520px) {
  .trust__grid { grid-template-columns: 1fr; }
  .trust__cell { flex-direction: row; align-items: flex-start; gap: 14px; }
  .trust__cell svg { width: 40px; height: 40px; padding: 9px; }
}

/* ---------- stat band ---------- */
.stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.stat__n { font-family: var(--display); font-size: clamp(34px, 4vw, 52px); line-height: 1; }
.stat__n span { font-size: .42em; font-family: var(--text); font-weight: 600; margin-left: 4px; letter-spacing: .01em; }
.stat__t { margin-top: 10px; font-size: 14px; color: rgba(255,255,255,.66); }
.section--ink .stat__n { color: var(--blue); }

/* ---------- media rows ---------- */
.row { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 76px); align-items: center; }
.row--flip .row__media { order: 2; }
.row__media img { border-radius: var(--radius); width: 100%; }
.frame-grey {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(14px, 2vw, 28px);
}
.frame-grey img { border-radius: var(--radius-sm); }

/* ---------- feature list ---------- */
.flist { margin-top: 30px; display: grid; gap: 18px; }
.flist li { display: flex; gap: 14px; align-items: flex-start; }
.flist svg { width: 20px; height: 20px; color: var(--blue-700); flex: 0 0 auto; margin-top: 4px; }
.flist b { font-weight: 600; }
.flist p { color: var(--ink-700); font-size: 15.5px; margin-top: 2px; }

/* a section that sits on a photo instead of a flat colour */
.section--photo, .section--photo-light { position: relative; isolation: isolate; }
.section--photo .section__bg,
.section--photo-light .section__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.section--photo .section__bg img,
.section--photo-light .section__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 62%; }

/* light variant: a Landes beach behind a white veil, so the section is never a flat block */
.section--photo-light .section__bg::after {
  content: ""; position: absolute; inset: 0; background: rgba(255,255,255,.74);
}
.section--photo .section__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(95deg, rgba(8,12,16,.46) 0%, rgba(8,12,16,.22) 48%, rgba(8,12,16,.04) 100%),
    linear-gradient(to top, rgba(8,12,16,.30), rgba(8,12,16,0) 62%);
}
/* titles sit flat on the photo — no shadow; the small copy keeps a light one */
.section--photo .h1, .section--photo .h2, .section--photo .h3 { text-shadow: none; }
.section--photo .lede, .section--photo .stat__t, .section--photo .eyebrow {
  text-shadow: 0 1px 10px rgba(8,12,16,.6), 0 2px 30px rgba(8,12,16,.45);
}
.section--photo .stat__n { text-shadow: 0 2px 14px rgba(8,12,16,.55); }

/* ---------- terrain cards ---------- */
.terrain { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.terrain__card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3 / 4; color: #fff; display: flex; align-items: flex-end;
}
.terrain__card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.3,1); }
.terrain__card:hover img { transform: scale(1.05); }
.terrain__card::after {
  content: ""; position: absolute; inset: 0;
  /* solid under the copy, clear over the subject in the upper half */
  background: linear-gradient(to top,
    rgba(8,12,16,.94) 0%,
    rgba(8,12,16,.80) 24%,
    rgba(8,12,16,.34) 52%,
    rgba(8,12,16,0)   84%);
}
.terrain__body { position: relative; z-index: 1; padding: 26px; }
.terrain__body h3 { font-family: var(--display); font-size: 26px; }
.terrain__body p { font-size: 14.5px; color: #fff; margin-top: 8px; }

/* ---------- detail gallery (light grey tiles) ---------- */
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tile { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.tile__img { aspect-ratio: 4 / 3; overflow: hidden; background: #fff; }
.tile__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.7,.3,1); }
.tile:hover .tile__img img { transform: scale(1.04); }
.tile__body { padding: 20px 22px 24px; }
.tile__body h3 { font-size: 17px; font-weight: 600; }
.tile__body p { font-size: 14.5px; color: var(--ink-500); margin-top: 6px; }

/* ---------- gifts ---------- */
.gifts { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.gift { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; text-align: center; }
.gift__img {
  background: #fff; aspect-ratio: 1; padding: 18px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.gift__img img {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  object-fit: contain; border-radius: 8px;
}
.gift__body { padding: 18px 18px 24px; }
.gift__body h3 { font-size: 16px; font-weight: 600; }
.gift__body p { font-size: 13.5px; color: var(--ink-500); margin-top: 6px; }
.gift__tag {
  display: inline-block; margin-top: 12px; font-size: 11.5px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--pine);
  background: #DFF0E6; padding: 5px 12px; border-radius: 999px;
}

/* ---------- delivery timeline ---------- */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tl { position: relative; }
.tl__img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; background: var(--grey); }
.tl__img img { width: 100%; height: 100%; object-fit: cover; }
.tl__day {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-700);
}
.tl h3 { font-size: 17px; font-weight: 600; margin-top: 8px; }
.tl p { font-size: 14.5px; color: var(--ink-500); margin-top: 6px; }

/* ---------- reviews ---------- */
.review-summary {
  display: flex; flex-wrap: wrap; gap: clamp(20px, 4vw, 56px); align-items: center;
  padding: 28px 32px; border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; margin-bottom: 36px;
}
.review-summary__score { font-family: var(--display); font-size: 56px; line-height: 1; }
.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 17px; height: 17px; color: var(--amber); }
.stars--sm svg { width: 14px; height: 14px; }
.bars { flex: 1 1 260px; display: grid; gap: 6px; min-width: 220px; }
.bar { display: grid; grid-template-columns: 34px 1fr 34px; gap: 10px; align-items: center; font-size: 12.5px; color: var(--ink-500); }
.bar__track { height: 7px; border-radius: 999px; background: var(--grey); overflow: hidden; }
.bar__fill { height: 100%; background: var(--amber); border-radius: 999px; }

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review {
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
  padding: 24px; display: flex; flex-direction: column; gap: 14px;
}
.review__top { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.review__who { font-weight: 600; font-size: 15px; }
.review__meta { font-size: 12.5px; color: var(--ink-500); margin-top: 2px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.verified { display: inline-flex; align-items: center; gap: 4px; color: var(--pine-600); font-weight: 600; }
.verified svg { width: 13px; height: 13px; }
.review__title { font-weight: 600; font-size: 16px; }
.review__text { font-size: 15px; color: var(--ink-700); }
.review__pics { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; }
.review__pics button { padding: 0; border: 0; background: none; border-radius: 10px; overflow: hidden; }
.review__pics img { width: 68px; height: 68px; object-fit: cover; border-radius: 10px; transition: transform .2s ease; }
.review__pics button:hover img { transform: scale(1.06); }

/* real-photo wall — genuine unboxing shots, no invented review attached */
.photowall { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.photowall button {
  padding: 0; border: 0; background: var(--grey); border-radius: var(--radius-sm);
  overflow: hidden; aspect-ratio: 1; cursor: zoom-in;
}
.photowall img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.7,.3,1); }
.photowall button:hover img { transform: scale(1.05); }
.photowall button:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
@media (max-width: 900px) {
  .section--photo .section__bg::after {
    background: linear-gradient(to bottom, rgba(8,12,16,.34) 0%, rgba(8,12,16,.20) 45%, rgba(8,12,16,.46) 100%);
  }

  .photowall { grid-template-columns: repeat(3, 1fr); }
  .photowall button:nth-child(1) { grid-column: span 3; aspect-ratio: 4 / 3; grid-row: auto; }
}
@media (max-width: 640px) {
  .btn { padding: 10px 18px; font-size: 14px; }
  .btn--lg { padding: 12px 20px; font-size: 14.5px; }
  .hero__cta { gap: 10px; margin-top: 26px; }
  .hero__cta .btn { flex: 0 1 auto; }
 .photowall { grid-template-columns: repeat(2, 1fr); } }

/* ---------- compliance ---------- */
.compliance { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px;
  border: 1px solid rgba(255,255,255,.24); border-radius: 999px; font-size: 13.5px; font-weight: 600;
}
.section--pine .badge svg { width: 15px; height: 15px; color: var(--blue); }
.section--blue .badge { border-color: rgba(255,255,255,.55); color: #fff; }
.section--blue .badge svg { width: 15px; height: 15px; color: #fff; }
.doclist { display: grid; gap: 10px; margin-top: 26px; }
.doclist a {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 20px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15);
  font-size: 14.5px; transition: background .2s ease;
}
.doclist a:hover { background: rgba(255,255,255,.13); }
.doclist svg { width: 18px; height: 18px; flex: 0 0 auto; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 24px 44px 24px 0; position: relative;
  font-size: 17px; font-weight: 600;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 12px; height: 12px;
  border-right: 2px solid var(--ink-500); border-bottom: 2px solid var(--ink-500);
  transform: translateY(-70%) rotate(45deg); transition: transform .22s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq__a { padding: 0 60px 26px 0; color: var(--ink-700); font-size: 15.5px; display: grid; gap: 12px; }

/* ---------- final CTA ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band__in { position: relative; text-align: center; max-width: 720px; margin-inline: auto; }
.cta-band.section--photo .section__bg::after {
  background:
    linear-gradient(to bottom, rgba(8,12,16,.55), rgba(8,12,16,.30) 45%, rgba(8,12,16,.62));
}
.cta-band.section--photo .section__bg img { object-position: center 55%; }
.cta-band .btn { margin-top: 30px; }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.7); padding-block: clamp(52px, 6vw, 76px) 32px; font-size: 14.5px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer__logo img { height: 26px; width: auto; filter: brightness(0) invert(1) opacity(.92); }
.footer h4 { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer li + li { margin-top: 10px; }
.footer a:hover { color: #fff; }
.footer__bottom {
  margin-top: 52px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13px;
}
.newsletter { display: flex; gap: 8px; margin-top: 18px; max-width: 380px; }
.newsletter input {
  flex: 1; padding: 13px 18px; border-radius: 999px; border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06); color: #fff; font: inherit; font-size: 14.5px;
}
.newsletter input::placeholder { color: rgba(255,255,255,.45); }
.newsletter button { padding: 13px 22px; border-radius: 999px; border: 0; background: var(--blue); color: #fff; font-weight: 600; font-size: 14.5px; }
.paycards { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.paycard {
  height: 26px; padding: 0 9px; border-radius: 5px; background: rgba(255,255,255,.1);
  display: grid; place-items: center; font-size: 10.5px; font-weight: 700; letter-spacing: .04em; color: rgba(255,255,255,.82);
}

/* ==========================================================================
   PRODUCT PAGE
   ========================================================================== */
.breadcrumb { font-size: 13.5px; color: var(--ink-500); padding-block: 22px; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span { margin-inline: 8px; }

.pdp { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 4vw, 64px); align-items: start; padding-bottom: clamp(56px, 7vw, 90px); }

.gallery { position: sticky; top: calc(var(--header-h) + 20px); }
.gallery__main {
  background: var(--grey); border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4 / 3; position: relative;
}
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__main .zoomhint {
  position: absolute; right: 14px; bottom: 14px; background: rgba(255,255,255,.9);
  border-radius: 999px; padding: 7px 14px; font-size: 12px; font-weight: 600; color: var(--ink-700);
  display: flex; align-items: center; gap: 6px; pointer-events: none;
}
.gallery__thumbs { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-top: 12px; }
.gallery__thumbs button {
  border: 2px solid transparent; background: var(--grey); border-radius: var(--radius-sm);
  overflow: hidden; aspect-ratio: 1; padding: 0;
}
.gallery__thumbs img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumbs button[aria-current="true"] { border-color: var(--ink); }

.buybox { display: grid; gap: 22px; }
.buybox__head .h2 { font-size: clamp(30px, 3.4vw, 44px); }
.rating-inline { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-500); margin-bottom: 14px; }
.rating-inline a { text-decoration: underline; text-underline-offset: 3px; }

.pricebox { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.price { font-family: var(--display); font-size: 44px; line-height: 1; }
.price-note { font-size: 13.5px; color: var(--ink-500); width: 100%; margin-top: 8px; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600;
  padding: 8px 14px; border-radius: 999px; background: var(--blue-050); color: var(--blue-700);
}
.chip svg { width: 14px; height: 14px; }
.chip--green { background: #E4F2EA; color: var(--pine-600); }

.included { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; background: var(--cream); }
.included h3 { font-size: 14px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.included ul { display: grid; gap: 12px; }
.included li { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.included li img { width: 44px; height: 44px; object-fit: cover; border-radius: 9px; background: var(--grey); }
.included .free { margin-left: auto; font-size: 12px; font-weight: 700; color: var(--pine-600); letter-spacing: .06em; }
.included .strike { text-decoration: line-through; color: var(--ink-500); font-weight: 500; margin-right: 6px; letter-spacing: 0; }

.qtyrow { display: flex; gap: 12px; align-items: stretch; }
.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 999px; overflow: hidden; }
.qty button { width: 46px; border: 0; background: transparent; font-size: 20px; line-height: 1; }
.qty button:hover { background: var(--grey); }
.qty input { width: 42px; text-align: center; border: 0; font: inherit; font-weight: 600; background: transparent; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.delivery-est {
  display: flex; gap: 12px; align-items: flex-start; padding: 16px 18px;
  border-radius: var(--radius-sm); background: #E4F2EA; font-size: 14.5px; color: var(--pine);
}
.delivery-est svg { width: 19px; height: 19px; flex: 0 0 auto; margin-top: 2px; }
.delivery-est b { font-weight: 700; }

.assurances { display: grid; gap: 12px; }
.assurances li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--ink-700); }
.assurances svg { width: 17px; height: 17px; color: var(--blue-700); flex: 0 0 auto; margin-top: 3px; }

.stock-line { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--pine-600); font-weight: 600; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: #2FA36B; box-shadow: 0 0 0 4px rgba(47,163,107,.18); }

/* accordions on pdp */
.acc { border-top: 1px solid var(--line); }
.acc details { border-bottom: 1px solid var(--line); }
.acc summary { list-style: none; cursor: pointer; padding: 20px 40px 20px 0; position: relative; font-size: 16px; font-weight: 600; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after {
  content: "＋"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-size: 17px; color: var(--ink-500); font-weight: 400;
}
.acc details[open] summary::after { content: "－"; }
.acc__body { padding-bottom: 24px; font-size: 15px; color: var(--ink-700); display: grid; gap: 14px; }

.spectable td { padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 14.8px; vertical-align: top; }
.spectable tr:last-child td { border-bottom: 0; }
.spectable td:first-child { color: var(--ink-500); width: 46%; padding-right: 16px; }
.spectable td:last-child { font-weight: 600; }

/* sticky mobile buy bar */
.stickybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line); padding: 12px var(--gut);
  display: none; align-items: center; gap: 14px;
  transform: translateY(110%); transition: transform .3s cubic-bezier(.2,.7,.3,1);
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
}
.stickybar.is-on { transform: translateY(0); }
.stickybar__info { flex: 1; min-width: 0; }
.stickybar__info b { display: block; font-size: 14.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.stickybar__info span { font-size: 13px; color: var(--ink-500); }

/* ---------- cart drawer ---------- */
.scrim {
  position: fixed; inset: 0; background: rgba(16,19,21,.42); z-index: 90;
  opacity: 0; pointer-events: none; transition: opacity .28s ease;
}
.scrim.is-on { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 100%); z-index: 95;
  background: #fff; transform: translateX(100%); transition: transform .34s cubic-bezier(.2,.7,.3,1);
  display: flex; flex-direction: column;
}
.drawer.is-on { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.drawer__head h2 { font-family: var(--display); font-size: 24px; }
.drawer__body { flex: 1; overflow-y: auto; padding: 24px; display: grid; gap: 20px; align-content: start; }
.drawer__foot { border-top: 1px solid var(--line); padding: 22px 24px calc(22px + env(safe-area-inset-bottom)); display: grid; gap: 14px; }
.cartline { display: grid; grid-template-columns: 78px 1fr; gap: 14px; }
.cartline img { width: 78px; height: 78px; object-fit: cover; border-radius: 12px; background: var(--grey); }
.cartline b { font-size: 15px; font-weight: 600; }
.cartline .sub { font-size: 13px; color: var(--ink-500); margin-top: 3px; }
.cartline .row2 { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.cartline .rm { border: 0; background: none; font-size: 13px; color: var(--ink-500); text-decoration: underline; padding: 0; }
.cart-total { display: flex; justify-content: space-between; font-size: 17px; font-weight: 600; }
.cart-empty { text-align: center; color: var(--ink-500); padding-block: 40px; }
.freegifts-note { font-size: 13px; color: var(--pine-600); background: #E4F2EA; padding: 12px 14px; border-radius: 10px; }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(10,12,14,.94);
  display: grid; place-items: center; padding: 5vw;
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.lightbox.is-on { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 100%; max-height: 88vh; border-radius: 10px; object-fit: contain; }
.lightbox__close {
  position: absolute; top: 20px; right: 24px; width: 44px; height: 44px; border-radius: 50%;
  border: 0; background: rgba(255,255,255,.14); color: #fff; font-size: 22px; line-height: 1;
}
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px;
  border-radius: 50%; border: 0; background: rgba(255,255,255,.14); color: #fff; font-size: 20px;
}
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }

/* ---------- toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 24px);
  background: var(--ink); color: #fff; padding: 14px 22px; border-radius: 999px;
  font-size: 14.5px; z-index: 120; max-width: min(440px, calc(100vw - 40px));
  text-align: center; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transition: transform .32s cubic-bezier(.2,.7,.3,1), opacity .24s ease, visibility 0s linear .32s;
}
.toast.is-on {
  transform: translate(-50%, 0); opacity: 1; visibility: visible;
  transition: transform .32s cubic-bezier(.2,.7,.3,1), opacity .24s ease, visibility 0s;
}

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
}

/* ---------- the Gouffy mark, used as a turning divider ---------- */
@keyframes mark-spin { to { transform: rotate(360deg); } }
.mark { display: block; width: 100%; height: 100%; animation: mark-spin 26s linear infinite; }
.mark-wrap { width: 52px; height: 52px; flex: 0 0 auto; }
.mark-divider {
  display: flex; align-items: center; gap: clamp(18px, 4vw, 40px);
  padding-block: clamp(44px, 6vw, 78px);
}
.mark-divider::before, .mark-divider::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}
.cta-band .mark-wrap { width: 62px; height: 62px; margin: 0 auto 26px; }
.cta-band .mark { filter: brightness(0) invert(1); opacity: .95; }

/* ---------- legal pages ---------- */
.legal { padding-block: clamp(40px, 6vw, 72px) clamp(64px, 8vw, 100px); }
.legal__head { border-bottom: 1px solid var(--line); padding-bottom: 28px; margin-bottom: 40px; }
.legal__head .h2 { font-size: clamp(30px, 4vw, 46px); }
.legal__updated { font-size: 13.5px; color: var(--ink-500); margin-top: 14px; }
.legal h2 {
  font-size: 19px; font-weight: 700; margin-top: 44px; margin-bottom: 14px;
  padding-top: 22px; border-top: 1px solid var(--line); color: var(--ink);
}
.legal h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.legal h3 { font-size: 16px; font-weight: 600; margin-top: 24px; margin-bottom: 8px; }
.legal p, .legal li { font-size: 15.5px; color: var(--ink-700); line-height: 1.68; }
.legal p + p, .legal ul + p, .legal p + ul { margin-top: 12px; }
.legal ul { display: grid; gap: 8px; margin-top: 10px; padding-left: 20px; list-style: disc; }
.legal ul li { padding-left: 4px; }
.legal a { text-decoration: underline; text-underline-offset: 3px; }
.legal table { margin-top: 14px; }
.legal table td, .legal table th {
  border: 1px solid var(--line); padding: 10px 12px; font-size: 14.5px; text-align: left; vertical-align: top;
}
.legal table th { background: var(--grey); font-weight: 600; }
.legal .box {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--cream); padding: 20px 22px; margin-top: 16px;
}
.legal .box p { font-size: 15px; }
.todo {
  background: #FFF0CC; color: #6B4A12; border-radius: 4px;
  padding: 1px 6px; font-weight: 600; font-size: .95em;
}
.legal__toc { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.legal__toc a {
  font-size: 13.5px; padding: 7px 14px; border: 1px solid var(--line);
  border-radius: 999px; text-decoration: none; color: var(--ink-700);
}
.legal__toc a:hover { background: var(--grey); color: var(--ink); }

/* ---------- editorial note (remove before launch) ---------- */
.devnote {
  background: #FFF4E0; border: 1px dashed #E0A33F; color: #6B4A12;
  border-radius: var(--radius-sm); padding: 14px 18px; font-size: 13.5px; margin-top: 20px;
}
.devnote b { font-weight: 700; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .pdp { grid-template-columns: 1fr; }
  .gallery { position: static; }
  .stats { grid-template-columns: repeat(3, 1fr); row-gap: 34px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .gifts { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .burger { display: grid; }
  .tiles { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: 1fr; }
  .terrain { grid-template-columns: 1fr; }
  .terrain__card { aspect-ratio: 16 / 11; }
  .timeline { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
  .row { grid-template-columns: 1fr; }
  .row--flip .row__media { order: 0; }
  .compliance { grid-template-columns: 1fr; }
  .stickybar { display: flex; }
  body { padding-bottom: 84px; }
  .hero__badge { display: none; }

  /* mobile nav panel */
  .nav.is-open {
    display: grid; position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 18px var(--gut) 26px; gap: 4px; margin: 0;
  }
  .nav.is-open a { padding: 12px 0; font-size: 17px; border-bottom: 1px solid var(--line); }
  .nav.is-open a::after { display: none; }
  .header { position: sticky; }
  .header__in { position: relative; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .tiles { grid-template-columns: 1fr; }
  .gifts { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .gallery__thumbs { grid-template-columns: repeat(4, 1fr); }
  .review-summary { flex-direction: column; align-items: flex-start; }
  .hero { min-height: 74vh; }
  .qtyrow { flex-wrap: wrap; }
  .qtyrow .btn { width: 100%; }
}

@media print {
  .header, .announce, .stickybar, .footer, .drawer, .scrim { display: none !important; }
}
