/* ============================================================
   Twice as Sweet Creations — minimal-luxury link-in-bio
   ============================================================ */

:root {
  /* Palette — ivory / charcoal / warm grey, color lives in the photos */
  --bg:        #FBF8F4;
  --bg-2:      #F4EEE6;
  --surface:   #FFFFFF;
  --ink:       #1C1815;
  --ink-soft:  #4A433C;
  --muted:     #6B635A;
  --hair:      #E7DFD3;
  --accent:    #C2466F;   /* deep rose — used sparingly */
  --accent-ink:#A6325A;

  --maxw: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(28,24,21,.04), 0 8px 24px rgba(28,24,21,.06);
  --shadow-md: 0 4px 12px rgba(28,24,21,.06), 0 24px 60px rgba(28,24,21,.10);

  --ease: cubic-bezier(.22,.61,.36,1);
  --dur: .55s;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: clamp(1rem, .96rem + .25vw, 1.0625rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; }
em { font-style: italic; }

.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 100;
  background: var(--ink); color: var(--bg); padding: .6rem 1rem; border-radius: 8px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(251,248,244,.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--hair);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(.9rem,2vw,1.25rem) var(--gutter);
  display: flex; align-items: center; gap: 1.5rem;
}
.nav__brand {
  font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; letter-spacing: -.02em;
  line-height: 1; display: inline-flex; align-items: baseline; gap: .28em;
}
.nav__brand span { font-family: var(--font-body); font-weight: 400; font-size: .72em; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.nav__links { margin-left: auto; display: flex; gap: clamp(1.2rem, 3vw, 2.4rem); }
.nav__links a { font-size: .9rem; color: var(--ink-soft); position: relative; padding: .25rem 0; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0; background: var(--accent);
  transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: .85rem; --pad-x: 1.4rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 500; font-size: .95rem; cursor: pointer;
  padding: var(--pad-y) var(--pad-x); border-radius: 999px; border: 1.5px solid transparent;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
  min-height: 44px; white-space: nowrap;
}
.btn__icon { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.btn--primary { background: var(--ink); color: var(--bg); }
.btn--primary:hover { background: #000; box-shadow: var(--shadow-md); }
.btn--primary:hover .btn__icon { transform: translateX(3px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--hair); }
.btn--ghost:hover { border-color: var(--ink); background: var(--surface); }
.btn--small { margin-left: auto; --pad-y: .55rem; --pad-x: 1.05rem; font-size: .85rem; background: var(--ink); color: var(--bg); }
.nav__links + .btn--small { margin-left: 0; }
.btn--small:hover { background:#000; }

/* ---------- Layout helpers ---------- */
section { padding-block: clamp(4rem, 9vw, 8rem); }
.section-head { max-width: 640px; margin: 0 auto clamp(2.5rem,5vw,4rem); text-align: center; }
.section-head__kicker, .eyebrow {
  display: inline-block; font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent-ink); font-weight: 600; margin-bottom: 1rem;
}
.section-head__title { font-size: clamp(1.9rem, 1.2rem + 3vw, 3rem); }
.section-head__lede { margin-top: 1rem; color: var(--muted); font-size: 1.05rem; }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(7rem, 14vw, 11rem); padding-bottom: clamp(3rem,7vw,6rem); }
.hero__grid {
  max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter);
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.hero__title { font-size: clamp(2.7rem, 1.6rem + 5.2vw, 5.2rem); letter-spacing: -.02em; }
.hero__title em { color: var(--accent-ink); }
.hero__lede { margin-top: 1.5rem; max-width: 38ch; color: var(--ink-soft); font-size: 1.1rem; }
.hero__cta { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: .9rem; }

.hero__media { position: relative; }
.hero__frame {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  background: var(--bg-2); aspect-ratio: 4 / 5;
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__tag {
  position: absolute; z-index: 4; left: -14px; bottom: 26px;
  background: var(--surface); color: var(--ink); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  padding: .6rem 1rem; border-radius: 999px; box-shadow: var(--shadow-sm); border: 1px solid var(--hair);
}

/* ---------- Manifesto ---------- */
.manifesto { text-align: center; background: var(--bg-2); }
.manifesto__line { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: clamp(1.8rem, 1.1rem + 3.5vw, 3.4rem); color: var(--ink); max-width: 18ch; margin-inline: auto; line-height: 1.2; }
.manifesto__sub { margin-top: 1rem; color: var(--muted); letter-spacing: .04em; }

/* ---------- Gallery ---------- */
.gallery {
  max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.2vw, 1.75rem);
}
.card { display: block; }
.card--wide { grid-column: span 1; }
.card__img {
  position: relative; overflow: hidden; border-radius: var(--radius); background: var(--bg-2);
  aspect-ratio: 4/5; box-shadow: var(--shadow-sm);
}
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.card:hover .card__img img { transform: scale(1.05); }
.card__img::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,24,21,.34), transparent 45%);
  opacity: 0; transition: opacity .4s var(--ease);
}
.card:hover .card__img::after { opacity: 1; }
.card__meta { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: .9rem .2rem 0; }
.card__name { font-family: var(--font-display); font-size: 1.02rem; font-weight: 500; }
.card__cta { font-size: .8rem; letter-spacing: .04em; color: var(--accent-ink); position: relative; flex: none; }
.card__cta::after { content: "→"; margin-left: .35em; display: inline-block; transition: transform .3s var(--ease); }
.card:hover .card__cta::after { transform: translateX(4px); }

/* ---------- Process ---------- */
.steps {
  max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); list-style: none;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 3vw, 2.5rem);
}
.step { padding: clamp(1.6rem,2.5vw,2.4rem); background: var(--surface); border: 1px solid var(--hair); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step__num { font-family: var(--font-display); font-size: 2.2rem; color: var(--accent); display: block; line-height: 1; }
.step__title { font-size: 1.3rem; margin-top: 1rem; }
.step__text { margin-top: .5rem; color: var(--muted); font-size: .98rem; }

/* ---------- About ---------- */
.about { background: var(--bg-2); }
.about__inner {
  max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter);
  display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem,5vw,5rem); align-items: center;
}
.about__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/5; }
.about__media img { width: 100%; height: 100%; object-fit: cover; }
.about__title { font-size: clamp(1.8rem, 1.1rem + 3vw, 2.8rem); margin: .5rem 0 1.25rem; }
.about__copy p + p { margin-top: 1rem; color: var(--ink-soft); }
.about__copy p:first-of-type { color: var(--ink-soft); }

/* ---------- Links ---------- */
.links__inner { max-width: 640px; margin: 0 auto; padding-inline: var(--gutter); text-align: center; }
.links__title { font-size: clamp(1.9rem, 1.2rem + 3vw, 3rem); }
.links__lede { color: var(--muted); margin-top: .75rem; }
.links__list { margin-top: 2.5rem; display: grid; gap: 1rem; }
.linkbtn {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.5rem; background: var(--surface); border: 1px solid var(--hair); border-radius: 999px;
  font-weight: 500; box-shadow: var(--shadow-sm); min-height: 60px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.linkbtn__label { display: inline-flex; align-items: center; gap: .75rem; }
.linkbtn__label svg { width: 20px; height: 20px; color: var(--accent-ink); }
.linkbtn__arrow { width: 20px; height: 20px; color: var(--muted); transition: transform .3s var(--ease); }
.linkbtn:hover { transform: translateY(-3px); border-color: var(--ink); box-shadow: var(--shadow-md); }
.linkbtn:hover .linkbtn__arrow { transform: translateX(4px); color: var(--ink); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #EAE3D9; padding-block: clamp(3rem,6vw,5rem); }
.footer__inner { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); text-align: center; display: grid; gap: 1rem; justify-items: center; }
.footer__brand { color: #fff; }
.footer__brand span { color: #B9AE9E; }
.footer__tag { color: #B9AE9E; font-size: .95rem; }
.footer__social { display: flex; gap: 1rem; }
.footer__social a { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: #EAE3D9; transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease); }
.footer__social a svg { width: 20px; height: 20px; }
.footer__social a:hover { background: #fff; color: var(--ink); border-color: #fff; }
.footer__copy { color: #8C8273; font-size: .82rem; margin-top: .5rem; }

/* ============================================================
   Custom order experience (2026-09-17)
   ============================================================ */

/* ---------- Extra buttons ---------- */
.btn--block { width: 100%; }
.btn--tiny { --pad-y: .5rem; --pad-x: 1rem; font-size: .85rem; min-height: 40px; }
.btn--glow { position: relative; isolation: isolate; }
.btn--glow::after {
  content: ""; position: absolute; inset: -4px; border-radius: inherit; z-index: -1;
  border: 2px solid var(--accent); opacity: 0; animation: glow 2.6s var(--ease) infinite 1.2s;
}
@keyframes glow {
  0% { opacity: .55; transform: scale(.96); }
  70%, 100% { opacity: 0; transform: scale(1.12); }
}
.about__cta { margin-top: 1.75rem; }

/* ---------- Price ---------- */
.price { margin-top: 1.6rem; display: flex; align-items: center; gap: 1rem; max-width: 30rem; }
.price__amount {
  font-family: var(--font-display); font-size: clamp(2.4rem, 1.8rem + 2vw, 3.2rem); line-height: 1; color: var(--accent-ink);
  padding: .35rem 1rem .5rem; background: var(--surface); border: 1px solid var(--hair); border-radius: 18px; box-shadow: var(--shadow-sm);
  flex: none;
}
.price__note { color: var(--muted); font-size: .92rem; line-height: 1.45; }

/* ---------- Hero rotator (all creations, one by one) ---------- */
.hero__frame[data-hero-rotator] { position: relative; }
.hero__frame[data-hero-rotator] img {
  position: absolute; inset: 0; opacity: 0; z-index: 0; transform: scale(1.04);
}
/* previous stays fully visible underneath while the next one fades in: no double-exposure */
.hero__frame[data-hero-rotator] img.is-prev { opacity: 1; z-index: 1; transform: scale(1); }
.hero__frame[data-hero-rotator] img.is-active {
  opacity: 1; z-index: 2; transform: scale(1);
  transition: opacity 1s var(--ease), transform 5.2s cubic-bezier(.2,.6,.3,1);
}
.hero__caption {
  position: absolute; z-index: 3; right: 14px; top: 14px; display: grid; gap: .1rem; text-align: right;
  background: rgba(255,255,255,.86); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--hair); border-radius: 14px; padding: .45rem .8rem; box-shadow: var(--shadow-sm);
}
.hero__caption span { font-size: .66rem; letter-spacing: .18em; color: var(--muted); }
.hero__caption strong { font-family: var(--font-display); font-weight: 500; font-size: .98rem; line-height: 1.2; }
.hero__caption.is-changing { animation: capfade .7s var(--ease); }
@keyframes capfade { 0% { opacity: 0; transform: translateY(-6px); } 100% { opacity: 1; transform: none; } }
.hero__dots { display: flex; justify-content: center; gap: 6px; margin-top: 1.1rem; }
.hero__dots span { width: 6px; height: 6px; border-radius: 999px; background: var(--hair); transition: width .5s var(--ease), background .5s var(--ease); }
.hero__dots span.is-active { width: 22px; background: var(--accent); }

/* ---------- Order builder ---------- */
.order { scroll-margin-top: 4rem; }
.builder {
  max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter);
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start;
}
.builder__form {
  background: var(--surface); border: 1px solid var(--hair); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  padding: clamp(1.4rem, 3vw, 2.5rem); display: grid; gap: 2rem;
}
.builder__progress { list-style: none; padding: 0; display: flex; align-items: center; gap: .5rem; }
.builder__progress li {
  flex: 1; display: flex; align-items: center; gap: .55rem; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted);
  position: relative; padding-bottom: .7rem;
}
.builder__progress li::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; border-radius: 3px; background: var(--hair);
}
.builder__progress li::before {
  content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 0; border-radius: 3px; background: var(--accent); z-index: 1;
  transition: width .6s var(--ease);
}
.builder__progress li span {
  width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-weight: 600; font-size: .78rem;
  background: var(--bg-2); color: var(--ink-soft); transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.builder__progress li.is-done { color: var(--ink); }
.builder__progress li.is-done::before { width: 100%; }
.builder__progress li.is-done span { background: var(--accent); color: #fff; transform: scale(1.08); }

.field { border: 0; padding: 0; min-width: 0; }
.field__label { display: flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; margin-bottom: 1rem; padding: 0; }
.field__num {
  width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; flex: none;
  font-family: var(--font-body); font-size: .8rem; font-weight: 600; background: var(--ink); color: var(--bg);
}
.field.is-missing { animation: shake .45s var(--ease); }
.field.is-missing .field__label { color: var(--accent-ink); }
@keyframes shake { 20%, 60% { transform: translateX(-6px); } 40%, 80% { transform: translateX(6px); } }

/* Swatches */
.swatches { display: flex; flex-wrap: wrap; gap: .9rem 1.1rem; }
.swatch { display: grid; justify-items: center; gap: .45rem; cursor: pointer; }
.swatch input, .chip input { position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none; }
.swatch__dot {
  width: 48px; height: 48px; border-radius: 50%; background: var(--c);
  box-shadow: inset 0 0 0 3px #fff, 0 0 0 1px var(--hair); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.swatch:hover .swatch__dot { transform: translateY(-2px); }
.swatch input:checked + .swatch__dot { box-shadow: inset 0 0 0 3px #fff, 0 0 0 2.5px var(--ink); transform: scale(1.1); }
.swatch input:focus-visible + .swatch__dot { outline: 2px solid var(--accent); outline-offset: 4px; }
.swatch__name { font-size: .78rem; color: var(--muted); }
.swatch input:checked ~ .swatch__name { color: var(--ink); font-weight: 600; }

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip { cursor: pointer; }
.chip span {
  display: inline-flex; align-items: center; min-height: 44px; padding: .55rem 1.05rem; border-radius: 999px;
  border: 1.5px solid var(--hair); background: var(--bg); font-size: .92rem;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.chip:hover span { border-color: var(--ink); }
.chip input:checked + span { background: var(--ink); color: var(--bg); border-color: var(--ink); transform: translateY(-1px); }
.chip input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 3px; }

/* Name input */
.field__input {
  width: 100%; font: inherit; font-size: 1.15rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .95rem 1.1rem; border-radius: var(--radius); border: 1.5px solid var(--hair); background: var(--bg); color: var(--ink);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.field__input::placeholder { letter-spacing: .04em; text-transform: none; color: #A39A8F; }
.field__input:focus { outline: none; border-color: var(--ink); background: var(--surface); box-shadow: 0 0 0 4px rgba(194,70,111,.12); }
.field__hint { margin-top: .5rem; font-size: .85rem; color: var(--muted); }

/* Summary */
.summary {
  position: sticky; top: 5.5rem; background: var(--surface); border: 1px solid var(--hair); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); overflow: hidden;
}
.summary__preview { position: relative; aspect-ratio: 4/3; background: var(--bg-2); overflow: hidden; container-type: inline-size; }
.summary__preview img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: opacity .35s var(--ease), transform .6s var(--ease); }
.summary__preview img.is-swapping { opacity: 0; transform: scale(1.04); }
.summary__letters {
  position: absolute; left: 50%; top: 57%; transform: translate(-50%, -50%);
  font-family: var(--font-display); font-weight: 600; line-height: 1; white-space: nowrap; letter-spacing: .08em;
  font-size: min(10cqi, calc(78cqi / (var(--len, 4) + 1.5)));
  color: var(--letter, #D81B7F);
  text-shadow: 0 1px 0 rgba(255,255,255,.55), 0 0 1px rgba(255,255,255,.9), 0 3px 8px rgba(28,24,21,.18);
  animation: popcenter .45s var(--ease);
}
.summary__body { padding: 1.4rem clamp(1.2rem, 2.5vw, 1.8rem) 1.6rem; }
.summary__kicker { font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--accent-ink); font-weight: 600; }
.summary__list { list-style: none; padding: 0; margin: .9rem 0 0; display: grid; gap: .55rem; }
.summary__list li { display: flex; justify-content: space-between; gap: 1rem; font-size: .95rem; padding-bottom: .55rem; border-bottom: 1px dashed var(--hair); }
.summary__list span { color: var(--muted); }
.summary__list strong { font-weight: 600; text-align: right; }
.summary__list strong.is-updated { animation: pop .45s var(--ease); color: var(--accent-ink); }
.summary__total { display: flex; justify-content: space-between; align-items: baseline; margin: 1rem 0 1.2rem; }
.summary__total span { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.summary__total strong { font-family: var(--font-display); font-size: 2rem; font-weight: 500; }
.summary__help { margin-top: .8rem; font-size: .85rem; color: var(--muted); text-align: center; }
@keyframes pop { 0% { transform: scale(.85); opacity: 0; } 60% { transform: scale(1.06); opacity: 1; } 100% { transform: scale(1); } }
@keyframes popcenter { 0% { transform: translate(-50%, -50%) scale(.85); opacity: 0; } 60% { transform: translate(-50%, -50%) scale(1.06); opacity: 1; } 100% { transform: translate(-50%, -50%) scale(1); } }

/* ---------- Creations slider ---------- */
.creations { background: var(--bg-2); overflow: hidden; }
.slider { position: relative; max-width: calc(var(--maxw) + 2 * var(--gutter)); margin: 0 auto; }
.slider__track {
  display: flex; gap: clamp(1rem, 2vw, 1.5rem); overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: .5rem var(--gutter) 1.5rem; scrollbar-width: none; -webkit-overflow-scrolling: touch; overscroll-behavior-x: contain;
}
.slider__track::-webkit-scrollbar { display: none; }
.slider__track:focus-visible { outline-offset: -2px; }
.slide { flex: 0 0 clamp(240px, 27vw, 330px); scroll-snap-align: start; scroll-margin-inline: var(--gutter); }
.slide__img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; background: var(--bg); box-shadow: var(--shadow-sm); }
.slide__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.slide:hover .slide__img img { transform: scale(1.05); }
.slide__meta { padding: .9rem .15rem 0; display: grid; gap: .35rem; }
.slide__name { font-size: 1.08rem; }
.slide__cta {
  justify-self: start; font: inherit; font-size: .85rem; color: var(--accent-ink); background: none; border: 0; padding: .25rem 0; cursor: pointer; min-height: 32px;
}
.slide__cta::after { content: "→"; margin-left: .35em; display: inline-block; transition: transform .3s var(--ease); }
.slide__cta:hover::after { transform: translateX(4px); }
.slider__arrow {
  position: absolute; top: 38%; z-index: 2; width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; cursor: pointer;
  background: var(--surface); color: var(--ink); border: 1px solid var(--hair); box-shadow: var(--shadow-md);
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.slider__arrow svg { width: 22px; height: 22px; }
.slider__arrow:hover { background: var(--ink); color: var(--bg); transform: scale(1.06); }
.slider__arrow--prev { left: max(.5rem, calc(var(--gutter) - 24px)); }
.slider__arrow--next { right: max(.5rem, calc(var(--gutter) - 24px)); }
.slider__bar { margin: .5rem auto 0; width: min(280px, 60%); height: 3px; border-radius: 3px; background: var(--hair); overflow: hidden; }
.slider__bar span { display: block; height: 100%; width: 20%; background: var(--accent); border-radius: 3px; transition: transform .3s var(--ease), width .3s var(--ease); }

/* ---------- Mobile order bar ---------- */
.orderbar {
  position: fixed; left: .75rem; right: .75rem; bottom: calc(.75rem + env(safe-area-inset-bottom, 0px)); z-index: 60;
  display: none; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .55rem .6rem .55rem 1.1rem; border-radius: 999px; background: rgba(255,255,255,.94);
  border: 1px solid var(--hair); box-shadow: var(--shadow-md); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transform: translateY(160%); transition: transform .5s var(--ease);
}
.orderbar.is-visible { transform: none; }
.orderbar__text { font-size: .92rem; color: var(--ink-soft); }
.orderbar__text strong { color: var(--ink); font-weight: 600; }

/* ---------- Payment badges (Stripe) ---------- */
.paybadges { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.paybadges svg { display: block; width: 58px; height: 35px; border-radius: 6px; }
.summary__pay .paybadges { justify-content: center; gap: .35rem; }
.summary__pay .paybadges svg, .paybadges--small svg { width: 42px; height: 25px; border-radius: 4px; box-shadow: 0 0 0 1px var(--hair); }
.lock { width: 15px; height: 15px; display: inline-block; vertical-align: -2px; margin-right: .25rem; }
.summary__pay { margin-top: 1.1rem; padding-top: 1rem; border-top: 1px dashed var(--hair); text-align: center; }
.summary__pay p { font-size: .8rem; color: var(--muted); margin-bottom: .6rem; }

/* ---------- Footer nav + bottom bar ---------- */
.footer { padding-bottom: 0; }
.footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem 1.3rem; margin-top: .4rem; }
.footer__nav a { color: #CFC6B8; font-size: .88rem; transition: color .2s var(--ease); }
.footer__nav a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer__bottom { margin-top: clamp(2.2rem, 4vw, 3rem); background: #13100E; border-top: 1px solid rgba(255,255,255,.06); }
.footer__bottom-inner {
  max-width: 1720px; margin: 0 auto; padding: 1.1rem clamp(1.25rem, 3vw, 2.75rem);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem 2rem; flex-wrap: wrap;
}
.footer__currency { display: inline-flex; align-items: center; gap: .55rem; margin: 0; color: #fff; font-size: .82rem; font-weight: 500; letter-spacing: .04em; white-space: nowrap; }
.footer__currency svg { width: 24px; height: 16px; border-radius: 2px; }
.footer__bottom .footer__copy { margin: 0; color: #A79D8F; font-size: .8rem; text-align: center; flex: 1 1 320px; }
.footer__bottom .footer__copy a { color: #CFC6B8; text-decoration: underline; text-underline-offset: 2px; }
.footer__bottom .footer__copy a:hover { color: #fff; }
.footer__secure { display: inline-block; color: #8C8273; margin-left: .35rem; white-space: nowrap; }
.footer__secure strong { color: #CFC6B8; font-weight: 600; }
.footer__bottom .paybadges { justify-content: flex-end; max-width: 560px; gap: .45rem; }
.footer__bottom .paybadges svg { width: 52px; height: 31px; }
@media (min-width: 1180px) {
  .footer__bottom-inner { flex-wrap: nowrap; }
  .footer__bottom .paybadges { flex-wrap: nowrap; max-width: none; gap: .38rem; flex: none; }
  .footer__bottom .paybadges svg { width: 46px; height: 28px; }
  .footer__bottom .footer__copy { flex: 1 1 auto; }
}

/* ---------- Agency credit ---------- */
.footer__credit { border-top: 1px solid rgba(255,255,255,.06); text-align: center; padding: .85rem var(--gutter) 1rem; }
.credit { display: inline-flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: .45rem; color: #8C8273; font-size: .76rem; letter-spacing: .02em; transition: color .25s var(--ease); }
.credit__mark { width: 20px; height: 20px; border-radius: 5px; flex: none; box-shadow: 0 0 0 1px rgba(46,196,222,.25); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.credit__brand { display: inline-flex; align-items: center; gap: .45rem; white-space: nowrap; }
.credit__name { color: #E6EEF1; font-weight: 600; letter-spacing: .03em; }
.credit__name em { font-style: normal; font-weight: 400; color: #2EC4DE; }
.credit:hover { color: #CFC6B8; }
.credit { font-size: .82rem; }
.credit__heart { display: inline-block; color: #E0457B; margin: 0 .1rem; }
.credit:hover .credit__mark { transform: rotate(-8deg) scale(1.08); box-shadow: 0 0 0 1px rgba(46,196,222,.6), 0 0 14px rgba(46,196,222,.35); }

/* ---------- Back to top ---------- */
.totop {
  position: fixed; right: clamp(.9rem, 2vw, 1.5rem); bottom: clamp(.9rem, 2vw, 1.5rem); z-index: 55;
  width: 52px; height: 52px; border-radius: 4px 4px 0 0; display: grid; place-items: center; align-content: center; gap: 1px;
  background: var(--surface); color: var(--ink); border: 1px solid var(--hair); box-shadow: var(--shadow-md);
  font-size: .72rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; line-height: 1;
  opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity .35s var(--ease), transform .35s var(--ease), background .2s var(--ease);
}
.totop svg { width: 18px; height: 18px; }
.totop.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.totop:hover { background: var(--bg-2); }

/* ---------- Legal page ---------- */
.legal { padding: clamp(7rem, 12vw, 9rem) var(--gutter) clamp(4rem, 8vw, 6rem); }
.legal__head { max-width: 760px; margin: 0 auto; text-align: center; }
.legal__title { font-size: clamp(2rem, 1.3rem + 3vw, 3.2rem); }
.legal__lede { margin-top: 1rem; color: var(--ink-soft); }
.legal__date { margin-top: .6rem; font-size: .85rem; color: var(--muted); }
.legal__toc { margin-top: 1.8rem; display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; }
.legal__toc a { padding: .5rem .95rem; border-radius: 999px; border: 1px solid var(--hair); background: var(--surface); font-size: .88rem; transition: border-color .2s var(--ease), background .2s var(--ease); }
.legal__toc a:hover { border-color: var(--ink); }
.legal__body { max-width: 760px; margin: clamp(2.5rem, 5vw, 3.5rem) auto 0; background: var(--surface); border: 1px solid var(--hair); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: clamp(1.5rem, 4vw, 3rem); }
.legal__body section { scroll-margin-top: 6rem; padding-block: 0; }
.legal__body section + section { margin-top: 2.6rem; padding-top: 2.6rem; border-top: 1px solid var(--hair); }
.legal__body h2 { font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem); margin-bottom: 1rem; }
.legal__body h3 { font-size: 1.12rem; margin: 1.5rem 0 .4rem; }
.legal__body p, .legal__body li { color: var(--ink-soft); font-size: 1rem; }
.legal__body ul { padding-left: 1.2rem; display: grid; gap: .6rem; margin-top: .6rem; }
.legal__body a:not(.btn) { color: var(--accent-ink); text-decoration: underline; text-underline-offset: 3px; }
.legal__contact { margin-top: 1.2rem; display: grid; gap: 1rem; justify-items: start; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 6rem; z-index: 70; max-width: min(92vw, 420px); text-align: center;
  background: var(--ink); color: var(--bg); padding: .8rem 1.2rem; border-radius: 14px; font-size: .92rem; box-shadow: var(--shadow-md);
  opacity: 0; transform: translate(-50%, 12px); pointer-events: none; transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Reveal animations ---------- */
/* Hidden state applies only when JS is active, so no-JS users always see content */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-reveal-delay="1"] { transition-delay: .09s; }
.reveal[data-reveal-delay="2"] { transition-delay: .18s; }
.reveal[data-reveal-delay="3"] { transition-delay: .27s; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__media { max-width: 460px; margin-inline: auto; width: 100%; }
  .about__inner { grid-template-columns: 1fr; }
  .about__media { max-width: 440px; margin-inline: auto; order: -1; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; max-width: 460px; }
  .builder { grid-template-columns: 1fr; max-width: 640px; }
  .summary { position: relative; top: auto; }
  .slider__arrow { display: none; }
}
@media (max-width: 760px) {
  .orderbar { display: flex; }
  .footer__bottom-inner { justify-content: center; text-align: center; }
  .footer__credit { padding-bottom: 6.5rem; }
  .footer__bottom .paybadges { justify-content: center; }
  .paybadges svg { width: 50px; height: 30px; }
  .totop { bottom: calc(5.2rem + env(safe-area-inset-bottom, 0px)); width: 46px; height: 46px; }
}
@media (max-width: 560px) {
  .nav__brand { white-space: nowrap; font-size: 1.05rem; }
  .nav .nav__brand span { display: none; }
  .nav__links + .btn--small { margin-left: auto; }
  .swatches { display: grid; grid-template-columns: repeat(5, 1fr); gap: .5rem; }
  .swatch__name { font-size: .7rem; text-align: center; line-height: 1.25; }
  .price { flex-direction: column; align-items: flex-start; gap: .6rem; }
  .swatch__dot { width: 44px; height: 44px; }
  .slide { flex-basis: 74vw; }
  .nav__links { display: none; }
  .btn--small { margin-left: auto; }
  .gallery { grid-template-columns: 1fr; max-width: 420px; }
  .card--wide { grid-column: auto; }
  .hero__title { font-size: clamp(2.6rem, 8vw, 3.4rem); }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .card:hover .card__img img { transform: none; }
  .hero__frame[data-hero-rotator] img { transform: none !important; }
  .btn--glow::after { display: none; }
  .slider__track { scroll-behavior: auto; }
}
