/* ==========================================================================
   Little Reminders — Paper & Ink
   Aesthetic: warm stationery. The page should feel like good paper, not a shop.
   Two accent hues carry meaning: clay = "for someone", olive = "for me".
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Paper */
  --paper:        #F5F0E6;
  --paper-warm:   #EFE7D8;
  --paper-deep:   #E4D9C5;
  --paper-card:   #FBF8F1;

  /* Ink */
  --ink:          #1C1917;
  --ink-soft:     #4A423A;
  --ink-faint:    #8A7F72;
  --rule:         #D8CDB8;

  /* Accents */
  --clay:         #B24A2B;
  --clay-deep:    #8C3719;
  --clay-wash:    #F6E4DA;
  --olive:        #5F6B4A;
  --olive-deep:   #47512F;
  --olive-wash:   #E7E9DC;
  --gold:         #B48A2E;

  /* Type */
  --display: "Instrument Serif", "Iowan Old Style", Georgia, serif;
  --body:    "Karla", "Helvetica Neue", Helvetica, sans-serif;
  --hand:    "Caveat", "Bradley Hand", cursive;

  /* Rhythm */
  --gutter: clamp(1.25rem, 5vw, 5rem);
  --measure: 62ch;
  --radius: 3px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Paper grain — a real texture, not a flat fill. Sits above the ground,
   below the content, and never intercepts clicks. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.22'/%3E%3C/svg%3E");
}
body > * { position: relative; z-index: 1; }

/* ---------- Type scale ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.75rem, 1.6rem + 5.4vw, 6.5rem); }
h2 { font-size: clamp(2.1rem, 1.4rem + 3.1vw, 4rem); }
h3 { font-size: clamp(1.4rem, 1.2rem + 0.9vw, 1.9rem); }
p  { text-wrap: pretty; }

.eyebrow {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.lede { font-size: clamp(1.08rem, 1rem + 0.5vw, 1.35rem); color: var(--ink-soft); max-width: 52ch; }
.hand { font-family: var(--hand); font-size: 1.35em; line-height: 1.4; }
em.mark { font-style: italic; color: var(--clay); }

/* ---------- Layout ---------- */
.wrap { width: min(1200px, 100% - (var(--gutter) * 2)); margin-inline: auto; }
.narrow { width: min(760px, 100% - (var(--gutter) * 2)); margin-inline: auto; }
section { padding-block: clamp(4rem, 9vw, 8.5rem); }
.rule-top { border-top: 1px solid var(--rule); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.95em 1.7em;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 22px -12px rgba(28, 25, 23, 0.55); }
.btn:active { transform: translateY(0); }
.btn--clay  { background: var(--clay);  border-color: var(--clay); }
.btn--olive { background: var(--olive); border-color: var(--olive); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--lg { padding: 1.1em 2.2em; font-size: 0.98rem; }
.btn[disabled] { opacity: 0.4; cursor: not-allowed; transform: none; }

.link-underline {
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  padding-bottom: 2px;
  transition: background-size 0.3s var(--ease);
}
.link-underline:hover { background-size: 0% 1px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem var(--gutter);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.nav.is-stuck { border-bottom-color: var(--rule); }
.wordmark {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
}
.wordmark .dot-mark {
  display: inline-grid;
  grid-template-columns: repeat(5, 3px);
  gap: 2px;
  transform: translateY(-2px);
}
.wordmark .dot-mark i { width: 3px; height: 3px; border-radius: 50%; background: var(--clay); }
.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); font-size: 0.88rem; }
.nav-links a { text-decoration: none; color: var(--ink-soft); transition: color 0.2s; }
.nav-links a:hover { color: var(--clay); }
@media (max-width: 860px) { .nav-links .hide-sm { display: none; } }

/* ---------- Hero ---------- */
.hero { padding-block: clamp(3rem, 7vw, 6rem) clamp(3rem, 6vw, 5rem); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 { margin-block: 0.35em 0.5em; }
.hero h1 .swash { font-style: italic; color: var(--clay); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2.2rem; }
.hero-note {
  margin-top: 1.6rem;
  font-size: 0.85rem;
  color: var(--ink-faint);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Stack of physical notes */
.note-stack { position: relative; aspect-ratio: 4 / 4.4; min-height: 340px; }
.note-stack .note {
  position: absolute;
  inset: auto;
  width: 68%;
  padding: 1.6rem 1.5rem;
  background: var(--paper-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px -26px rgba(28, 25, 23, 0.6);
  font-family: var(--hand);
  font-size: 1.32rem;
  line-height: 1.45;
  color: #2A2622;
}
.note .day {
  display: block;
  font-family: var(--body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.75rem;
}
.note-stack .n1 { top: 2%;  left: 4%;  transform: rotate(-6deg); }
.note-stack .n2 { top: 26%; right: 2%; transform: rotate(4.5deg); }
.note-stack .n3 { bottom: 2%; left: 12%; transform: rotate(-1.5deg); }
.note-stack .note { animation: settle 0.9s var(--ease) backwards; }
.note-stack .n1 { animation-delay: 0.15s; }
.note-stack .n2 { animation-delay: 0.3s; }
.note-stack .n3 { animation-delay: 0.45s; }
@keyframes settle {
  from { opacity: 0; transform: translateY(28px) rotate(0deg); }
}

/* ---------- The 30 strip ---------- */
.strip { padding-block: clamp(2.5rem, 5vw, 4rem); background: var(--paper-warm); border-block: 1px solid var(--rule); }
.strip-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; }
.days {
  display: grid;
  grid-template-columns: repeat(15, 1fr);
  gap: clamp(4px, 0.8vw, 10px);
}
@media (max-width: 720px) { .days { grid-template-columns: repeat(10, 1fr); } }
.days span {
  aspect-ratio: 3 / 4;
  border: 1px solid var(--rule);
  border-radius: 2px;
  background: var(--paper-card);
  display: grid;
  place-items: center;
  font-size: clamp(0.5rem, 1.2vw, 0.7rem);
  font-weight: 700;
  color: var(--ink-faint);
  box-shadow: 0 3px 8px -6px rgba(28, 25, 23, 0.5);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease);
}
.days span:hover { transform: translateY(-4px) rotate(-3deg); background: var(--clay); color: var(--paper); border-color: var(--clay); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); margin-top: 3.5rem; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step { padding-top: 1.25rem; border-top: 2px solid var(--ink); }
.step .num {
  font-family: var(--display);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--clay);
  display: block;
  margin-bottom: 0.6rem;
}
.step h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.94rem; color: var(--ink-soft); }

/* ---------- Peek inside (sample notes) ---------- */
.peek { background: var(--ink); color: var(--paper); }
.peek .eyebrow { color: var(--gold); }
.peek h2 { color: var(--paper); }
.peek .lede { color: #C9C0B4; }
.peek-stage {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
@media (max-width: 800px) { .peek-stage { grid-template-columns: 1fr; } }
.card-slot { position: relative; min-height: 320px; display: grid; place-items: center; }
.sample {
  width: min(460px, 100%);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  background: var(--paper-card);
  color: #2A2622;
  border-radius: var(--radius);
  box-shadow: 0 26px 60px -30px rgba(0, 0, 0, 0.9);
  font-family: var(--hand);
  font-size: clamp(1.35rem, 1.1rem + 0.7vw, 1.65rem);
  line-height: 1.5;
  transform: rotate(-1.2deg);
}
.sample .day { color: var(--clay); }
.sample .meta {
  font-family: var(--body);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
}
.sample.is-turning { animation: turn 0.45s var(--ease); }
@keyframes turn {
  0%   { opacity: 1; transform: rotate(-1.2deg) translateY(0); }
  45%  { opacity: 0; transform: rotate(2deg) translateY(-14px); }
  100% { opacity: 1; transform: rotate(-1.2deg) translateY(0); }
}
.peek-controls { display: flex; gap: 0.75rem; }
@media (min-width: 801px) { .peek-controls { flex-direction: column; } }
.peek-controls button {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  border: 1px solid #4A423A;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.peek-controls button:hover { background: var(--clay); border-color: var(--clay); transform: scale(1.06); }
.peek-count { font-size: 0.8rem; color: #9C9184; letter-spacing: 0.1em; margin-top: 1.5rem; }

/* ---------- Two paths ---------- */
.paths { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.25rem, 3vw, 2rem); margin-top: 3rem; }
@media (max-width: 780px) { .paths { grid-template-columns: 1fr; } }
.path {
  padding: clamp(1.8rem, 4vw, 2.8rem);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--paper-card);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.path:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -30px rgba(28, 25, 23, 0.8); }
.path--someone { border-top: 4px solid var(--clay); }
.path--me { border-top: 4px solid var(--olive); }
.path h3 { font-size: 1.7rem; }
.path ul { list-style: none; padding: 0; font-size: 0.95rem; color: var(--ink-soft); display: grid; gap: 0.5rem; }
.path li { padding-left: 1.2rem; position: relative; }
.path li::before { content: "—"; position: absolute; left: 0; color: var(--ink-faint); }
.path .btn { align-self: flex-start; margin-top: auto; }

/* ---------- Box contents ---------- */
.contents { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 880px) { .contents { grid-template-columns: 1fr; } }
.manifest { list-style: none; padding: 0; margin-top: 2rem; border-top: 1px solid var(--rule); }
.manifest li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.manifest .qty { font-family: var(--display); font-size: 1.5rem; color: var(--clay); }
.manifest strong { display: block; font-weight: 700; font-size: 0.98rem; }
.manifest span.desc { font-size: 0.88rem; color: var(--ink-faint); }

/* ---------- Pricing ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.5vw, 1.75rem); margin-top: 3rem; align-items: stretch; }
@media (max-width: 900px) { .tiers { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }
.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  background: var(--paper-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.tier:hover { transform: translateY(-5px); box-shadow: 0 24px 50px -32px rgba(28, 25, 23, 0.85); }
.tier--featured { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.tier--featured h3, .tier--featured .price { color: var(--paper); }
.tier--featured .tier-list li { color: #C9C0B4; }
.tier--featured .tier-list li::before { color: var(--gold); }
/* The default ink button disappears against the featured card's ink ground. */
.tier--featured .btn { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.tier--featured .btn:hover { background: var(--gold); border-color: var(--gold); }
.flag {
  position: absolute;
  top: -0.75rem;
  right: 1.25rem;
  padding: 0.3em 0.9em;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
}
.price { font-family: var(--display); font-size: clamp(2.2rem, 1.8rem + 1.4vw, 2.9rem); line-height: 1; }
.price small { font-family: var(--body); font-size: 0.8rem; font-weight: 400; color: var(--ink-faint); display: block; margin-top: 0.5rem; letter-spacing: 0.02em; }
.tier--featured .price small { color: #9C9184; }
.tier-list { list-style: none; padding: 0; display: grid; gap: 0.55rem; font-size: 0.92rem; color: var(--ink-soft); flex: 1; }
.tier-list li { position: relative; padding-left: 1.4rem; }
.tier-list li::before { content: "✓"; position: absolute; left: 0; color: var(--clay); font-size: 0.85rem; }

/* "In every box" — shared value, stated once instead of three times */
.universal {
  margin-top: 2.5rem;
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.25rem);
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--ink);
  border-radius: var(--radius);
}
.universal h3 {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1.1rem;
}
.universal ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.6rem 2rem;
  font-size: 0.94rem;
}
.universal li { position: relative; padding-left: 1.5rem; color: var(--ink-soft); }
.universal li::before { content: "✓"; position: absolute; left: 0; color: var(--clay); font-weight: 700; }

/* Custom / bespoke card — no price, a conversation instead of a checkout */
.tier--custom { border-style: dashed; border-color: var(--olive); background: var(--olive-wash); }
.tier--custom .price { font-size: clamp(1.5rem, 1.3rem + 0.7vw, 1.9rem); color: var(--olive-deep); }
.tier--custom .tier-list li::before { content: "+"; color: var(--olive-deep); }
.tier--custom .btn { background: var(--olive); border-color: var(--olive); color: var(--paper); }

/* Add-ons — a choice, not a tier feature */
.addons {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--paper-card);
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
@media (max-width: 820px) { .addons { grid-template-columns: 1fr; } }
.addons-head h3 { font-size: clamp(1.4rem, 1.2rem + 0.8vw, 1.8rem); margin-bottom: 0.6rem; }
.addons-head p { font-size: 0.9rem; color: var(--ink-soft); }
.addons ul { list-style: none; padding: 0; display: grid; gap: 1.1rem; }
.addons li { padding-left: 1.5rem; position: relative; }
.addons li::before { content: "+"; position: absolute; left: 0; top: 0.05rem; color: var(--clay); font-weight: 700; font-size: 1.05rem; }
.addons strong { display: flex; align-items: baseline; gap: 0.6rem; font-size: 1rem; }
.addons strong span { font-size: 0.82rem; font-weight: 700; color: var(--clay); }
.addons .desc { display: block; font-size: 0.88rem; color: var(--ink-faint); margin-top: 0.2rem; }

/* Comparison matrix — the antidote to "the tiers all look the same" */
.compare-scroll { overflow-x: auto; margin-top: 1.5rem; -webkit-overflow-scrolling: touch; }
table.compare {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 0.9rem;
}
table.compare th, table.compare td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
table.compare thead th {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.15rem;
  border-bottom: 2px solid var(--ink);
  white-space: nowrap;
}
table.compare thead th:first-child { font-family: var(--body); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); }
table.compare thead th .th-price { display: block; font-family: var(--body); font-size: 0.78rem; font-weight: 700; color: var(--clay); margin-top: 0.25rem; letter-spacing: 0; text-transform: none; }
table.compare tbody th { font-weight: 700; font-size: 0.86rem; color: var(--ink-soft); width: 30%; }
table.compare td { color: var(--ink-soft); }
table.compare td.yes { color: var(--clay); font-weight: 700; }
table.compare td.no  { color: var(--ink-faint); }
table.compare col.hl, table.compare .hl { background: color-mix(in srgb, var(--clay-wash) 55%, transparent); }
table.compare tbody tr:hover td, table.compare tbody tr:hover th { background: color-mix(in srgb, var(--paper-deep) 45%, transparent); }

.tier-alt {
  margin-top: 1.75rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px dashed var(--olive);
  border-radius: var(--radius);
  background: var(--olive-wash);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.tier-alt h3 { font-size: 1.4rem; }
.tier-alt p { font-size: 0.92rem; color: var(--ink-soft); max-width: 46ch; }

/* ---------- Occasions ---------- */
.occasions { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 2.5rem; }
.occasions span {
  padding: 0.55em 1.1em;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  background: var(--paper-card);
  transition: all 0.25s var(--ease);
}
.occasions span:hover { border-color: var(--clay); color: var(--clay); transform: translateY(-2px); }

/* ---------- FAQ ---------- */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 900px) { .faq-layout { grid-template-columns: 1fr; } }

.faq-aside { display: grid; gap: 1.25rem; position: sticky; top: 6rem; }
@media (max-width: 900px) { .faq-aside { position: static; } }

/* A note, physically placed — the page has no photography yet, so the artefact
   itself does the work a product shot would normally do. */
.aside-note {
  padding: 1.6rem 1.5rem;
  background: var(--paper-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px -24px rgba(28, 25, 23, 0.7);
  font-family: var(--hand);
  font-size: 1.3rem;
  line-height: 1.45;
  color: #2A2622;
  transform: rotate(-1.6deg);
}
.aside-note .day {
  display: block;
  font-family: var(--body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.7rem;
}

.aside-card {
  padding: 1.5rem;
  background: var(--paper-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}
.aside-card h4 { font-family: var(--display); font-size: 1.35rem; font-weight: 400; margin-bottom: 0.6rem; }
.aside-card p { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 1.1rem; }
.aside-card .btn { font-size: 0.82rem; padding: 0.8em 1.4em; }
.aside-card--quiet { background: transparent; border-style: dashed; }
.aside-card--quiet p { margin-bottom: 0; }

.faq { max-width: var(--measure); }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.35rem 2.5rem 1.35rem 0;
  font-family: var(--display);
  font-size: clamp(1.15rem, 1rem + 0.5vw, 1.4rem);
  position: relative;
  transition: color 0.2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--clay); }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0.25rem;
  top: 50%;
  translate: 0 -50%;
  font-size: 1.5rem;
  color: var(--clay);
  transition: rotate 0.3s var(--ease);
}
.faq details[open] summary::after { rotate: 45deg; }
.faq details p { padding-bottom: 1.5rem; color: var(--ink-soft); font-size: 0.98rem; max-width: 58ch; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--clay); color: var(--paper); text-align: center; }
.cta-band h2 { color: var(--paper); }
.cta-band p { color: #F6E4DA; max-width: 46ch; margin-inline: auto; margin-top: 1rem; }
.cta-band .btn { background: var(--paper); color: var(--clay); border-color: var(--paper); margin-top: 2rem; }

/* ---------- Footer ---------- */
.footer { padding-block: 3.5rem; border-top: 1px solid var(--rule); font-size: 0.88rem; color: var(--ink-soft); }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--clay); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ==========================================================================
   ORDER FLOW
   ========================================================================== */
.order-shell { display: grid; grid-template-columns: 1fr 340px; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; padding-block: 3rem 5rem; }
@media (max-width: 940px) { .order-shell { grid-template-columns: 1fr; } }

.progress { display: flex; gap: 0.5rem; margin-bottom: 2.5rem; }
.progress i {
  flex: 1;
  height: 3px;
  background: var(--paper-deep);
  border-radius: 2px;
  transition: background 0.4s var(--ease);
}
.progress i.done { background: var(--clay); }

.step-panel { display: none; animation: fadeUp 0.45s var(--ease); }
.step-panel.is-active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } }

.step-panel > h2 { margin-bottom: 0.6rem; }
.step-panel > .lede { margin-bottom: 2.5rem; }

.field { margin-bottom: 1.75rem; }
.field label { display: block; font-size: 0.88rem; font-weight: 700; margin-bottom: 0.45rem; }
.field .hint { font-size: 0.82rem; color: var(--ink-faint); margin-bottom: 0.6rem; font-weight: 400; }
.field input[type="text"], .field input[type="tel"], .field input[type="email"],
.field input[type="date"], .field textarea, .field select {
  width: 100%;
  padding: 0.85em 1em;
  background: var(--paper-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { min-height: 7rem; resize: vertical; line-height: 1.6; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--clay);
  box-shadow: 0 0 0 3px var(--clay-wash);
}
.field.invalid input, .field.invalid textarea { border-color: var(--clay-deep); }
.field .error { display: none; font-size: 0.8rem; color: var(--clay-deep); margin-top: 0.4rem; }
.field.invalid .error { display: block; }

.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .choice-grid { grid-template-columns: 1fr; } }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span.box {
  display: block;
  padding: 1.4rem 1.5rem;
  background: var(--paper-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  height: 100%;
}
.choice span.box strong { display: block; font-family: var(--display); font-size: 1.35rem; font-weight: 400; margin-bottom: 0.3rem; }
.choice span.box em { font-style: normal; font-size: 0.88rem; color: var(--ink-faint); display: block; }
.choice span.box .amt { display: block; margin-top: 0.8rem; font-weight: 700; font-size: 1.05rem; }
.choice input:checked + span.box { border-color: var(--clay); background: var(--clay-wash); box-shadow: 0 0 0 1px var(--clay); }
.choice input:focus-visible + span.box { outline: 2px solid var(--ink); outline-offset: 2px; }

/* Add-on checkboxes — bigger hit area than a chip, because each one costs money */
.addon-check {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.15rem;
  margin-bottom: 0.75rem;
  background: var(--paper-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.addon-check:hover { border-color: var(--clay); }
.addon-check input { width: 1.1rem; height: 1.1rem; margin-top: 0.25rem; accent-color: #B24A2B; flex: none; }
.addon-check:has(input:checked) { border-color: var(--clay); background: var(--clay-wash); }
.addon-check strong { display: block; font-size: 0.96rem; }
.addon-check strong em { font-style: normal; color: var(--clay); font-size: 0.85rem; }
.addon-check .desc { display: block; font-size: 0.85rem; color: var(--ink-faint); margin-top: 0.2rem; }

/* Consent checkbox. Deliberately NOT .chip — that class inverts its span to
   cream-on-ink when checked, which on this page rendered as cream on cream. */
.agree-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  padding: 1rem 1.15rem;
  background: var(--paper-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.agree-check input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
  flex: none;
  accent-color: #B24A2B;
}
.agree-check span { font-size: 0.9rem; line-height: 1.55; color: var(--ink-soft); }
.agree-check:has(input:checked) { border-color: var(--clay); background: var(--clay-wash); }
.agree-check:has(input:checked) span { color: var(--ink); }

.chip-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: inline-block;
  padding: 0.5em 1em;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--paper-card);
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.chip input:checked + span { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.step-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--rule); }

/* Sticky summary */
.summary {
  position: sticky;
  top: 6rem;
  padding: 1.75rem;
  background: var(--paper-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}
@media (max-width: 940px) { .summary { position: static; } }
.summary h4 { font-family: var(--display); font-size: 1.4rem; margin-bottom: 1.25rem; }
.summary dl { display: grid; grid-template-columns: auto 1fr; gap: 0.6rem 1rem; font-size: 0.88rem; margin: 0; }
.summary dt { color: var(--ink-faint); }
.summary dd { margin: 0; text-align: right; font-weight: 700; }
.summary .total { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--rule); display: flex; justify-content: space-between; align-items: baseline; }
.summary .total strong { font-family: var(--display); font-size: 1.9rem; font-weight: 400; }
.summary .fineprint { font-size: 0.78rem; color: var(--ink-faint); margin-top: 1rem; line-height: 1.5; }

.review-block { background: var(--paper-warm); border: 1px solid var(--rule); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1.25rem; }
.review-block h4 { font-family: var(--body); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 0.9rem; }
.review-block dl { display: grid; gap: 0.7rem; margin: 0; font-size: 0.92rem; }
.review-block dt { font-weight: 700; font-size: 0.8rem; color: var(--ink-soft); }
.review-block dd { margin: 0 0 0.3rem; color: var(--ink-soft); white-space: pre-wrap; }

/* Confirmation */
.confirm { text-align: center; padding-block: clamp(4rem, 10vw, 8rem); }
.seal {
  width: 96px; height: 96px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--clay), var(--clay-deep));
  display: grid; place-items: center;
  color: var(--paper);
  font-family: var(--display);
  font-size: 2.4rem;
  box-shadow: 0 14px 30px -16px rgba(140, 55, 25, 0.9);
  animation: stamp 0.6s var(--ease) backwards;
}
@keyframes stamp { from { opacity: 0; transform: scale(1.6) rotate(-12deg); } }

/* Bank transfer details on the confirmation screen */
.bank-block {
  max-width: 460px;
  margin: 2.5rem auto 0;
  padding: clamp(1.5rem, 4vw, 2rem);
  background: var(--paper-card);
  border: 1px solid var(--clay);
  border-radius: var(--radius);
  text-align: left;
  box-shadow: 0 18px 40px -30px rgba(28, 25, 23, 0.7);
}
.bank-block h3 { font-size: 1.35rem; margin-bottom: 1.25rem; text-align: center; }
.bank-block h3 span { color: var(--clay); }
.bank-block dl { display: grid; gap: 0.9rem; margin: 0; }
.bank-block dt {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.bank-block dd {
  margin: 0.2rem 0 0;
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  word-break: break-word;
}
.bank-block .copy {
  padding: 0.35em 0.85em;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--paper-warm);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.bank-block .copy:hover { background: var(--clay); border-color: var(--clay); color: var(--paper); }
/* Confirmation is its own state, not a hover side-effect — on touch there is no
   hover at all, and the tap that copies is also the tap that needs feedback. */
.bank-block .copy.is-copied,
.bank-block .copy.is-copied:hover {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--paper);
}
/* Inline in the order form rather than centred on a confirmation page */
.bank-block--inline { max-width: none; margin: 0 0 1.75rem; }
.bank-block--inline h3 { text-align: left; }

/* Receipt upload. A styled label wrapping a hidden input — the native control is
   unstyleable and, on Android, reads as a tiny grey button people miss. */
.file-drop {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.25rem;
  border: 1px dashed var(--clay);
  border-radius: var(--radius);
  background: var(--clay-wash);
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.file-drop:hover { background: var(--paper-card); }
.file-drop input[type="file"] { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.file-drop-icon {
  width: 2rem; height: 2rem; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--clay);
  color: var(--paper);
  font-weight: 700;
}
.file-drop-text { font-size: 0.94rem; font-weight: 700; }
.field.invalid .file-drop { border-color: var(--clay-deep); background: var(--paper-card); }

.receipt-preview {
  margin-top: 1rem;
  padding: 0.85rem;
  background: var(--paper-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}
.receipt-preview img {
  max-height: 260px;
  width: auto;
  border-radius: 2px;
  border: 1px solid var(--rule);
}
.receipt-preview figcaption,
.receipt-preview--file { font-size: 0.8rem; color: var(--ink-faint); margin-top: 0.6rem; }
.receipt-preview--file { margin-top: 1rem; font-size: 0.9rem; color: var(--ink-soft); }

.transfer-help {
  margin: -0.5rem 0 1.5rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.bank-note {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

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