:root {
  --bg: #f4f0e8;
  --bg-2: #ebe4d8;
  --paper: #fffdf8;
  --ink: #0c0c0c;
  --soft-ink: #4e4a44;
  --line: rgba(12, 12, 12, 0.12);
  --line-strong: rgba(12, 12, 12, 0.22);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  --shadow-strong: 0 28px 70px rgba(0, 0, 0, 0.15);
  --radius: 28px;
  --radius-sm: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.7), transparent 32%),
    linear-gradient(180deg, #f9f7f2 0%, var(--bg) 40%, var(--bg-2) 100%);
  color: var(--ink);
  line-height: 1.45;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.site-shell { overflow-x: clip; }
.container { width: min(1240px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 92px 0; position: relative; }
.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--soft-ink);
}

h1, h2, h3 {
  font-family: 'Bodoni Moda', Georgia, serif;
  letter-spacing: -0.045em;
  line-height: 0.94;
  margin: 0 0 16px;
  font-weight: 800;
}

h1 { font-size: clamp(4rem, 9vw, 8.4rem); max-width: 8ch; }
h2 { font-size: clamp(2.5rem, 5vw, 5.2rem); max-width: 12ch; }
h3 { font-size: clamp(1.5rem, 2vw, 2.15rem); }
p { margin: 0 0 16px; color: var(--soft-ink); }
strong { color: var(--ink); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button--dark {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-strong);
}
.button--light {
  background: rgba(255,255,255,0.7);
  border-color: var(--line-strong);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.button--chip{
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
html{
  scroll-behavior: smooth;
}
#paraggeile{
  scroll-margin-top: 120px;
}

.status-banner {
  margin-bottom: 18px;
  padding: 14px 18px;
  border-radius: 18px;
  font-weight: 700;
  backdrop-filter: blur(12px);
  display: grid;
  gap: 6px;
}
.status-banner strong {
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}
.status-banner span {
  font-size: 0.92rem;
  font-weight: 500;
}
.status-banner--success {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line-strong);
}
.status-banner--warning {
  background: rgba(255,248,230,0.82);
  border: 1px solid rgba(137,100,20,0.28);
}
.status-banner--error {
  background: rgba(255,238,238,0.84);
  border: 1px solid rgba(157,57,57,0.24);
}
.form-feedback {
  margin: 0 0 18px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.82);
  display: grid;
  gap: 8px;
}
.form-feedback strong {
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}
.form-feedback p {
  margin: 0;
  color: var(--ink-soft);
}
.form-feedback__list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}
.form-feedback--success {
  background: rgba(255,255,255,0.82);
  border-color: var(--line-strong);
}
.form-feedback--warning {
  background: rgba(255,248,230,0.92);
  border-color: rgba(137,100,20,0.28);
}
.form-feedback--error {
  background: rgba(255,238,238,0.92);
  border-color: rgba(157,57,57,0.22);
}

.hero {
  position: relative;
  padding: 26px 0 54px;
  min-height: 100svh;
}
.hero__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  background-image: radial-gradient(rgba(0,0,0,0.08) 0.8px, transparent 0.8px);
  background-size: 7px 7px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.2), transparent 86%);
}
.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brandmark img {
  width: clamp(84px, 8vw, 104px);
  height: clamp(84px, 8vw, 104px);
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.08));
  flex: 0 0 auto;
}
.brandmark strong,
.brandmark span {
  display: block;
}
.brandmark strong { font-size: 1rem; }
.brandmark span {
  color: var(--soft-ink);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-top: 4px;
}
.topbar__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.mini-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  background: rgba(255,255,255,0.68);
  border: 1px solid var(--line-strong);
  font-size: 0.84rem;
  font-weight: 700;
}
.mini-chip--dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 38px;
  align-items: center;
}
.hero__copy {
  padding: 30px 0 10px;
}
.hero__subline {
  max-width: 20ch;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 600;
  color: var(--ink);
}
.hero__lede {
  max-width: 58ch;
  font-size: 1.03rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}
.hero__meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
}
.meta-card {
  min-height: 120px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,0.56);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.meta-card span {
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--soft-ink);
}
.meta-card strong {
  font-size: 1.1rem;
  line-height: 1.1;
}
.hero__footnote {
  margin-top: 16px;
  font-weight: 700;
  color: var(--ink);
}

.hero__visual {
  display: grid;
  gap: 18px;
}
.poster-card {
  border-radius: 30px;
  padding: 22px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.poster-card p,
.poster-card span {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.73rem;
  font-weight: 800;
}
.poster-card strong {
  display: block;
  margin: 14px 0 8px;
  font-size: clamp(1.5rem, 2.3vw, 2.4rem);
  line-height: 0.94;
  font-family: 'Bodoni Moda', Georgia, serif;
}
.poster-card--black {
  background: var(--ink);
  color: #fff;
  border-color: transparent;
}
.poster-card--black p,
.poster-card--black span,
.poster-card--black strong { color: #fff; }
.poster-card--light {
  background: rgba(255,255,255,0.76);
}
.poster-card--vertical {
  background: rgba(255,255,255,0.74);
  min-height: 100%;
}

.cup-scene {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}
.cup-scene__shadow {
  position: absolute;
  bottom: 40px;
  width: min(420px, 84%);
  height: 54px;
  border-radius: 50%;
  background: rgba(0,0,0,0.16);
  filter: blur(18px);
}
.coin-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 136px;
  height: 136px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  font-weight: 800;
  line-height: 1.08;
  font-size: 0.9rem;
  box-shadow: var(--shadow-strong);
  animation: bob 8s ease-in-out infinite;
}
.spoon {
  position: absolute;
  top: 62px;
  left: 34px;
  width: 240px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f8f8f8 0%, #b3b3b3 45%, #efefef 100%);
  box-shadow: 0 10px 26px rgba(0,0,0,0.12);
  transform: rotate(-22deg);
}
.spoon::before {
  content: '';
  position: absolute;
  right: -12px;
  top: -18px;
  width: 72px;
  height: 54px;
  border-radius: 44px;
  background: linear-gradient(180deg, #f7f7f7, #bdbdbd);
}
.cup {
  position: relative;
  width: min(440px, 92%);
  transform: rotate(-6deg);
}
.cup__lid {
  width: 104%;
  margin-left: -2%;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(180deg, #0d0d0d 0%, #232323 100%);
  box-shadow: 0 18px 26px rgba(0,0,0,0.22);
}
.cup__body {
  margin-top: -10px;
  padding: 36px 28px 32px;
  background: linear-gradient(180deg, #f9f5ee 0%, #ece2d0 100%);
  border: 2px solid rgba(0,0,0,0.12);
  border-radius: 30px 30px 46px 46px;
  box-shadow: 0 34px 64px rgba(0,0,0,0.14);
}
.cup__label {
  width: min(250px, 84%);
  margin: 0 auto 26px;
  padding: 18px 20px 16px;
  background: var(--ink);
  border-radius: 24px;
  display: grid;
  justify-items: center;
  gap: 10px;
}
.cup__label img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}
.cup__label span {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.cup__texture {
  min-height: 172px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 11% 30%, #9e7a3b 0 13px, transparent 14px),
    radial-gradient(circle at 24% 58%, #7b5526 0 18px, transparent 19px),
    radial-gradient(circle at 43% 38%, #bb9653 0 14px, transparent 15px),
    radial-gradient(circle at 66% 26%, #d8ba74 0 13px, transparent 14px),
    radial-gradient(circle at 77% 62%, #8d632f 0 17px, transparent 18px),
    radial-gradient(circle at 54% 71%, #e7d09a 0 11px, transparent 12px),
    linear-gradient(180deg, #70522e 0%, #4a351b 100%);
  position: relative;
  overflow: hidden;
}
.cup__texture span {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
}
.cup__texture span:nth-child(1){top:14%;left:14%}
.cup__texture span:nth-child(2){top:20%;right:18%}
.cup__texture span:nth-child(3){left:42%;bottom:28%}
.cup__texture span:nth-child(4){right:30%;bottom:18%}
.cup__texture span:nth-child(5){left:70%;top:46%}

.marquee {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,0.46);
}
.marquee__track {
  display: flex;
  gap: 42px;
  min-width: max-content;
  padding: 14px 0;
  animation: marquee 24s linear infinite;
}
.marquee__track span {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
}

.step-rail {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244,240,232,0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.step-rail__inner {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 13px 0;
  scrollbar-width: none;
}
.step-rail__inner::-webkit-scrollbar { display: none; }
.step {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.73rem;
  font-weight: 800;
  color: var(--soft-ink);
}
.step span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: transparent;
  transition: transform 180ms ease, background 180ms ease;
}
.step.is-active,
.step:hover { color: var(--ink); }
.step.is-active span,
.step:hover span {
  background: var(--ink);
  transform: scale(1.18);
}

.product-grid,
.myth-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}
.product-copy__lead {
  max-width: 56ch;
  font-size: 1.04rem;
}
.quote-block {
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 4px solid var(--ink);
  background: rgba(255,255,255,0.46);
}
.quote-block span {
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
}
.quote-block strong {
  font-size: 1.2rem;
}
.product-panel {
  background: rgba(255,255,255,0.52);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}
.feature-list article,
.experience-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
}
.feature-list strong,
.bundle-card strong,
.reserve-points li,
.form-card__head strong,
.faq-list summary {
  color: var(--ink);
}
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.bundle-card {
  width: 100%;
  text-align: left;
  padding: 18px 18px 20px;
  border-radius: 24px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(247,241,232,0.82));
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.bundle-card:hover,
.bundle-card.is-selected {
  transform: translateY(-3px);
  border-color: var(--ink);
  background: var(--ink);
}
.bundle-card:hover span,
.bundle-card:hover strong,
.bundle-card.is-selected span,
.bundle-card.is-selected strong {
  color: #fff;
}
.bundle-card span {
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--soft-ink);
}
.bundle-card strong {
  display: block;
  font-size: 1.12rem;
  line-height: 1.12;
}
.bundle-grid--compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.bundle-card--compact {
  min-height: 56px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 800;
}

.myth-grid { align-items: stretch; }
.myth-copy p:not(.eyebrow) { max-width: 60ch; }
.myth-aside { display: flex; }

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}
.ritual-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.ritual-card {
  min-height: 280px;
  padding: 22px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.ritual-card span {
  display: inline-block;
  margin-bottom: 42px;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
}
.ritual-card--light {
  background: rgba(255,255,255,0.68);
  border: 1px solid var(--line);
}
.ritual-card--dark {
  background: var(--ink);
  color: #fff;
}
.ritual-card--dark p,
.ritual-card--dark h3,
.ritual-card--dark span { color: #fff; }
.ritual-card--outline {
  border: 1.5px dashed var(--line-strong);
  background: rgba(255,255,255,0.38);
}

.reserve-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: start;
}
.reserve-panel {
  position: sticky;
  top: 74px;
  padding: 28px;
  border-radius: 32px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-strong);
}
.reserve-panel p,
.reserve-panel h2,
.reserve-panel .eyebrow,
.reserve-panel li { color: #fff; }
.reserve-panel p { opacity: 0.9; }
.reserve-points {
  list-style: none;
  padding: 0;
  margin: 22px 0;
  display: grid;
  gap: 10px;
}
.reserve-points li {
  position: relative;
  padding-left: 20px;
  font-weight: 700;
}
.reserve-points li::before {
  content: '•';
  position: absolute;
  left: 0;
}
.reserve-stamp {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.form-card {
  padding: 26px;
  border-radius: 32px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.form-card__head { margin-bottom: 20px; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.form-grid label,
.checkbox {
  display: grid;
  gap: 8px;
  font-weight: 700;
}
.form-grid label span,
.checkbox span {
  color: var(--ink);
  font-size: 0.92rem;
}
.form-grid input:not([type="checkbox"]),
.form-grid textarea {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.84);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.form-grid textarea {
  min-height: 120px;
  resize: vertical;
}
.form-grid input:focus,
.form-grid textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(12,12,12,0.06);
}
.form-grid__full { grid-column: 1 / -1; }
.checkbox {
  grid-template-columns: auto 1fr;
  align-items: start;
}
.checkbox input {
  margin-top: 4px;
}
.hp-field {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 1px !important;
  height: 1px !important;
}

.faq-list { display: grid; gap: 12px; }
.faq-list details {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.74);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-list summary {
  list-style: none;
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 800;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p {
  padding: 0 22px 20px;
  margin: 0;
}

.footer {
  padding: 34px 0 40px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.36);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr;
  gap: 22px;
  align-items: start;
}
.footer__line { font-weight: 700; color: var(--ink); }
.footer__links {
  display: grid;
  gap: 8px;
}
.footer__links a { color: var(--soft-ink); }
.footer__actions {
  display: grid;
  gap: 10px;
  justify-items: start;
}
.footer__hint {
  margin: 0;
  font-size: 0.94rem;
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  z-index: 50;
}
.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.48);
  backdrop-filter: blur(12px);
}
.modal__dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: min(92vh, 900px);
  overflow: auto;
  padding: 28px;
  border-radius: 28px;
  background: var(--paper);
  box-shadow: var(--shadow-strong);
}
.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: #fff;
  font-size: 1.4rem;
}
.modal__lead { max-width: 56ch; }
body.modal-open { overflow: hidden; }

@keyframes bob {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 1080px) {
  .hero__grid,
  .product-grid,
  .myth-grid,
  .faq-grid,
  .reserve-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero__meta-grid,
  .feature-list,
  .ritual-grid,
  .bundle-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reserve-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .container { width: min(100% - 24px, 100%); }
  .section { padding: 72px 0; }
  h1 { font-size: clamp(3rem, 16vw, 4.9rem); }
  h2 { font-size: clamp(2.25rem, 12vw, 3.6rem); }
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero__actions,
  .topbar__chips,
  .hero__meta-grid,
  .feature-list,
  .ritual-grid,
  .bundle-grid,
  .bundle-grid--compact,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .hero__actions,
  .topbar__chips {
    display: grid;
  }
  .hero__actions .button,
  .footer__actions .button {
    width: 100%;
  }
  .cup-scene {
    min-height: 500px;
  }
  .coin-badge {
    width: 110px;
    height: 110px;
    font-size: 0.76rem;
  }
  .spoon {
    width: 180px;
    top: 40px;
    left: 8px;
  }
  .form-card,
  .product-panel,
  .reserve-panel,
  .poster-card,
  .modal__dialog {
    padding: 20px;
  }
}

/* v5 targeted rebuild */
.hero__subline--strong {
  font-size: clamp(1.3rem, 2.1vw, 1.7rem);
  max-width: 18ch;
}
.hero__lede {
  max-width: 52ch;
}
.hero__visual {
  gap: 20px;
}
.poster-card--black strong {
  max-width: 7ch;
}
.photo-stage {
  position: relative;
  min-height: 620px;
  padding: 18px 14px 26px;
  display: grid;
  place-items: center;
}
.photo-stage__seal {
  position: absolute;
  left: 0;
  bottom: 6px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  max-width: 340px;
  padding: 14px 16px;
  border-radius: 24px;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.photo-stage__seal img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex: 0 0 auto;
}
.photo-stage__seal strong,
.photo-stage__seal span {
  display: block;
}
.photo-stage__seal strong {
  margin-bottom: 4px;
  font-size: 0.95rem;
}
.photo-stage__seal span {
  color: var(--soft-ink);
  font-size: 0.8rem;
  line-height: 1.35;
}
.photo-frame {
  position: relative;
  width: min(520px, 100%);
  aspect-ratio: 4 / 5;
  margin: 0;
  padding: 20px;
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(241,233,219,0.98));
  box-shadow: 0 36px 80px rgba(0,0,0,0.18);
  transform: rotate(-4deg);
}
.photo-frame::before {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: 28px;
  border: 1.5px dashed rgba(12,12,12,0.22);
  pointer-events: none;
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
  display: block;
}
.photo-frame figcaption {
  position: absolute;
  inset: auto 30px 30px 30px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(12,12,12,0.1);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.photo-frame figcaption strong,
.photo-frame figcaption span { display: block; }
.photo-frame figcaption strong {
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.photo-frame figcaption span {
  color: var(--soft-ink);
  font-size: 0.86rem;
  line-height: 1.4;
}
.photo-frame code {
  font-size: 0.78rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  background: rgba(12,12,12,0.08);
  border-radius: 8px;
  padding: 2px 6px;
}
.coin-badge {
  top: 24px;
  right: 6px;
  z-index: 3;
}
.quote-block span {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--soft-ink);
  display: block;
  margin-bottom: 8px;
}
.product-copy__hint {
  margin-top: 18px;
  font-size: 0.92rem;
  font-weight: 700;
}
.section-head h2,
.faq-copy h2 {
  max-width: 12ch;
}
.reserve-grid {
  grid-template-columns: minmax(300px, 0.66fr) minmax(0, 1.34fr);
}
.reserve-panel h2 {
  font-size: clamp(2.35rem, 4.4vw, 4.25rem);
  max-width: 7.4ch;
  line-height: 0.92;
  margin-bottom: 18px;
}
.form-card__head {
  display: grid;
  gap: 16px;
}
.bundle-grid--compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.bundle-card--custom {
  border-style: dashed;
}
.quantity-custom {
  padding: 16px 18px 18px;
  border-radius: 22px;
  background: rgba(12,12,12,0.04);
  border: 1px solid var(--line);
}
.quantity-custom[hidden] {
  display: none;
}
.quantity-custom__head {
  display: grid;
  gap: 4px;
  margin-bottom: 12px;
}
.quantity-custom__head strong {
  font-size: 0.98rem;
}
.quantity-custom__head span {
  color: var(--soft-ink);
  font-size: 0.88rem;
}
.quantity-custom__controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  gap: 16px;
  align-items: center;
}
.quantity-custom input[type="range"] {
  width: 100%;
  accent-color: var(--ink);
}
.quantity-custom__input {
  display: grid;
  gap: 8px;
  font-weight: 700;
}
.quantity-custom__input span {
  color: var(--soft-ink);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.form-grid label span em,
.modal .form-grid label span em {
  color: var(--soft-ink);
  font-style: normal;
}
.form-grid label span,
.checkbox span {
  display: inline-block;
}
.form-grid__full .button,
.button.form-grid__full {
  width: 100%;
}
.footer__links a:hover,
.step:hover,
.brandmark:hover strong {
  color: var(--ink);
}
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(12,12,12,0.18);
  border-radius: 50%;
  background: rgba(12,12,12,0.92);
  color: #fff;
  box-shadow: var(--shadow-strong);
  font-size: 1.3rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: #000;
}

@media (max-width: 1180px) {
  .hero__grid,
  .product-grid,
  .myth-grid,
  .faq-grid,
  .reserve-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .reserve-panel {
    position: static;
  }

  .reserve-panel h2 {
    max-width: 9ch;
  }

  .photo-stage {
    min-height: 560px;
  }

  .bundle-grid--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero__meta-grid,
  .feature-list,
  .ritual-grid,
  .bundle-grid,
  .bundle-grid--compact,
  .form-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .quantity-custom__controls {
    grid-template-columns: 1fr;
  }

  .photo-stage {
    min-height: 500px;
    padding-bottom: 94px;
  }

  .photo-frame {
    transform: none;
    width: 100%;
  }

  .photo-stage__seal {
    max-width: none;
    right: 0;
  }
}

@media (max-width: 760px) {
  .hero__actions,
  .topbar__chips {
    display: grid;
  }

  .topbar__chips,
  .hero__actions,
  .bundle-grid,
  .bundle-grid--compact,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .button,
  .hero__actions .button,
  .footer__actions .button {
    width: 100%;
  }

  .coin-badge {
    top: 10px;
    right: 10px;
    width: 104px;
    height: 104px;
    font-size: 0.72rem;
  }

  .photo-stage {
    min-height: 420px;
    padding-bottom: 110px;
  }

  .photo-frame {
    padding: 14px;
    border-radius: 28px;
  }

  .photo-frame::before {
    inset: 10px;
    border-radius: 20px;
  }

  .photo-frame figcaption {
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 12px 14px;
  }

  .photo-stage__seal {
    left: 0;
    right: 0;
    bottom: 0;
    max-width: none;
  }

  .reserve-panel h2,
  .faq-copy h2,
  .section-head h2 {
    max-width: 100%;
  }

  .brandmark img {
    width: 78px;
    height: 78px;
  }

  .brandmark strong {
    font-size: 0.96rem;
  }

  .brandmark span {
    font-size: 0.74rem;
  }

  .back-to-top {
    right: 12px;
    bottom: 12px;
    width: 48px;
    height: 48px;
  }
}


/* v8 motion-only patch: preserve layout, fix overflow, add tattoo-parlor style reveals */
.hero__copy,
.hero__visual,
.product-copy,
.product-panel,
.myth-copy,
.myth-aside,
.section-head,
.faq-copy,
.faq-list,
.reserve-panel,
.form-card,
.footer__grid > *,
.feature-list article,
.bundle-card,
.ritual-card,
.poster-card,
.photo-stage__seal,
.quote-block,
.meta-card {
  min-width: 0;
}

h1, h2, h3,
.hero__subline,
.hero__lede,
.poster-card strong,
.reserve-panel h2,
.faq-copy h2,
.footer h2,
.section-head h2,
.quote-block strong {
  max-inline-size: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
  text-wrap: balance;
}

.hero h1 {
  max-width: min(7.2ch, 100%);
}

.poster-card {
  display: grid;
  align-content: start;
  gap: 10px;
}

.poster-card strong {
  margin: 4px 0 0;
  font-size: clamp(1.08rem, 1.65vw, 2rem);
  line-height: 0.98;
  max-width: 8.4ch;
}

.poster-card span {
  line-height: 1.3;
}

.reserve-panel {
  overflow: hidden;
}

.reserve-panel h2 {
  font-size: clamp(2rem, 3.95vw, 4rem);
  max-width: min(8.8ch, 100%);
  line-height: 0.93;
  overflow-wrap: anywhere;
}

.faq-copy h2 {
  max-width: min(8.4ch, 100%);
}

.footer h2 {
  max-width: min(8.8ch, 100%);
  font-size: clamp(2.3rem, 4.2vw, 4.6rem);
}

.form-card,
.product-panel,
.faq-list details,
.poster-card,
.meta-card,
.ritual-card,
.bundle-card,
.quote-block,
.photo-stage__seal {
  will-change: transform, opacity;
}

/* reveal system */
.reveal {
  opacity: 0;
  transform:
    translate3d(var(--reveal-x, 0), calc(var(--reveal-y, 0px) + var(--parallax-y, 0px)), 0)
    rotate(var(--reveal-rotate, 0deg))
    scale(0.985);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 980ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, var(--parallax-y, 0px), 0) rotate(0deg) scale(1);
}

.reveal--from-top {
  --reveal-y: -52px;
}

.reveal--from-bottom {
  --reveal-y: 52px;
}

.reveal--from-left {
  --reveal-x: -58px;
  --reveal-rotate: -2deg;
}

.reveal--from-right {
  --reveal-x: 58px;
  --reveal-rotate: 2deg;
}

.reveal--soft {
  --reveal-y: 26px;
}

.has-parallax {
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  transition: transform 220ms linear;
}

.reveal.has-parallax {
  transform:
    translate3d(var(--reveal-x, 0), calc(var(--reveal-y, 0px) + var(--parallax-y, 0px)), 0)
    rotate(var(--reveal-rotate, 0deg))
    scale(0.985);
}

.reveal.is-visible.has-parallax {
  transform: translate3d(0, var(--parallax-y, 0px), 0) rotate(0deg) scale(1);
}

@media (max-width: 1080px) {
  .hero h1 {
    max-width: min(7.8ch, 100%);
  }

  .poster-card strong,
  .reserve-panel h2,
  .faq-copy h2,
  .footer h2,
  .section-head h2 {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.85rem, 15vw, 4.9rem);
  }

  .hero__subline,
  .hero__lede,
  .section-head h2,
  .faq-copy h2,
  .footer h2,
  .reserve-panel h2,
  .poster-card strong {
    text-wrap: pretty;
    max-width: 100%;
  }

  .poster-card strong {
    font-size: clamp(1rem, 6vw, 1.7rem);
  }

  .reveal,
  .reveal.is-visible {
    transition-duration: 620ms, 720ms;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible,
  .has-parallax,
  .reveal.has-parallax,
  .reveal.is-visible.has-parallax {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .coin-badge,
  .marquee__track {
    animation: none !important;
  }
}

/* v7 targeted fixes */
.rail-gap {
  height: 18px;
}

.step-rail {
  margin-top: 0;
}

.footer-link-button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  color: var(--soft-ink);
  font: inherit;
  font-weight: 500;
}

.footer-link-button:hover,
.footer-link-button:focus-visible,
.footer__links a:hover,
.social-link:hover,
.social-link:focus-visible {
  color: var(--ink);
}

.footer__socials {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-top: 6px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.68);
  color: var(--soft-ink);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  border-color: var(--ink);
  background: rgba(255,255,255,0.94);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.modal__copy {
  display: grid;
  gap: 10px;
}

.modal--info .modal__dialog {
  width: min(720px, 100%);
}

.bundle-card:hover,
.bundle-card.is-selected {
  color: #fff;
}

.bundle-card--compact {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.1;
}

.bundle-card--compact:hover,
.bundle-card--compact.is-selected {
  color: #fff;
}

h1,
h2,
h3,
.hero__subline,
.hero__lede,
.poster-card strong,
.reserve-panel h2,
.faq-copy h2,
.footer h2,
.section-head h2,
.quote-block strong {
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: none;
}

.hero h1 {
  max-width: 8.2ch;
}

.reserve-panel h2 {
  max-width: 10ch;
}

.poster-card {
  gap: 12px;
}

.poster-card strong {
  max-width: none;
}

.poster-card--black strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(1.7rem, 2.7vw, 2.75rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.poster-card--black .poster-line {
  display: block;
}

@media (min-width: 761px) {
  .poster-card--black {
    max-width: 580px;
  }
}

@media (max-width: 760px) {
  .hero h1 {
    font-size: clamp(2.45rem, 12.8vw, 4rem);
    line-height: 0.88;
    max-width: 100%;
  }

  .reserve-panel h2 {
    font-size: clamp(1.9rem, 10.2vw, 3rem);
    line-height: 0.9;
    max-width: 100%;
  }

  .poster-card--black strong {
    font-size: clamp(1.28rem, 7vw, 1.9rem);
    line-height: 0.95;
  }

  .bundle-card--compact {
    min-height: 54px;
    font-size: 0.96rem;
  }

  .footer__socials {
    padding-top: 10px;
  }
}

/* restore desktop hero anti-overlap fix */
.hero__copy,
.hero__visual,
.footer__links,
.footer__actions {
  position: relative;
}

.hero__copy {
  z-index: 3;
}

.hero__visual {
  z-index: 1;
}

.footer__links,
.footer__actions,
.footer-link-button,
.footer__links a,
.social-link {
  z-index: 2;
}

@media (min-width: 1181px) {
  .hero__grid {
    grid-template-columns: minmax(0, 0.96fr) minmax(420px, 0.84fr);
    gap: clamp(52px, 5vw, 92px);
    align-items: start;
  }

  .hero h1 {
    max-width: 6.65ch;
    font-size: clamp(4.9rem, 6.3vw, 6rem);
    line-height: 0.86;
  }

  .hero__subline {
    max-width: 17ch;
  }

  .hero__lede {
    max-width: 44ch;
  }

  .hero__visual {
    padding-top: 20px;
  }

  .poster-card--black {
    width: min(100%, 500px);
    margin-left: auto;
  }

  .poster-card--black strong {
    font-size: clamp(1.45rem, 2vw, 2.2rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
  }

  .photo-stage {
    min-height: 580px;
    padding-left: 18px;
    padding-right: 0;
  }

  .photo-frame {
    width: min(455px, 100%);
    margin-left: auto;
  }

  .photo-stage__seal {
    left: 18px;
  }
}

@media (min-width: 1181px) and (max-width: 1350px) {
  .hero h1 {
    font-size: clamp(4.5rem, 5.8vw, 5.4rem);
    max-width: 6.9ch;
  }

  .photo-frame {
    width: min(430px, 100%);
  }
}


/* newsletter popup */
.newsletter-modal {
  width: min(760px, calc(100% - 24px));
  padding: 0;
  overflow: hidden;
}

.newsletter-modal__grid {
  display: grid;
  min-height: min(78vh, 760px);
}

.newsletter-modal__grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.newsletter-embed__fallback {
  margin: 0;
  font-size: 0.92rem;
  color: var(--soft-ink);
}

.newsletter-embed {
  background: #f4f0ea;
  display: grid;
  gap: 12px;
  padding: 16px;
}

.newsletter-embed iframe {
  width: 100%;
  min-height: min(72vh, 680px);
  border: 0;
  border-radius: 24px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(18, 15, 11, 0.07);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 760px) {
  .newsletter-modal {
    width: min(100%, calc(100% - 12px));
  }

  .newsletter-embed {
    padding: 12px;
  }

  .newsletter-embed iframe {
    min-height: 540px;
  }
}
