/* =====================================================================
   BY NANZ — warm, tactiel en persoonlijk
   ===================================================================== */

:root {
  --cream: #f6f0e7;
  --cream-deep: #ebe1d3;
  --paper: #fffdf8;
  --ink: #20312c;
  --ink-soft: #4e5b56;
  --forest: #24483d;
  --forest-deep: #17372e;
  --sage: #91a495;
  --sage-pale: #d7ded4;
  --terracotta: #aa5136;
  --terracotta-dark: #813b2a;
  --mustard: #e2b65d;
  --berry: #b55f6e;
  --sky: #91afbd;
  --sand: #d8c6aa;
  --line: rgba(32, 49, 44, .16);
  --line-light: rgba(255, 253, 248, .22);
  --shadow: 0 26px 70px rgba(30, 43, 38, .13);
  --radius-sm: 10px;
  --radius-md: 22px;
  --radius-lg: 36px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --container: 1240px;
  --header-height: 78px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--cream);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection { color: var(--paper); background: var(--terracotta); }
img { display: block; max-width: 100%; height: auto; }
svg { display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { color: inherit; font: inherit; }
button { cursor: pointer; }
p, h1, h2, h3, h4, ul, ol, dl, dd, figure { margin-top: 0; }

:focus-visible {
  outline: 3px solid var(--mustard);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section { padding: clamp(88px, 10vw, 148px) 0; }
.section-shell { padding-inline: max(24px, calc((100vw - 1480px) / 2)); }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--paper);
  background: var(--forest-deep);
  border-radius: 999px;
  transform: translateY(-180%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

/* Typography ---------------------------------------------------------- */

h1, h2, h3 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.045em;
  text-wrap: balance;
}

h1 { font-size: clamp(4rem, 7.5vw, 7.4rem); }
h2 { font-size: clamp(3rem, 5.2vw, 5.25rem); }
h3 { font-size: clamp(1.45rem, 2.2vw, 2rem); line-height: 1.12; }
h1 em, h2 em { color: var(--terracotta); font-style: italic; font-weight: 500; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 23px;
  color: var(--forest);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 30px;
  height: 1px;
  background: currentColor;
}

.eyebrow--light { color: #e8e6d8; }

.section-heading { margin-bottom: clamp(48px, 6vw, 82px); }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { color: var(--ink-soft); }
.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  gap: 70px;
  align-items: end;
}
.section-heading--split > p { max-width: 440px; margin: 0 0 6px auto; font-size: 1.08rem; }
.section-heading--center { max-width: 780px; margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading--center > p { max-width: 590px; margin: 24px auto 0; font-size: 1.08rem; }

/* Controls ------------------------------------------------------------ */

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 15px 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .87rem;
  font-weight: 700;
  letter-spacing: .035em;
  line-height: 1;
  transition: transform .25s var(--ease), color .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.button:hover { transform: translateY(-3px); }
.button span { font-size: 1.1rem; }
.button--primary { color: #fff; background: var(--terracotta); box-shadow: 0 12px 30px rgba(157, 79, 54, .22); }
.button--primary:hover { background: var(--terracotta-dark); box-shadow: 0 16px 36px rgba(157, 79, 54, .28); }
.button--outline { border-color: var(--ink); background: transparent; }
.button--outline:hover { color: var(--paper); background: var(--ink); }
.button--cream { color: var(--forest-deep); background: var(--cream); }
.button--cream:hover { background: #fff; }
.button--block { width: 100%; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-block: 8px;
  border-bottom: 1px solid currentColor;
  color: var(--ink-soft);
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.15;
  transition: gap .25s var(--ease), color .2s ease;
}
.text-link:hover { gap: 20px; color: var(--terracotta); }
.text-link--dark { color: var(--ink); }

/* Announcement + navigation ----------------------------------------- */

.announcement {
  position: relative;
  z-index: 40;
  color: #f5f1e8;
  background: var(--forest-deep);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .065em;
  text-transform: uppercase;
}

.announcement__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.announcement__inner a { border-bottom: 1px solid rgba(255,255,255,.45); }
.announcement__dot { width: 3px; height: 3px; border-radius: 50%; background: var(--mustard); }

.site-header {
  position: sticky;
  z-index: 35;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(246, 240, 231, .93);
  backdrop-filter: blur(16px);
  transition: height .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled { height: 68px; border-color: var(--line); box-shadow: 0 8px 30px rgba(36, 57, 49, .06); }
.site-header__inner { display: flex; height: 100%; align-items: center; justify-content: space-between; }

.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--serif); }
.brand__mark {
  display: grid;
  width: 36px;
  height: 40px;
  place-items: center;
  color: var(--cream);
  background: var(--forest);
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 50% 100%, 0 78%);
}
.brand__word { display: flex; align-items: baseline; font-size: 1.9rem; letter-spacing: -.07em; line-height: 1; }
.brand__word small { margin-right: 4px; font-family: var(--sans); font-size: .6rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.desktop-nav { display: flex; align-items: center; gap: clamp(26px, 3vw, 48px); }
.desktop-nav a { position: relative; padding: 28px 0; color: var(--ink-soft); font-size: .81rem; font-weight: 700; }
.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 1px;
  background: var(--terracotta);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}
.desktop-nav a:hover, .desktop-nav a.is-active { color: var(--ink); }
.desktop-nav a:hover::after, .desktop-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-cart {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 700;
}
.header-cart svg { width: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.cart-count {
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  padding: 0 5px;
  border-radius: 99px;
  color: #fff;
  background: var(--terracotta);
  font-size: .68rem;
}
.cart-count.is-empty { color: var(--ink-soft); background: var(--cream-deep); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}
.menu-toggle span { display: block; width: 18px; height: 1.5px; margin: 5px auto; background: currentColor; transition: transform .25s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.25px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  z-index: -1;
  top: calc(var(--header-height) + 34px);
  right: 0;
  left: 0;
  display: grid;
  min-height: calc(100svh - var(--header-height) - 34px);
  align-content: space-between;
  padding: 30px 24px 42px;
  visibility: hidden;
  background: var(--forest-deep);
  color: #f7f0e6;
  opacity: 0;
  transform: translateY(-12px);
  transition: visibility .3s, opacity .3s ease, transform .3s var(--ease);
}
.mobile-menu.is-open { z-index: 30; visibility: visible; opacity: 1; transform: translateY(0); }
.mobile-menu nav { display: grid; }
.mobile-menu nav a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.16); font-family: var(--serif); font-size: clamp(2rem, 8vw, 3.2rem); line-height: 1.1; }
.mobile-menu nav a.is-active { color: var(--mustard); }
.mobile-menu > p { margin: 30px 0 0; color: rgba(255,255,255,.66); }
.mobile-menu > p a { color: #fff; border-bottom: 1px solid; }
.menu-is-open { overflow: hidden; }

/* Hero ---------------------------------------------------------------- */

.hero { position: relative; overflow: hidden; background: var(--cream); }
.hero__grid {
  display: grid;
  min-height: min(790px, calc(100svh - 112px));
  grid-template-columns: minmax(390px, .8fr) minmax(520px, 1.2fr);
  gap: clamp(40px, 7vw, 108px);
  align-items: center;
  padding-block: clamp(36px, 3.4vw, 52px);
}
.hero__copy { position: relative; z-index: 2; padding-left: clamp(0px, 3vw, 45px); }
.hero__copy h1 { margin: 0 0 32px; }
.hero__lead { max-width: 570px; margin-bottom: 34px; color: var(--ink-soft); font-size: clamp(1.05rem, 1.4vw, 1.2rem); }
.hero__actions { display: flex; align-items: center; gap: 28px; }
.hero__facts {
  display: flex;
  gap: clamp(26px, 4vw, 58px);
  margin-top: 54px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}
.hero__facts div { display: grid; gap: 2px; }
.hero__facts strong { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; }
.hero__facts span { color: var(--ink-soft); font-size: .72rem; }

.hero__visual { position: relative; min-width: 0; padding: 16px 38px 48px 0; }
.hero__sun {
  position: absolute;
  top: -10%;
  right: -8%;
  width: min(49vw, 680px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #dfbd72;
  opacity: .8;
}
.hero-photo { position: relative; z-index: 1; margin: 0; }
.hero-photo::before {
  position: absolute;
  z-index: -1;
  inset: 18px -17px -18px 17px;
  border: 1px solid rgba(32,49,44,.32);
  border-radius: 49% 49% 24px 24px;
  content: "";
}
.hero-photo img {
  width: 100%;
  aspect-ratio: 1.04 / 1;
  border-radius: 49% 49% 24px 24px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.hero-photo figcaption {
  position: absolute;
  right: 24px;
  bottom: 22px;
  max-width: 210px;
  padding: 10px 14px;
  border-radius: 6px;
  color: #fff;
  background: rgba(23,55,46,.87);
  font-size: .67rem;
  letter-spacing: .04em;
}
.hero-stamp {
  position: absolute;
  z-index: 3;
  right: -8px;
  bottom: 1px;
  width: 126px;
  height: 126px;
  padding: 8px;
  border-radius: 50%;
  color: var(--cream);
  background: var(--terracotta);
  transform: rotate(10deg);
}
.hero-stamp svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 1.5; }
.hero-stamp text { fill: currentColor; stroke: none; font: 700 7.8px var(--sans); letter-spacing: 1.7px; }
.hero-note {
  position: absolute;
  z-index: 4;
  bottom: 4px;
  left: -40px;
  display: flex;
  width: 230px;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255,253,248,.94);
  box-shadow: 0 12px 30px rgba(30,43,38,.11);
  font-size: .72rem;
  line-height: 1.45;
}
.hero-note span { color: var(--terracotta); font-weight: 700; }

/* Trust ticker -------------------------------------------------------- */

.trust-line { overflow: hidden; border-block: 1px solid var(--line); background: var(--paper); }
.trust-line__track {
  display: flex;
  width: max-content;
  min-height: 73px;
  align-items: center;
  gap: 34px;
  padding-inline: 34px;
  animation: ticker 28s linear infinite;
}
.trust-line__track span { font-family: var(--serif); font-size: 1.08rem; font-style: italic; white-space: nowrap; }
.trust-line__track i { width: 7px; height: 7px; border-radius: 50%; background: var(--mustard); }
@keyframes ticker { to { transform: translateX(-45%); } }

/* Mood collection ---------------------------------------------------- */

.section--intro { background: var(--paper); }
.mood-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 70px 32px; align-items: start; }
.mood-card--large { grid-row: span 2; }
.mood-card a { display: block; }
.mood-card__image { position: relative; overflow: hidden; background: var(--cream-deep); }
.mood-card__image::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 65%, rgba(24,36,31,.18)); content: ""; opacity: 0; transition: opacity .35s ease; }
.mood-card__image img { width: 100%; aspect-ratio: 1.48 / 1; object-fit: cover; transition: transform .7s var(--ease); }
.mood-card--large .mood-card__image img { aspect-ratio: .86 / 1; }
.mood-card:hover .mood-card__image img { transform: scale(1.025); }
.mood-card:hover .mood-card__image::after { opacity: 1; }
.image-arrow {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: rgba(32,49,44,.82);
  font-size: 1.1rem;
  transform: translateY(-4px);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
}
.mood-card:hover .image-arrow { opacity: 1; transform: translateY(0); }
.mood-card__meta { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding-top: 19px; }
.mood-card__meta p { margin-bottom: 7px; color: var(--terracotta); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.mood-card__meta h3 { margin: 0; font-size: clamp(1.45rem, 2.1vw, 2rem); }
.color-dots { display: flex; flex: 0 0 auto; margin-top: 4px; }
.color-dots i { width: 22px; height: 22px; margin-left: -5px; border: 2px solid var(--paper); border-radius: 50%; background: var(--dot); }

/* Name demo ----------------------------------------------------------- */

.try-it { overflow: hidden; color: #f2eee4; background: var(--forest-deep); }
.try-it__grid { display: grid; min-height: 520px; grid-template-columns: .72fr 1.28fr; gap: clamp(60px, 8vw, 120px); align-items: center; }
.try-it__copy h2 { margin: 0 0 24px; color: #f5f0e6; }
.try-it__copy > p:not(.eyebrow):not(.try-it__small) { max-width: 480px; color: rgba(255,255,255,.7); }
.name-demo-input {
  display: flex;
  max-width: 530px;
  align-items: center;
  margin-top: 30px;
  padding: 7px 7px 7px 22px;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
}
.name-demo-input input { min-width: 0; flex: 1; border: 0; outline: 0; color: #fff; background: transparent; font-size: 1.08rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.name-demo-input a { padding: 12px 16px; border-radius: 999px; color: var(--forest-deep); background: var(--mustard); font-size: .75rem; font-weight: 700; white-space: nowrap; }
.try-it__small { margin: 12px 0 0; color: rgba(255,255,255,.5); font-size: .72rem; }

.mini-preview {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 310px;
  align-items: flex-start;
  justify-content: center;
  padding: 62px 18px 30px;
}
.mini-preview__cord {
  position: absolute;
  top: 63px;
  right: 0;
  left: 0;
  height: 7px;
  border-radius: 99px;
  background: #d9c7aa;
  box-shadow: inset 0 -2px rgba(0,0,0,.15);
  transform: rotate(-1.5deg);
}
.mini-preview__flag {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(98px, calc((100% - 10px) / var(--preview-count)));
  max-width: 98px;
  aspect-ratio: .72 / 1;
  align-items: flex-start;
  justify-content: center;
  padding-top: min(27px, 3vw);
  color: #fffdf8;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3.4vw, 2.6rem);
  font-weight: 600;
  line-height: 1;
  text-shadow: 0 2px 0 rgba(0,0,0,.12);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  filter: drop-shadow(0 9px 8px rgba(0,0,0,.12));
  transform-origin: top center;
}
.mini-preview__flag:nth-of-type(even) { transform: rotate(1.7deg) translateY(2px); }
.mini-preview__flag:nth-of-type(3n) { transform: rotate(-1.2deg) translateY(-1px); }
.mini-preview__flag--peach { background: #cf7759; }
.mini-preview__flag--sage { background: #809887; }
.mini-preview__flag--sand { color: var(--forest-deep); background: #d7c2a4; }
.mini-preview__flag--berry { background: #ad5c6b; }
.mini-preview__flag--sky { background: #7f9eac; }
.mini-preview__gap { width: 14px; }

/* Process ------------------------------------------------------------- */

.process { background: var(--cream); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 0; padding: 0; list-style: none; counter-reset: step; }
.process-grid li { position: relative; min-height: 350px; padding: 36px clamp(26px, 4vw, 52px) 30px; border-top: 1px solid var(--ink); border-right: 1px solid var(--line); }
.process-grid li:last-child { border-right: 0; }
.process-grid__number { position: absolute; top: 14px; right: 16px; color: var(--terracotta); font-size: .7rem; font-weight: 700; }
.process-grid__icon { width: 72px; height: 72px; margin-bottom: 54px; color: var(--forest); }
.process-grid__icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.45; }
.process-grid h3 { margin-bottom: 18px; }
.process-grid p { max-width: 300px; margin-bottom: 0; color: var(--ink-soft); }
.process__cta { margin-top: 52px; text-align: center; }

/* Craft --------------------------------------------------------------- */

.craft { color: var(--paper); background: var(--forest); }
.craft__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(70px, 10vw, 150px); align-items: center; }
.craft__images { position: relative; min-height: 650px; }
.craft__image { position: absolute; overflow: hidden; margin: 0; box-shadow: 0 25px 60px rgba(0,0,0,.22); }
.craft__image img { width: 100%; height: 100%; object-fit: cover; }
.craft__image--main { top: 0; right: 8%; bottom: 10%; left: 0; }
.craft__image--small { z-index: 2; right: 0; bottom: 0; width: 44%; aspect-ratio: .9 / 1; border: 10px solid var(--forest); }
.craft__label {
  position: absolute;
  z-index: 3;
  top: -24px;
  left: -24px;
  display: grid;
  width: 116px;
  height: 116px;
  place-items: center;
  border-radius: 50%;
  color: var(--forest-deep);
  background: var(--mustard);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.15;
  text-align: center;
  transform: rotate(-11deg);
}
.craft__copy h2 { margin: 0 0 28px; color: var(--paper); }
.craft__copy .eyebrow { color: #d9decf; }
.craft__lead { max-width: 560px; margin-bottom: 42px; color: rgba(255,255,255,.74); font-size: 1.08rem; }
.craft-list { margin: 0 0 38px; border-top: 1px solid var(--line-light); }
.craft-list div { display: grid; grid-template-columns: 120px 1fr; gap: 25px; padding: 15px 0; border-bottom: 1px solid var(--line-light); }
.craft-list dt { color: rgba(255,255,255,.56); font-size: .72rem; font-weight: 700; text-transform: uppercase; }
.craft-list dd { margin: 0; color: #fff; font-size: .9rem; }
.craft__copy .text-link { color: #fff; }

/* Gallery ------------------------------------------------------------- */

.gallery-section { background: var(--paper); }
.story-gallery { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 18px; }
.story-gallery figure { position: relative; overflow: hidden; margin: 0; background: var(--cream-deep); }
.story-gallery figure:first-child { grid-row: span 2; }
.story-gallery figure:last-child { grid-column: span 2; }
.story-gallery img { width: 100%; height: 100%; min-height: 275px; object-fit: cover; transition: transform .65s var(--ease); }
.story-gallery figure:first-child img { min-height: 568px; }
.story-gallery figure:hover img { transform: scale(1.025); }
.story-gallery figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  padding: 34px 18px 16px;
  color: #fff;
  background: linear-gradient(transparent, rgba(18,31,27,.68));
}
.story-gallery figcaption span { font-family: var(--serif); font-size: 1.18rem; font-style: italic; }
.story-gallery figcaption small { font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }

/* FAQ ----------------------------------------------------------------- */

.faq-section { background: var(--cream); }
.faq-section__grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(60px, 10vw, 150px); align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro h2 { margin-bottom: 26px; }
.faq-intro > p:not(.eyebrow) { max-width: 380px; color: var(--ink-soft); }
.accordion { border-top: 1px solid var(--ink); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { position: relative; display: flex; min-height: 86px; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 4px; font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 1.65rem); line-height: 1.2; list-style: none; cursor: pointer; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { position: relative; flex: 0 0 auto; width: 24px; height: 24px; }
.accordion summary span::before, .accordion summary span::after { position: absolute; top: 11px; right: 2px; left: 2px; height: 1px; background: currentColor; content: ""; transition: transform .25s ease; }
.accordion summary span::after { transform: rotate(90deg); }
.accordion details[open] summary span::after { transform: rotate(0); }
.accordion details p { max-width: 680px; padding: 0 55px 26px 4px; color: var(--ink-soft); }

/* Final CTA ----------------------------------------------------------- */

.final-cta { position: relative; overflow: hidden; color: var(--paper); background: var(--terracotta); }
.final-cta::before, .final-cta::after { position: absolute; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; content: ""; }
.final-cta::before { top: -240px; left: -180px; width: 520px; height: 520px; }
.final-cta::after { right: -120px; bottom: -260px; width: 600px; height: 600px; }
.final-cta__inner { position: relative; z-index: 1; min-height: 620px; padding: 100px 0 80px; text-align: center; }
.final-cta__inner .eyebrow { justify-content: center; }
.final-cta h2 { margin: 0 0 38px; color: var(--paper); }
.final-cta h2 em { color: var(--mustard); }
.final-cta__flags { display: flex; justify-content: center; margin-top: 70px; }
.final-cta__flags i {
  display: flex;
  width: 68px;
  aspect-ratio: .75 / 1;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15px;
  color: var(--forest-deep);
  background: var(--cream);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: normal;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.final-cta__flags i:nth-child(2) { background: var(--mustard); transform: translateY(5px) rotate(1deg); }
.final-cta__flags i:nth-child(3) { color: #fff; background: var(--forest); transform: translateY(1px) rotate(-1deg); }
.final-cta__flags i:nth-child(4) { background: var(--sage-pale); transform: translateY(4px); }

/* Footer -------------------------------------------------------------- */

.site-footer { padding: 82px 0 22px; color: #e8ebe3; background: #142b24; }
.footer-top { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 50px; padding-bottom: 70px; }
.brand--footer { color: #fff; }
.brand--footer .brand__mark { color: var(--forest-deep); background: var(--mustard); }
.footer-brand p { margin: 24px 0 0; color: rgba(255,255,255,.55); font-family: var(--serif); font-size: 1.1rem; font-style: italic; line-height: 1.5; }
.footer-column { display: grid; align-content: start; gap: 10px; }
.footer-column h2 { margin: 0 0 16px; color: #fff; font-family: var(--sans); font-size: .69rem; font-weight: 700; letter-spacing: .1em; line-height: 1.2; text-transform: uppercase; }
.footer-column a, .footer-column span { color: rgba(255,255,255,.62); font-size: .83rem; }
.footer-column a { transition: color .2s ease, transform .2s ease; }
.footer-column a:hover { color: var(--mustard); transform: translateX(2px); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 19px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.50); font-size: .68rem; letter-spacing: .05em; text-transform: uppercase; }
.footer-bottom div { display: flex; gap: 28px; }
.footer-bottom a:hover { color: #fff; }

/* Shared inner-page scaffolding -------------------------------------- */

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(75px, 10vw, 135px) 0 clamp(65px, 8vw, 105px);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.page-hero::after { position: absolute; top: -220px; right: -130px; width: 480px; height: 480px; border-radius: 50%; background: var(--mustard); content: ""; opacity: .38; }
.page-hero__inner { position: relative; z-index: 1; max-width: 940px; }
.page-hero h1 { margin: 0 0 25px; font-size: clamp(3.7rem, 7vw, 7rem); }
.page-hero p:not(.eyebrow) { max-width: 680px; margin: 0; color: var(--ink-soft); font-size: 1.15rem; }
.page-content { background: var(--paper); }
.content-narrow { width: min(calc(100% - 48px), 820px); margin-inline: auto; }
.prose { color: var(--ink-soft); font-size: 1.02rem; }
.prose h2 { margin: 2.3em 0 .6em; color: var(--ink); font-size: clamp(2rem, 4vw, 3rem); }
.prose h3 { margin: 1.8em 0 .55em; color: var(--ink); font-size: 1.45rem; }
.prose a { color: var(--terracotta-dark); border-bottom: 1px solid; }
.prose ul { padding-left: 1.25rem; }
.prose li { margin-bottom: .5rem; }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.info-card { padding: 32px; border: 1px solid var(--line); background: var(--cream); }
.info-card h2, .info-card h3 { margin-bottom: 14px; font-size: 1.6rem; }
.info-card p:last-child { margin-bottom: 0; color: var(--ink-soft); }
.page-cta { padding: 70px; color: #fff; background: var(--forest); text-align: center; }
.page-cta h2 { margin-bottom: 20px; color: #fff; }
.page-cta p { max-width: 600px; margin: 0 auto 28px; color: rgba(255,255,255,.7); }

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.form-field { display: grid; gap: 8px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: .78rem; font-weight: 700; }
.form-field input, .form-field textarea, .form-field select,
.name-input {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  outline: 0;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field textarea { min-height: 150px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus, .name-input:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(36,72,61,.1); }
.form-help { margin: 0; color: var(--ink-soft); font-size: .72rem; }

/* Inner pages built on the shared system ----------------------------- */

.page-head {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 10vw, 130px) 0 clamp(68px, 8vw, 105px);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.page-head::before {
  position: absolute;
  top: -280px;
  right: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: var(--mustard);
  content: "";
  opacity: .34;
}
.page-head::after {
  position: absolute;
  top: 30px;
  right: 12vw;
  width: 74px;
  height: 98px;
  background: var(--terracotta);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  opacity: .84;
  transform: rotate(12deg);
}
.page-head .container { position: relative; z-index: 1; }
.page-head h1 { margin: 0 0 24px; font-size: clamp(3.8rem, 7vw, 6.8rem); }
.page-head p { max-width: 690px; margin-bottom: 0; color: var(--ink-soft); font-size: clamp(1.02rem, 1.5vw, 1.2rem); }
.script {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--terracotta);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.script::before { width: 28px; height: 1px; background: currentColor; content: ""; }
.lead { color: var(--ink); font-family: var(--serif); font-size: clamp(1.25rem, 2.2vw, 1.65rem); line-height: 1.45; }
.text-center { text-align: center; }
.text-center .script, .text-center .eyebrow { justify-content: center; }
.section--alt { background: var(--paper); }
.section--soft { background: var(--sage-pale); }
.section--soft h2 { margin-bottom: 20px; }
.section--soft p { color: var(--ink-soft); }

.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { border: 1px solid var(--line); background: var(--paper); }
.value-grid, .process-list { margin-top: 48px; }
.value-card { position: relative; overflow: hidden; min-height: 285px; padding: 36px; }
.value-card::after { position: absolute; right: -35px; bottom: -52px; width: 145px; height: 145px; border: 1px solid var(--line); border-radius: 50%; content: ""; }
.value-card .icon { display: grid; width: 50px; height: 50px; place-items: center; margin-bottom: 48px; border-radius: 50%; color: var(--paper); background: var(--forest); font-size: 1.25rem; }
.value-card h3 { margin-bottom: 13px; }
.value-card p { margin-bottom: 0; color: var(--ink-soft); }
.process-list { padding: 0; list-style: none; }
.process-list .step { position: relative; min-height: 265px; padding: 36px; border-top: 1px solid var(--ink); background: transparent; }
.process-list .num { display: grid; width: 42px; height: 42px; place-items: center; margin-bottom: 42px; border-radius: 50%; color: #fff; background: var(--terracotta); font-size: .75rem; font-weight: 700; }
.process-list h3 { margin-bottom: 14px; }
.process-list p { margin-bottom: 0; color: var(--ink-soft); }

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .025em;
  line-height: 1;
  transition: transform .25s var(--ease), color .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn--lg { min-height: 56px; padding-inline: 28px; }
.btn--block { width: 100%; }
.btn--primary { color: #fff; background: var(--terracotta); box-shadow: 0 12px 28px rgba(129,59,42,.18); }
.btn--primary:hover { background: var(--terracotta-dark); }
.btn--outline { border-color: var(--ink); background: transparent; }
.btn--outline:hover { color: #fff; background: var(--ink); }
.button-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 30px; }

.contact-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 9vw, 120px); align-items: start; }
.contact-intro { position: sticky; top: 120px; padding-top: 8px; }
.contact-intro h2 { margin-bottom: 24px; font-size: clamp(2.5rem, 4.5vw, 4rem); }
.contact-intro > p { color: var(--ink-soft); }
.contact-form { display: grid; gap: 20px; padding: clamp(28px, 5vw, 52px); box-shadow: 0 24px 60px rgba(30,43,38,.08); }
.opt-title { font-size: .78rem; font-weight: 700; }
.contact-form textarea.name-input { min-height: 160px; resize: vertical; }
.small-print, .form-status { color: var(--ink-soft); font-size: .76rem; }
.form-status { margin: 0; padding-top: 4px; border-top: 1px solid var(--line); }
.form-status a, .small-print a { color: var(--terracotta-dark); }
.form-status a { text-decoration: underline; text-underline-offset: .15em; }
.faq-list { display: grid; gap: 12px; margin-top: 42px; }
.faq-item { padding: 0 24px; }
.faq-item summary { position: relative; padding: 24px 42px 24px 0; font-family: var(--serif); font-size: 1.3rem; line-height: 1.2; list-style: none; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before, .faq-item summary::after { position: absolute; top: 50%; right: 2px; width: 20px; height: 1px; background: var(--ink); content: ""; transition: transform .25s ease; }
.faq-item summary::after { transform: rotate(90deg); }
.faq-item[open] summary::after { transform: rotate(0); }
.faq-item > p { padding: 0 42px 23px 0; color: var(--ink-soft); }

.policy-layout { display: grid; grid-template-columns: 330px minmax(0, 1fr); gap: clamp(55px, 8vw, 105px); align-items: start; }
.policy-summary { position: sticky; top: 110px; padding: 30px; background: var(--cream); }
.policy-summary h2 { margin-bottom: 22px; font-size: 1.8rem; }
.policy-summary > p { color: var(--ink-soft); }
.policy-summary .btn { margin-top: 15px; }
.policy-content { max-width: 760px; }
.policy-content > section:first-child h2 { margin-top: 0; }
.policy-updated { margin-top: 35px; padding-top: 18px; border-top: 1px solid var(--line); font-size: .78rem; font-weight: 700; }
.privacy-facts { margin: 0; }
.privacy-facts dt { margin-top: 17px; color: var(--ink); font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.privacy-facts dd { margin: 4px 0 0; color: var(--ink-soft); font-size: .84rem; line-height: 1.5; }
.check-list { display: grid; gap: 10px; margin: 20px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; }
.check-list li::before { position: absolute; top: .15em; left: 0; color: var(--terracotta); content: "✓"; font-weight: 700; }

.not-found { min-height: 610px; display: grid; place-items: center; background: var(--cream); }
.not-found h1 { margin-bottom: 22px; font-size: clamp(3rem, 7vw, 5.5rem); }
.error-code { margin-bottom: -14px; color: rgba(170,81,54,.12); font-family: var(--serif); font-size: clamp(7rem, 18vw, 13rem); font-weight: 600; line-height: .75; }
.helpful-links { display: grid; gap: 0; margin: 35px 0 0; padding: 10px 30px; list-style: none; }
.helpful-links li { border-bottom: 1px solid var(--line); }
.helpful-links li:last-child { border-bottom: 0; }
.helpful-links .text-link { display: flex; justify-content: space-between; padding: 18px 0; border: 0; }

/* Reveal -------------------------------------------------------------- */

[data-reveal] { opacity: 0; transform: translateY(25px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
[data-reveal].is-revealed { opacity: 1; transform: translateY(0); }
.mood-grid [data-reveal]:nth-child(2), .process-grid [data-reveal]:nth-child(2), .story-gallery [data-reveal]:nth-child(2) { transition-delay: .08s; }
.mood-grid [data-reveal]:nth-child(3), .process-grid [data-reveal]:nth-child(3), .story-gallery [data-reveal]:nth-child(3) { transition-delay: .16s; }

/* Responsive ---------------------------------------------------------- */

@media (max-width: 1100px) {
  :root { --header-height: 72px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .hero__grid { grid-template-columns: .87fr 1.13fr; gap: 45px; }
  .hero-note { left: -15px; }
  .hero-stamp { right: 5px; }
  .craft__grid { gap: 70px; }
  .craft__images { min-height: 560px; }
  .footer-top { grid-template-columns: 1.3fr repeat(3, 1fr); gap: 28px; }
}

@media (max-width: 860px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .announcement__dot--wide, .announcement__inner a { display: none; }
  .hero__grid { min-height: auto; grid-template-columns: 1fr; padding-block: 65px 90px; }
  .hero__copy { max-width: 690px; padding-left: 0; }
  .hero__visual { max-width: 720px; margin-inline: auto; padding-right: 26px; }
  .hero__sun { width: 90vw; }
  .section-heading--split { grid-template-columns: 1fr; gap: 24px; }
  .section-heading--split > p { margin-left: 0; }
  .mood-grid { gap: 52px 20px; }
  .try-it__grid { min-height: 640px; grid-template-columns: 1fr; gap: 15px; padding-block: 70px; }
  .mini-preview { min-height: 260px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { min-height: 0; padding: 32px 20px 38px 115px; border-right: 0; }
  .process-grid__icon { position: absolute; top: 45px; left: 22px; width: 60px; height: 60px; margin: 0; }
  .craft__grid { grid-template-columns: 1fr; }
  .craft__images { min-height: 640px; }
  .story-gallery { grid-template-columns: 1fr 1fr; }
  .story-gallery figure:first-child { grid-column: span 2; grid-row: auto; }
  .story-gallery figure:first-child img { min-height: 430px; }
  .story-gallery figure:last-child { grid-column: span 2; }
  .faq-section__grid { grid-template-columns: 1fr; gap: 50px; }
  .faq-intro { position: static; }
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-column:last-child { grid-column: 2 / -1; }
  .info-grid { grid-template-columns: 1fr; }
  .contact-layout, .policy-layout { grid-template-columns: 1fr; }
  .contact-intro, .policy-summary { position: static; }
  .policy-summary { max-width: 650px; }
}

@media (max-width: 620px) {
  :root { --header-height: 66px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .announcement { font-size: .62rem; letter-spacing: .045em; }
  .announcement__inner { min-height: 31px; gap: 10px; }
  .brand__mark { width: 31px; height: 35px; font-size: 1.2rem; }
  .brand__word { font-size: 1.6rem; }
  .header-cart > span:not(.cart-count) { display: none; }
  .header-cart { width: 42px; height: 42px; justify-content: center; padding: 0; border-radius: 50%; }
  .header-cart .cart-count { position: absolute; top: 7px; right: 54px; min-width: 17px; height: 17px; font-size: .56rem; }
  h1 { font-size: clamp(3.55rem, 17vw, 5rem); }
  h2 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .hero__grid { gap: 48px; padding-block: 55px 72px; }
  .hero__copy h1 { margin-bottom: 24px; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 15px; }
  .hero__facts { gap: 22px; margin-top: 38px; }
  .hero__facts strong { font-size: 1rem; }
  .hero__facts span { font-size: .65rem; }
  .hero__visual { padding: 5px 12px 60px 0; }
  .hero-photo::before { inset: 10px -10px -10px 10px; }
  .hero-note { bottom: 10px; left: 3px; width: 205px; }
  .hero-stamp { right: 0; bottom: 0; width: 100px; height: 100px; }
  .hero-photo figcaption { display: none; }
  .trust-line__track { min-height: 64px; gap: 25px; padding-inline: 25px; }
  .mood-grid { grid-template-columns: 1fr; gap: 44px; }
  .mood-card--large { grid-row: auto; }
  .mood-card--large .mood-card__image img, .mood-card__image img { aspect-ratio: 1.12 / 1; }
  .image-arrow { opacity: 1; transform: none; }
  .mood-card__meta { gap: 10px; }
  .color-dots i { width: 18px; height: 18px; }
  .name-demo-input { align-items: stretch; flex-direction: column; gap: 9px; padding: 12px; border-radius: 16px; }
  .name-demo-input input { min-height: 45px; padding-inline: 8px; }
  .name-demo-input a { display: flex; justify-content: space-between; }
  .mini-preview { min-height: 210px; padding-inline: 0; }
  .mini-preview__flag { padding-top: 14px; font-size: clamp(1rem, 7vw, 1.8rem); }
  .process-grid li { padding: 105px 10px 38px; }
  .process-grid__icon { top: 30px; left: 8px; }
  .process-grid__number { top: 32px; }
  .craft__images { min-height: 440px; }
  .craft__image--main { right: 4%; bottom: 9%; }
  .craft__image--small { width: 48%; border-width: 7px; }
  .craft__label { top: -18px; left: -8px; width: 94px; height: 94px; font-size: .86rem; }
  .craft-list div { grid-template-columns: 94px 1fr; gap: 12px; }
  .story-gallery { grid-template-columns: 1fr; }
  .story-gallery figure:first-child, .story-gallery figure:last-child { grid-column: auto; }
  .story-gallery figure:first-child img, .story-gallery img { min-height: 330px; }
  .accordion summary { min-height: 76px; font-size: 1.22rem; }
  .final-cta__inner { min-height: 560px; padding-top: 82px; }
  .final-cta__flags i { width: 56px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; padding-bottom: 18px; }
  .footer-column:last-child { grid-column: span 2; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom > span:last-child { display: none; }
  .page-hero { padding: 66px 0; }
  .page-hero h1 { font-size: clamp(3.2rem, 16vw, 5rem); }
  .page-cta { padding: 48px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field--full { grid-column: auto; }
  .page-head::after { right: 4vw; width: 48px; height: 66px; }
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
  .value-card, .process-list .step { min-height: 0; }
  .button-row { align-items: stretch; flex-direction: column; }
  .button-row .btn { width: 100%; }
  .contact-form { padding: 24px 18px; }
  .policy-summary { padding: 24px; }
  .faq-item { padding-inline: 18px; }
  .not-found { min-height: 520px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
