/* root.css — split from styles.css on 2026-07-24 (Phase 4 Stage 2).
   Rules are verbatim, in original source order. Do not hand-merge sheets;
   the page -> stylesheet mapping lives in tools/build-site.js. */
.hero-copy {
  max-width: 64ch;
  margin: 16px 0 30px;
  color: #34494a;
  font-family: var(--body);
  font-size: clamp(18px, 1.35vw, 20px);
  line-height: 1.58;
}
.kit-visual {
  position: relative;
  display: grid;
  min-height: 280px;
  place-items: center;
  isolation: isolate;
}
.kit-copy h2 {
  max-width: 12ch;
  font-size: clamp(34px, 4vw, 54px);
}
.kit-copy p {
  max-width: 62ch;
  margin: 12px 0 22px;
  color: #455756;
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.62;
}
.kit-copy .kit-lead {
  color: #33494a;
  font-weight: 500;
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 12px;
  margin: 0 0 18px;
}
.included-grid span {
  position: relative;
  border: 1px solid rgba(194, 135, 45, 0.35);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.54);
  padding: 12px 12px 12px 30px;
  color: #283d3e;
  font-size: 14px;
  font-weight: 750;
}
.included-grid span::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 13px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
}
.price-row {
  display: grid;
  grid-template-columns: auto minmax(260px, 0.55fr);
  align-items: center;
  gap: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(194, 135, 45, 0.28);
}
.price-row > div {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  column-gap: 12px;
  row-gap: 4px;
  min-width: 0;
}
.price-row strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}
.price-amount {
  display: inline-flex;
  align-items: flex-start;
  gap: 2px;
  font-variant-numeric: lining-nums tabular-nums;
}
.price-currency {
  color: inherit;
  font-size: 0.56em;
  line-height: 1;
  margin-top: 0.08em;
}
.price-row > div > span:not(.price-currency) {
  flex: 1 1 220px;
  min-width: 180px;
  color: #475959;
  font-size: 14px;
  line-height: 1.45;
}
.kit-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  background: linear-gradient(180deg, #f5c765, var(--candle));
  color: #241b07;
  padding: 0 22px;
  box-shadow: 0 16px 28px rgba(217, 82, 40, 0.22);
  white-space: nowrap;
}
.trust-row div {
  display: grid;
  gap: 4px;
  min-height: 92px;
  align-content: center;
  border-top: 1px solid var(--line);
}
.trust-row strong {
  color: var(--ink);
}
.trust-row span {
  color: var(--muted);
  font-size: 14px;
}
.faq-section h2 {
  font-size: clamp(30px, 3vw, 42px);
}
.guide-index-head h2 {
  max-width: 540px;
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 44px;
  font-weight: 650;
  line-height: 1.04;
}
.guide-index-head p:last-child {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}
.guide-feature-card:hover,
.guide-feature-list a:hover {
  border-color: rgba(13, 82, 64, 0.38);
  box-shadow: var(--soft-shadow);
  transform: translateY(-2px);
}
.guide-feature-card span,
.guide-feature-list span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.guide-feature-card strong {
  max-width: 13ch;
  color: var(--ink);
  font-family: var(--display);
  font-size: 39px;
  font-weight: 650;
  line-height: 1.05;
}
.guide-feature-card em,
.guide-feature-list em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.48;
}

/* Stage 3 mobile-first: phone tier is the base; min-941 restores the
   desktop winner for each selector at its own specificity. */
.included-grid,
.kit-proof-grid,
.kit-proof-details,
.price-row,
.result-panel,
.answer-strip {
  grid-template-columns: 1fr;
}
.kit-cta {
  width: 100%;
  min-width: 0;
  white-space: normal;
}

@media (min-width: 941px) {
.included-grid {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }
.price-row {
    grid-template-columns: auto minmax(260px, 0.55fr);
  }
.kit-proof-grid,
  .kit-proof-details,
  .result-panel,
  .answer-strip {
    grid-template-columns: none;
  }
.kit-cta {
    width: auto;
    min-width: 260px;
    white-space: nowrap;
  }
}

.hero-shell {
  min-height: auto;
}
/* Inert in both tiers, kept verbatim: the later unconditional
   `margin-inline: auto` on the shared rail group wins at every width. */
.template-strip,
.kit-section,
.trust-row,
.guide-index,
.faq-section {
  margin-left: 18px;
  margin-right: 18px;
}
.guide-index-head {
  gap: 14px;
  margin-bottom: 20px;
}
/* max-width/line-height here are likewise overridden later at every
   width (12.5ch group, and the 1.08 leading pass). */
.guide-index-head h2 {
  max-width: 11ch;
  font-size: 33px;
  line-height: 1.08;
}
.guide-index-head p:last-child {
  font-size: 16px;
}
.guide-feature-card {
  min-height: 260px;
  padding: 22px;
}
.guide-feature-card strong {
  font-size: 31px;
}
.kit-visual {
  min-height: 320px;
}

@media (min-width: 681px) {
.hero-shell {
    min-height: calc(100vh - 76px);
  }
.guide-index-head {
    gap: 32px;
    margin-bottom: 26px;
  }
.guide-index-head h2 {
    font-size: 44px;
  }
.guide-index-head p:last-child {
    font-size: 18px;
  }
.guide-feature-card {
    padding: 28px;
  }
.guide-feature-card strong {
    font-size: 39px;
  }
.kit-visual {
    min-height: 280px;
  }
}
/* 2026-06-23 ChatGPT image mockup loop */
.create-studio {
  width: min(1580px, 100%);
  min-height: calc(100vh - 84px);
  margin: 0 auto;
  padding: clamp(34px, 4.2vw, 64px) clamp(22px, 5vw, 78px);
  grid-template-columns: minmax(440px, 0.88fr) minmax(520px, 1fr);
  gap: clamp(28px, 4.5vw, 76px);
  align-items: start;
  background:
    radial-gradient(circle at 88% 18%, rgba(194, 135, 45, 0.12), transparent 23%),
    linear-gradient(100deg, rgba(255, 253, 248, 0.99) 0%, rgba(255, 253, 248, 0.94) 44%, rgba(247, 242, 234, 0.92) 100%),
    #fffdf8;
}
.simple-proof {
  margin-top: 2px;
  color: #586866;
}
.simple-proof span {
  font-size: 14px;
  font-weight: 820;
}

/* The three .create-studio tiers below are inert in both directions and
   are kept verbatim as base rules: the later unconditional .create-studio
   rules (the 2026-06-23 cascade guard and the 2026-06-29 offer pass)
   re-declare grid-template-columns, min-height and the padding shorthand
   at every width, and the later .simple-proof span + span rule likewise. */
.create-studio {
  grid-template-columns: minmax(360px, 0.96fr) minmax(420px, 1fr);
  padding-inline: 32px;
}
.create-studio {
  grid-template-columns: 1fr;
  min-height: auto;
  padding: 36px 22px 46px;
}
.create-studio {
  padding-inline: 14px;
}
.simple-proof span + span {
  margin-left: 10px;
  padding-left: 10px;
}
.create-studio {
  grid-template-columns: minmax(420px, 0.92fr) minmax(470px, 1fr);
  min-height: calc(100vh - 84px);
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.84) 43%, rgba(246, 241, 232, 0.86) 100%),
    #fffdf8;
}
.simple-proof,
.studio-points {
  gap: 10px;
}
.simple-proof span,
.studio-points span {
  min-height: 34px;
  border-color: rgba(13, 82, 64, 0.18);
  background: rgba(226, 232, 227, 0.78);
  color: #123d40;
  padding: 0 13px;
}
.simple-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  color: #536463;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}
.simple-proof span {
  min-height: 0;
  border: 0;
  background: transparent;
  color: currentColor;
  padding: 0;
}
.simple-proof span + span {
  margin-left: 14px;
  padding-left: 14px;
  border-left: 1px solid rgba(22, 50, 53, 0.2);
}
.trust-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.kit-section {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(246, 241, 232, 0.86)),
    #fffdf8;
}
.kit-copy h2,
.faq-section h2,
.guide-index-head h2 {
  font-family: var(--display);
  font-weight: 800;
}
.guide-feature-card {
  min-height: 460px;
  overflow: hidden;
}

/* Inert (later unconditional .create-studio rule wins at every width). */
.create-studio {
  grid-template-columns: minmax(360px, 1fr) minmax(420px, 0.92fr);
}
.create-studio {
  grid-template-columns: 1fr;
}
/* .trust-row is inert here too — the 2026-07-03 rail pass re-declares it
   unconditionally further down. The other three have no author
   grid-template-columns anywhere, so their desktop side is the initial. */
.offer-paths,
.secondary-paths,
.form-row,
.trust-row {
  grid-template-columns: 1fr;
}

@media (min-width: 981px) {
.offer-paths,
  .secondary-paths,
  .form-row {
    grid-template-columns: none;
  }
}
/* 2026-06-23 final mockup-loop cascade guard */
.create-studio {
  width: min(1580px, 100%);
  min-height: calc(100vh - 84px);
  margin: 0 auto;
  padding: clamp(34px, 4.2vw, 64px) clamp(22px, 5vw, 78px);
  grid-template-columns: minmax(440px, 0.88fr) minmax(520px, 1fr);
  gap: clamp(28px, 4.5vw, 76px);
  align-items: start;
  background:
    radial-gradient(circle at 88% 18%, rgba(194, 135, 45, 0.12), transparent 23%),
    linear-gradient(100deg, rgba(255, 253, 248, 0.99) 0%, rgba(255, 253, 248, 0.94) 44%, rgba(247, 242, 234, 0.92) 100%),
    #fffdf8;
}

/* Live tier: only grid-template-columns survives here. min-height and the
   padding shorthand are re-declared unconditionally further down (the
   2026-06-29 offer pass and the rail pass), at every width. */
.create-studio {
  grid-template-columns: 1fr;
  min-height: auto;
  padding: 36px 22px 46px;
}

@media (min-width: 981px) {
.create-studio {
    grid-template-columns: minmax(440px, 0.88fr) minmax(520px, 1fr);
  }
}
/* Inert: the rail pass sets padding-inline: 0 unconditionally below. */
.create-studio {
  padding-inline: 14px;
}
/* 2026-06-29 profit-offer review pass */

.kit-copy h2 {
  max-width: 16ch;
}
.included-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0 0 22px;
}
.included-grid span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0 0 0 14px;
  color: #304849;
  font-size: 13px;
  font-weight: 850;
}
.included-grid span::before {
  top: 11px;
  left: 0;
  width: 6px;
  height: 6px;
}
.price-row {
  grid-template-columns: minmax(0, 1fr) minmax(220px, auto);
}
.create-studio {
  min-height: auto;
  padding-top: clamp(38px, 5vw, 70px);
  padding-bottom: clamp(42px, 5vw, 78px);
}
.template-strip,
.kit-section,
.trust-row,
.guide-index {
  width: min(1200px, calc(100% - 48px));
}
.kit-copy,
.guide-index-head p:last-child {
  max-width: 62ch;
}
.kit-section {
  gap: clamp(28px, 4vw, 54px);
}
.kit-copy h2,
.guide-index-head h2 {
  max-width: 12.5ch;
}
.guide-feature-card,
.guide-feature-list a {
  background-color: rgba(255, 253, 248, 0.9);
}

/* Inert: the 2026-07-03 rail pass re-declares width on this exact group
   unconditionally further down, at every width. */
.template-strip,
.kit-section,
.trust-row,
.guide-index {
  width: min(100% - 28px, 1200px);
}
/* 2026-07-03 root inversion: night hero + header + day seam + photo tiles + kit photo */

.night-header {
  border-bottom-color: rgba(233, 186, 82, 0.22);
  background: rgba(10, 24, 18, 0.94);
  backdrop-filter: blur(20px);
}
.night-header .brand-name,
.night-header .product-label,
.night-header .header-link {
  color: rgba(247, 243, 234, 0.82);
}
.night-header .language-switch {
  border-color: rgba(233, 186, 82, 0.28);
  background: rgba(16, 37, 27, 0.76);
}
.night-header .language-switch span {
  background: var(--candle);
  color: #10140d;
}
.night-header .language-switch a {
  color: rgba(247, 243, 234, 0.74);
}
.night-header .header-action:focus-visible {
  outline: 3px solid rgba(233, 186, 82, 0.5);
  outline-offset: 3px;
}

.night-header .header-link {
  border-color: rgba(126, 154, 140, 0.35);
  background: rgba(16, 37, 27, 0.82);
  color: rgba(247, 243, 234, 0.85);
}

@media (min-width: 681px) {
/* Above the phone tier there is no author border-color or background for
   this selector anywhere, so the explicit initials are exact; the colour
   returns to the value the .night-header lockup group sets at the same
   specificity a few rules above. */
.night-header .header-link {
    border-color: currentcolor;
    background: transparent;
    color: rgba(247, 243, 234, 0.82);
  }
}
.day-tool {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 242, 234, 0.92));
}
/* Photo backed starting point tiles */

/* Kit product photo */
.kit-photo {
  border-radius: 8px;
  border: 1px solid var(--sage-line);
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(34, 24, 14, 0.18);
  background: #f7f3ea;
}
.kit-photo img {
  width: 100%;
  height: 100%;
  min-height: clamp(420px, 44vw, 620px);
  display: block;
  object-fit: cover;
}
.kit-section {
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1fr);
}

/* Inert: the 2026-07-03 kit pass re-declares .kit-section's tracks
   unconditionally further down, at every width. */
.kit-section {
  grid-template-columns: 1fr;
}
/* ---- Shared rail primitives ----
   .rail-band  = a full-bleed section that pads to the gutter and
                 centers a --rail-max inner block.
   .rail-inner = the centered content block itself.               */
.root-hero-inner,
.night-steps-inner,
.faq-inner {
  width: 100%;
  max-width: var(--rail-max);
  margin-inline: auto;
}
/* Standalone (non-full-bleed) sections all share one width so
   their left/right edges line up with the railed bands above.
   The gutter is provided by the width formula, so zero any
   leftover per-section inline padding to keep content edges
   flush with the railed bands. */
.create-studio,
.template-strip,
.kit-section,
.trust-row,
.guide-index,
.faq-section {
  width: min(var(--rail-max), calc(100% - 2 * var(--rail-gutter)));
  margin-inline: auto;
  padding-inline: 0;
}
.night-steps-inner {
  display: grid;
  gap: clamp(22px, 2.6vw, 34px);
}
/* ---------- GENERATOR ---------- */
/* Equal visual weight: form column and preview column share the
   grid and align at top; preview is sticky-centered, tip attaches
   to the preview as a hairline footnote (not a floating strip). */
.create-studio.day-tool {
  padding-block: clamp(44px, 5vw, 76px);
  padding-inline: 0;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: clamp(32px, 4vw, 68px);
  align-items: start;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 242, 234, 0.92));
}
/* Google Photos tip attached under the preview as a designed
   hairline footnote rather than a detached strip. */

/* ---------- STARTING-POINT TILES ---------- */
/* Fill the rail: 5 across, larger tiles, no box-in-box. */

/* ---------- KIT ---------- */
/* Product photo ~half the rail; deliberate purchase row. */
.kit-section {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 4vw, 68px);
  align-items: center;
  padding-block: clamp(40px, 4vw, 64px);
}
.kit-section .kit-photo img {
  min-height: clamp(440px, 40vw, 600px);
}
.kit-copy h2 {
  max-width: 15ch;
  text-wrap: balance;
}
.kit-copy .kit-lead,
.kit-copy .price-anchor,
.kit-copy .checkout-note {
  text-wrap: pretty;
}
.kit-section .price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
  margin-top: 4px;
  padding-top: 22px;
  border-top: 1px solid rgba(201, 189, 174, 0.62);
}
.kit-section .kit-cta {
  align-self: center;
  white-space: nowrap;
}

.kit-section {
  grid-template-columns: 1fr;
}
.kit-section .kit-photo img {
  min-height: clamp(320px, 60vw, 460px);
}

@media (min-width: 861px) {
.kit-section {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
.kit-section .kit-photo img {
    min-height: clamp(440px, 40vw, 600px);
  }
}
/* ---------- TRUST ROW ---------- */
.trust-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
  padding-block: clamp(28px, 3vw, 40px);
}
/* ---------- GUIDES ---------- */
/* Even-height grid on the rails; no dangling orphan cell.
   Featured photo card + a clean 2-col list of the 5 articles. */
.guide-index {
  padding-block: clamp(40px, 4vw, 64px);
}
.guide-index .guide-index-head,
.guide-index .guide-feature-layout {
  max-width: none;
  margin-inline: 0;
}
/* One card left (the Google Photos comparison); the old 5-card
   two-column grid rules are gone with it (2026-07-30 audit #3a). */
.guide-index .guide-feature-layout {
  grid-template-columns: 1fr;
  gap: clamp(16px, 1.6vw, 22px);
  align-items: stretch;
}
.guide-index .guide-feature-card {
  min-height: 0;
  height: 100%;
}
/* ---------- FAQ ---------- */
/* Same hairline card language as the rest: no filled boxes. */
.faq-section {
  padding-block: clamp(36px, 4vw, 56px) clamp(48px, 5vw, 72px);
}
.faq-inner .faq-head {
  margin-bottom: clamp(18px, 2vw, 26px);
}
.faq-inner .faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 0;
  border-top: 1px solid rgba(201, 189, 174, 0.62);
}
.faq-inner .faq-grid article {
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(201, 189, 174, 0.62);
  background: transparent;
  padding: clamp(20px, 2vw, 26px) clamp(20px, 2vw, 26px) clamp(20px, 2vw, 26px) 0;
}
.faq-inner .faq-grid article + article {
  border-left: 1px solid rgba(201, 189, 174, 0.62);
  padding-left: clamp(20px, 2vw, 26px);
}

.faq-inner .faq-grid {
  grid-template-columns: 1fr;
  border-top: 0;
}
.faq-inner .faq-grid article {
  padding: 18px 0;
}
.faq-inner .faq-grid article + article {
  border-left: 0;
  padding-left: 0;
}

@media (min-width: 761px) {
.faq-inner .faq-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(201, 189, 174, 0.62);
  }
.faq-inner .faq-grid article {
    padding: clamp(20px, 2vw, 26px) clamp(20px, 2vw, 26px) clamp(20px, 2vw, 26px) 0;
  }
.faq-inner .faq-grid article + article {
    border-left: 1px solid rgba(201, 189, 174, 0.62);
    padding-left: clamp(20px, 2vw, 26px);
  }
}
/* Inert: the wider day-tool tier immediately below re-declares both
   properties for the same selector, so this one never decided anything. */
.create-studio.day-tool {
  grid-template-columns: 1fr;
  gap: 28px;
}
.create-studio.day-tool {
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 44px);
}

@media (min-width: 981px) {
.create-studio.day-tool {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    gap: clamp(32px, 4vw, 68px);
  }
}
/* ============================================================
   2026-07-03 opus2 — Reading-comfort typography system (Build E)
   EN + ES, all surfaces. Applies the editorial canon (Medium /
   iA / NYT-class article pages) as a SYSTEM: display leading
   scales inversely with size and never goes negative; headings
   follow more-above-than-below rhythm; the guide article body
   reads at a comfortable 19px/1.7 with real paragraph spacing;
   hairline rules get clearance so text never touches them.

   Appended last so it supersedes the layered history via cascade
   order without editing prior passes in place. Builds A/D own the
   root/photo-drop COMPOSITION; this pass touches only TYPE metrics
   inside those structures.

   Shared-class discipline (lesson from D): .night-steps /
   .night-section-head / .night-step-grid exist on BOTH the root
   (with a .night-steps-inner wrapper) and the photo-drop pages
   (no wrapper, styled in photo-drop.css). To avoid cross-page
   collisions this block does NOT touch any .night-* selector here
   — the root night bands already carry safe leading (>=1.03) and
   photo-drop.css owns its own .night-* type. Every rule below is
   scoped to root-only (.root-night-copy, .studio-lead, .kit-copy,
   .faq-section, .guide-index-head) or guide-only (.guide-body and
   its descendants), so specificity stays flat.
   ============================================================ */

/* ---------- ROOT DISPLAY LEADING (never negative) ----------
   The root hero is a deliberate two-line short hero
   ("One event. / Every phone." — italic accent preserved by A).
   0.96 was accidental negative leading; 1.04 keeps the tight,
   confident feel while clearing the >=1.0 floor. The forced <br>
   keeps it two lines; the slightly wider measure lets the ES
   worst case ("Todos los teléfonos.") breathe without a cramped
   third-line wrap at desktop. */

/* Large paper section displays: lift off the sub-1.0 line and
   give each heading real space above the content it introduces
   (more-above-than-below), so the H2 never crowds the copy or the
   hairline directly beneath it. */

.kit-copy h2 {
  line-height: 1.08;
}
.faq-section h2 {
  line-height: 1.08;
}
.guide-index-head h2 {
  line-height: 1.08;
}
/* ============================================================
   2026-07-04 unification: root unified header + pricing ladder
   (additive block, darker-green era)
   ============================================================ */

.root-unified-header {
  gap: 18px;
}

@media (min-width: 1200px) {
.root-unified-header .brand-photodrop .pd-glyph {
    width: 38px;
    height: 38px;
  }
.root-unified-header .brand-photodrop .pd-word {
    font-size: 23px;
  }
.root-unified-header .brand-photodrop .pd-by {
    margin-top: 4px;
    font-size: 9.5px;
  }
}

/* Both inert: the 2026-07-20 one-row mobile header block at the end of
   this sheet re-declares .root-unified-header's gap and its .header-link
   display unconditionally, and owns the min-1080 desktop restore. */
.root-unified-header .header-link {
  display: none;
}
.root-unified-header {
  gap: 10px;
}
.root-pricing {
  padding: 96px 24px 104px;
  background: linear-gradient(180deg, var(--night), #07130d 92%);
  color: var(--night-paper);
}
.root-pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 1600px) {
.root-pricing-inner {
    max-width: 1280px;
  }
}
.root-pricing .night-section-head {
  margin-bottom: 0;
  /* Align the heading to the 880px tier-duo card rail: the base head
     rail is 1100px, which made the heading start ~110px left of the
     cards and read as a second grid (2026-07-30 audit #7). */
  width: min(880px, 100%);
}
/* ============================================================
   2026-07-05 polish: root guide index harmonized to Photodrop
   (feature card = photo with night scrim; list = hairline rows)
   ============================================================ */

/* Banner card: text measure capped so it doesn't stretch with the
   full rail (2026-07-30 audit #3a); min-height keeps the wide card
   from collapsing into a thin strip. */
.guide-feature-card strong {
  max-width: 18ch;
}
.guide-feature-card em {
  max-width: 62ch;
}
.guide-index .guide-feature-card {
  min-height: clamp(240px, 22vw, 320px);
}
.guide-feature-card {
  border-color: rgba(10, 24, 18, 0.18);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(10, 24, 18, 0.06) 0%, rgba(10, 24, 18, 0.4) 48%, rgba(10, 24, 18, 0.88) 100%),
    url("/assets/photo-drop-event-preview-guests.jpg") center / cover no-repeat;
}
.guide-feature-card:hover {
  border-color: rgba(233, 186, 82, 0.55);
}
.guide-feature-card span {
  color: var(--candle);
}
.guide-feature-card strong {
  color: var(--night-paper);
}
.guide-feature-card em {
  color: rgba(247, 243, 234, 0.85);
}
.guide-index-head h2 {
  color: var(--ink);
}
/* ============================================================
   2026-07-05 mobile polish (Mario's iPhone review)
   1) aligned compact mobile header  2) trust row stacks
   3) print-set block on brand (pine/gold, no legacy coral)
   4) sign preview reads as an object on phone
   ============================================================ */

/* 3) print-set price + CTA on brand at every width */
.price-row strong {
  color: var(--ink);
}
.price-amount .price-currency {
  color: var(--gold);
}
.kit-cta {
  background: linear-gradient(180deg, #f5c765, var(--candle));
  color: #241b07;
  font-weight: 750;
  box-shadow: 0 14px 26px rgba(233, 186, 82, 0.28);
}
.kit-cta:hover {
  filter: brightness(1.04);
}

/* 2) trust row: single column stack on phone, 2 columns on tablet, the
   four-up rail above. The two old phone tiers stacked, so they are
   re-emitted here in ASCENDING order — a single 701 restore would have
   out-ordered the 1021 one and pinned tablet tracks at desktop widths. */
.trust-row {
  grid-template-columns: 1fr;
  gap: 0;
}
.trust-row div {
  min-height: 0;
  padding: 16px 0 18px;
  align-content: start;
}

@media (min-width: 701px) {
.trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 30px);
  }
.trust-row div {
    min-height: 92px;
    padding: 0;
    align-content: center;
  }
}

@media (min-width: 1021px) {
.trust-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.price-row {
  align-items: stretch;
}
/* The .kit-cta phone tier above already covers everything at or below
   940, with these same values; the restore therefore lands at 941, not
   641, so the two tiers agree at every width. */
.price-row .kit-cta {
  min-width: 0;
  width: 100%;
}

@media (min-width: 641px) {
.price-row {
    align-items: center;
  }
}

@media (min-width: 941px) {
.price-row .kit-cta {
    min-width: 260px;
    width: auto;
  }
}
.hero-live {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: clamp(620px, 92vh, 900px);
  background: var(--night);
  color: var(--night-paper);
}
.hero-wall {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-auto-flow: dense;
  gap: 6px;
}
.hero-cell {
  position: relative;
  overflow: hidden;
  animation: pd-wall-arrive 1.4s cubic-bezier(0.22, 0.7, 0.3, 1) both;
}
.hero-cell.is-tall {
  grid-row: span 2;
}
.hero-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-cell:nth-child(2n) {
  animation-delay: 0.12s;
}
.hero-cell:nth-child(3n) {
  animation-delay: 0.26s;
}
.hero-cell:nth-child(5n) {
  animation-delay: 0.4s;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 62% 52% at 50% 46%, rgba(10, 24, 18, 0.86), rgba(10, 24, 18, 0.38) 68%, rgba(10, 24, 18, 0.18)),
    linear-gradient(180deg, rgba(10, 24, 18, 0.55), rgba(10, 24, 18, 0.15) 30%, rgba(10, 24, 18, 0.2) 62%, var(--night) 98%);
}

.hero-center {
  position: relative;
  z-index: 2;
  margin: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(72px, 11vh, 130px) clamp(24px, 8vw, 120px);
}
.hero-demo-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--candle);
  animation: pd-fade-up 0.7s 0.1s both;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: var(--candle);
  animation: pd-pulse-dot 1.6s ease-in-out infinite;
}
.hero-live h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(46px, 6.4vw, 92px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--night-paper);
  max-width: 1000px;
  text-wrap: balance;
  animation: pd-fade-up 0.7s 0.2s both;
}
.hero-sub {
  margin: 26px 0 0;
  font-family: var(--sans);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  color: rgba(247, 243, 234, 0.75);
  max-width: 620px;
  animation: pd-fade-up 0.7s 0.32s both;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 38px;
  animation: pd-fade-up 0.7s 0.44s both;
}
.hero-live .drop-primary {
  border-radius: 999px;
  min-height: 58px;
  padding: 0 32px;
  box-shadow: 0 8px 30px rgba(233, 186, 82, 0.25);
  transition: transform 0.18s ease;
}
.hero-live .drop-primary:hover {
  transform: translateY(-2px);
}
.hero-live .drop-secondary {
  border-radius: 999px;
  min-height: 56px;
  padding: 0 26px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(247, 243, 234, 0.85);
  border-color: rgba(247, 243, 234, 0.25);
  transition: border-color 0.18s ease;
}
.hero-live .drop-secondary:hover {
  border-color: rgba(247, 243, 234, 0.55);
}
.hero-facts {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 30px 0 0;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: rgba(247, 243, 234, 0.55);
  animation: pd-fade-up 0.7s 0.56s both;
}
.hero-facts span + span::before {
  content: "·";
  margin: 0 14px;
  opacity: 0.4;
}
/* --- countdown band --- */

.count-band {
  background: var(--night-raised);
  border-top: 1px solid rgba(247, 243, 234, 0.1);
  border-bottom: 1px solid rgba(247, 243, 234, 0.1);
  color: var(--night-paper);
  padding: clamp(56px, 7vw, 90px) clamp(20px, 4vw, 56px);
}
.count-band-inner {
  width: min(1220px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.count-copy h2 {
  margin: 0 0 20px;
  font-family: var(--display);
  font-size: clamp(30px, 3.1vw, 44px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--night-paper);
}
.count-lead {
  margin: 0;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
  color: rgba(247, 243, 234, 0.72);
  max-width: 520px;
}
.count-clock-block {
  margin-top: 30px;
  border-top: 1px solid rgba(247, 243, 234, 0.14);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.count-demo-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--candle);
}
.count-demo-note .pulse-dot {
  width: 7px;
  height: 7px;
}
.count-clock {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--candle);
}
.count-clock-sub {
  margin: 0;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: rgba(247, 243, 234, 0.6);
}
.count-link {
  display: inline-block;
  margin-top: 26px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--candle);
  text-decoration: none;
  padding: 10px 0;
  margin-bottom: -10px;
}
.count-link:hover,
.count-link:focus-visible {
  text-decoration: underline;
}
.held-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.held-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.held-grid img.is-held {
  filter: blur(9px) brightness(0.7);
}
/* Dashed gold = the product's "held, unlocks with a plan" idiom
   (same voice as the admin held-photos button and the upload
   dropzone); the small radius marks it as a chip, not a photo. */
.held-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  aspect-ratio: 1;
  border: 1.5px dashed rgba(233, 186, 82, 0.55);
  border-radius: 12px;
  background: rgba(233, 186, 82, 0.07);
  padding: 8px;
  text-align: center;
  font-family: var(--sans);
  color: var(--candle);
}
.held-tile-count {
  font-family: var(--display);
  font-size: clamp(21px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.held-tile-label {
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 600;
  line-height: 1.25;
  color: rgba(247, 243, 234, 0.72);
  text-wrap: balance;
}
/* --- stillness section --- */

.still-band {
  background: #050b08;
  padding: clamp(90px, 12vw, 170px) clamp(20px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(36px, 4vw, 52px);
}
.still-band h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(27px, 3.1vw, 42px);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: var(--night-paper);
  max-width: 720px;
  text-wrap: balance;
}
.still-frame {
  width: clamp(240px, 26vw, 320px);
  border: 10px solid rgba(247, 243, 234, 0.96);
  border-bottom-width: 28px;
  background: #0a0a0b;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}
.still-band h2 {
  scroll-margin-top: 110px;
}
.still-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  display: block;
  opacity: 0.92;
}
.still-lines {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 640px;
}
.still-line {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(17px, 1.8vw, 23px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: rgba(247, 243, 234, 0.82);
  text-wrap: balance;
}
.still-line.is-soft {
  font-family: var(--serif-accent);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: 0.005em;
  color: rgba(233, 186, 82, 0.75);
}

/* --- living night, phone (now the base) --- */
.hero-live {
  min-height: min(88vh, 760px);
}
.hero-wall {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 3px;
}
.hero-scrim {
  background: linear-gradient(180deg, rgba(10, 24, 18, 0.82), rgba(10, 24, 18, 0.66) 26%, rgba(10, 24, 18, 0.9) 58%, var(--night) 86%);
}
.hero-center {
  align-items: flex-start;
  text-align: left;
  padding: clamp(130px, 30vh, 200px) 22px 34px;
  margin: 0;
  justify-content: flex-end;
}
.hero-demo-note {
  margin-bottom: 18px;
  font-size: 12px;
}
.hero-live h1 {
  font-size: 48px;
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-align: left;
}
.hero-sub {
  /* 2026-07-15 audit: the literal value prop must survive on phones,
     where the Pinterest/WhatsApp traffic lands. Compact, not hidden. */
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.45;
  text-align: left;
  max-width: 34ch;
}
.hero-actions {
  width: 100%;
  margin-top: 20px;
}
.hero-live .drop-primary {
  width: 100%;
}
.hero-live .drop-secondary {
  display: none;
}
/* Of the .hero-facts declarations below only justify-content, gap,
   align-self and scrollbar-width decide anything: the 2026-07-20 wrap
   pass re-declares flex-wrap, overflow-x, margin and padding
   unconditionally further down, so those four are inert in both tiers. */
.hero-facts {
  justify-content: flex-start;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 8px;
  align-self: stretch;
  margin: 24px -22px 0;
  padding: 2px 22px 6px;
  scrollbar-width: none;
}
.hero-facts::-webkit-scrollbar {
  display: none;
}
.hero-facts span {
  flex: none;
  white-space: nowrap;
  border: 1px solid rgba(247, 243, 234, 0.22);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12.5px;
  color: rgba(247, 243, 234, 0.78);
}
.hero-facts span + span::before {
  content: none;
}
.count-band-inner {
  grid-template-columns: 1fr;
}

@media (min-width: 701px) {
.hero-live {
    min-height: clamp(620px, 92vh, 900px);
  }
.hero-wall {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 6px;
  }
.hero-scrim {
    /* Side vignette (2026-07-30 audit #6): the radial layer is darkest
       at CENTER, so edge columns rendered near full brightness — and
       the live rotation can land the pool's brightest frames (drop-11
       to -14, ~2.5x the luminance of the rest) at the edges, pulling
       the eye off the headline. The 90deg layer disciplines the wide
       wall's flanks; the phone base above keeps its own scrim. */
    background:
      linear-gradient(90deg, rgba(10, 24, 18, 0.58), rgba(10, 24, 18, 0) 22%, rgba(10, 24, 18, 0) 78%, rgba(10, 24, 18, 0.58)),
      radial-gradient(ellipse 62% 52% at 50% 46%, rgba(10, 24, 18, 0.86), rgba(10, 24, 18, 0.38) 68%, rgba(10, 24, 18, 0.18)),
      linear-gradient(180deg, rgba(10, 24, 18, 0.55), rgba(10, 24, 18, 0.15) 30%, rgba(10, 24, 18, 0.2) 62%, var(--night) 98%);
  }
.hero-center {
    align-items: center;
    text-align: center;
    padding: clamp(72px, 11vh, 130px) clamp(24px, 8vw, 120px);
    margin: auto;
    justify-content: normal;
  }
.hero-demo-note {
    margin-bottom: 22px;
    font-size: 13px;
  }
/* h1 and .hero-sub have no author text-align above the phone tier, so
   the inherited value is restored rather than a guessed keyword. */
.hero-live h1 {
    font-size: clamp(46px, 6.4vw, 92px);
    line-height: 1.02;
    letter-spacing: -0.03em;
    text-align: inherit;
  }
.hero-sub {
    margin-top: 26px;
    font-size: clamp(17px, 1.6vw, 21px);
    line-height: 1.55;
    text-align: inherit;
    max-width: 620px;
  }
.hero-actions {
    width: auto;
    margin-top: 38px;
  }
.hero-live .drop-primary {
    width: auto;
  }
.hero-live .drop-secondary {
    display: inline-flex;
  }
.hero-facts {
    justify-content: center;
    gap: normal;
    align-self: auto;
    scrollbar-width: auto;
  }
.hero-facts::-webkit-scrollbar {
    display: revert;
  }
.hero-facts span {
    flex: 0 1 auto;
    white-space: inherit;
    border: none;
    border-radius: 0;
    padding: 0;
    font-size: inherit;
    color: inherit;
  }
.hero-facts span + span::before {
    content: "·";
  }
.count-band-inner {
    grid-template-columns: 1.05fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
.hero-cell,
  .hero-demo-note,
  .hero-live h1,
  .hero-sub,
  .hero-actions,
  .hero-facts,
  .pulse-dot,
  .held-tile.is-pulse,
  .still-photo {
    animation: none !important;
  }
.still-photo {
    opacity: 0.9;
  }
}
/* Closing band (2026-07-30 audit #1): the page used to end at the FAQ
   with no action in sight; this bookends back into night and hands the
   reader the same door the hero opened. Background matches the quiet
   footer so the page closes into one continuous night surface. */
.root-close {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 64px 24px 30px;
  background: var(--night, #0a1812);
  color: var(--night-paper, #f7f3ea);
  text-align: center;
}
.root-close h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.02em;
}
.root-close p {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(247, 243, 234, 0.75);
}

@media (min-width: 720px) {
.root-close {
    padding: 84px 24px 40px;
  }
}
/* Quiet footer: the privacy link needs a home; nothing else competes. */
.site-footer-quiet {
  text-align: center;
  padding: 8px 20px 40px;
  font-size: 13px;
  background: var(--night, #0a1812);
  color: rgba(247, 243, 234, 0.55);
}
.site-footer-quiet a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 10px;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-footer-quiet a:hover,
.site-footer-quiet a:focus-visible {
  color: rgba(233, 186, 82, 0.85);
}
/* ============================================================
   2026-07-11 memorial band on the root homepages: one quiet
   cross-link to /memorials/ placed after the stillness section,
   where the page is already serious. Same physical-print language
   as the memorial landing hero. Register rules:
   decisions/2026-07-11-memorial-positioning-plan.md.
   ============================================================ */

.memorial-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(56px, 8vw, 110px) clamp(20px, 4vw, 56px);
  background: #050b08;
}
.memorial-band-print {
  flex: 0 0 auto;
  width: min(280px, 72vw);
  padding: 8px 8px 20px;
  background: #fffdf8;
  border-radius: 4px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
  transform: rotate(-2deg);
}
.memorial-band-print img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
  /* Blank-print tone while the lazy photo arrives: on the night band a
     bare white polaroid reads as a broken void (2026-07-30 audit #4). */
  background: #e6ddcd;
}
.memorial-band-copy {
  max-width: 480px;
  color: #f7f3ea;
}
.memorial-band-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.memorial-band-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1.5px solid rgba(233, 186, 82, 0.55);
  border-radius: 999px;
  color: #e9ba52;
  font-weight: 700;
  text-decoration: none;
}
.memorial-band-link:hover,
.memorial-band-link:focus-visible {
  background: rgba(233, 186, 82, 0.12);
  color: #f2ce7f;
}

.memorial-band-copy {
  text-align: center;
}

@media (min-width: 701px) {
.memorial-band-copy {
    text-align: inherit;
  }
}
/* ============================================================
   2026-07-12 memorial hero band, concept "Handed down" (Claude
   Design round, Fable 5; spec in the memorial positioning plan).
   Hero-scale second act: one dominant print, one quiet beat.
   ============================================================ */

.memorial-hero-band {
  min-height: min(88vh, 860px);
  padding: clamp(72px, 10vw, 150px) clamp(20px, 4vw, 56px);
  gap: clamp(36px, 6vw, 96px);
}
.memorial-hero-band .memorial-band-copy {
  max-width: 560px;
}
.memorial-hero-band .memorial-band-eyebrow {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #e9ba52;
}
.memorial-hero-band .memorial-band-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.memorial-hero-band .memorial-band-sub {
  margin: 0 0 28px;
  font-size: clamp(16.5px, 1.4vw, 19px);
  line-height: 1.6;
  color: rgba(247, 243, 234, 0.78);
  max-width: 46ch;
}
.memorial-band-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.memorial-band-quiet {
  color: rgba(247, 243, 234, 0.8);
  font-size: 15px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}
.memorial-band-quiet:hover,
.memorial-band-quiet:focus-visible {
  color: #e9ba52;
}
.memorial-hero-band .memorial-band-print {
  margin: 0;
  width: min(480px, 86vw);
  padding: 14px 14px 20px;
  transform: rotate(-2.5deg);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.55);
}
.memorial-hero-band .memorial-band-print figcaption {
  padding: 16px 6px 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 16px;
  color: #3c4a42;
  text-align: center;
}

.memorial-hero-band {
  flex-direction: column-reverse;
  min-height: 0;
}
.memorial-hero-band .memorial-band-copy {
  text-align: center;
}
.memorial-hero-band .memorial-band-sub {
  margin-inline: auto;
}
.memorial-band-actions {
  justify-content: center;
}
.memorial-hero-band .memorial-band-print {
  transform: rotate(-2deg);
}

@media (min-width: 761px) {
.memorial-hero-band {
    flex-direction: row;
    min-height: min(88vh, 860px);
  }
.memorial-hero-band .memorial-band-copy {
    text-align: inherit;
  }
.memorial-hero-band .memorial-band-sub {
    margin-inline: 0;
  }
.memorial-band-actions {
    justify-content: normal;
  }
.memorial-hero-band .memorial-band-print {
    transform: rotate(-2.5deg);
  }
}
/* Print studio showcase (2026-07-12, qr-studio round): replaces the
   legacy any-link generator inside the same day-tool surface. Two
   columns: the pitch, and real engine-rendered sample pieces. */
.hero-shell.create-studio.studio-showcase {
  grid-template-columns: minmax(380px, 1fr) minmax(340px, 0.88fr);
  gap: 44px;
  align-items: center;
}
.showcase-lead {
  display: grid;
  gap: 18px;
  justify-items: start;
}
.showcase-lead h2 {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.06;
  letter-spacing: 0;
}
.showcase-lead .hero-copy {
  margin: 0;
  max-width: 46ch;
  color: #314648;
  font-size: clamp(16px, 1.08vw, 17px);
  line-height: 1.5;
}
.studio-showcase .simple-proof {
  display: grid;
  gap: 8px;
  justify-items: start;
}
.studio-showcase .simple-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(13, 82, 64, 0.16);
  border-radius: 999px;
  background: rgba(226, 232, 227, 0.58);
  color: #174447;
  padding: 4px 14px;
  font-size: 14px;
  font-weight: 700;
}
.showcase-actions {
  display: grid;
  gap: 10px;
  justify-items: start;
}
.showcase-actions .download-action {
  display: inline-flex;
  align-items: center;
  padding: 14px 30px;
  border-radius: 999px;
  text-decoration: none;
}
.showcase-note {
  margin: 0;
  max-width: 44ch;
  font-size: 14px;
  line-height: 1.5;
  color: #4c5a57;
}
.showcase-stage {
  display: grid;
  gap: 16px;
}
.showcase-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.showcase-chip {
  min-height: 48px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(13, 82, 64, 0.28);
  background: rgba(255, 255, 255, 0.85);
  color: #093D2E;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}
.showcase-chip:focus-visible {
  outline: 2px solid rgba(15, 61, 56, 0.65);
  outline-offset: 2px;
}
.showcase-frame {
  margin: 0;
}
.showcase-frame img {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  margin: 0 auto;
  border-radius: 10px;
  /* Paper placeholder while the sample loads (2026-07-30 audit #4). */
  background: #f2ede2;
  border: 1px solid rgba(13, 82, 64, 0.14);
  box-shadow: 0 22px 48px rgba(9, 42, 38, 0.16);
}
.showcase-frame figcaption {
  margin-top: 10px;
  font-size: 14px;
  color: #4c5a57;
  text-align: center;
}

.hero-shell.create-studio.studio-showcase {
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 961px) {
.hero-shell.create-studio.studio-showcase {
    grid-template-columns: minmax(380px, 1fr) minmax(340px, 0.88fr);
    gap: 44px;
  }
}
.tier-year-list {
  margin: 0;
  padding-left: 18px;
  max-width: 56ch;
  display: grid;
  gap: 6px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(247, 243, 234, 0.85);
}
.tier-year-list li::marker {
  color: #e9ba52;
}

/* The studio-proof chips stagger as a desktop rhythm; stacked on a
   phone the offsets read as misalignment. Flush left, one per line. */
.simple-proof {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.simple-proof span + span {
  margin-left: 0;
  padding-left: 0;
  border-left: 0;
}
/* Six kit bullets in three columns wrap every word at 390; one
   roomy column on phones. The .included-grid tier at the top of this
   sheet already holds 1fr up to 940, so the restore is at 941 — a 641
   restore would have out-ordered it and given three columns on tablet. */
.included-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 641px) {
.simple-proof {
    display: flex;
    flex-direction: row;
    align-items: normal;
    gap: 0;
  }
.simple-proof span + span {
    margin-left: 14px;
    padding-left: 14px;
    border-left: 1px solid rgba(22, 50, 53, 0.2);
  }
}

@media (min-width: 941px) {
.included-grid {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }
}
/* ============================================================
   one-row mobile header (root) — 2026-07-20, mirrors the
   photo-drop.css block per Mario's ruling: base = phone (lockup
   left, other-language pill right, nav links and CTA demoted —
   the hero CTA is on the first screen), min-width restores the
   desktop composition.
   ============================================================ */

.root-unified-header {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 62px;
}
.root-unified-header .header-actions {
  display: flex;
  width: auto;
  align-items: center;
  gap: 10px;
  flex: none;
}
.root-unified-header .header-link {
  display: none;
}
.root-unified-header .header-action {
  display: none;
}
.root-unified-header .language-switch span {
  display: none;
}
.root-unified-header .language-switch a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
}
.root-unified-header .brand-photodrop .pd-glyph {
  width: 32px;
  height: 32px;
}
.root-unified-header .brand-photodrop .pd-word {
  font-size: 18px;
}

@media (min-width: 1080px) {
/* Desktop header restores at 1080px, NOT 720px: the full row (lockup +
   toggle + nav + CTA) needs ~880px and the 720-1079 band clipped the
   CTA off the right edge under the overflow-x clip (Mario's report,
   2026-07-23). Tablets keep the compact phone header. */
/* Explicit inline-flex, NOT `revert`: revert rolls back to the UA
   default (inline), flex-item blockification turns that into block,
   and the 42-48px boxes render their text top-aligned instead of
   centered (2026-07-30, Mario's desktop report). */
.root-unified-header .header-link {
    display: inline-flex;
  }
.root-unified-header .header-action {
    display: inline-flex;
  }
.root-unified-header .language-switch span {
    display: inline-flex;
  }
.root-unified-header .brand-photodrop .pd-glyph {
    width: 30px;
    height: 30px;
  }
.root-unified-header .brand-photodrop .pd-word {
    font-size: 19px;
  }
}

@media (min-width: 1200px) {
.root-unified-header .brand-photodrop .pd-glyph {
    width: 38px;
    height: 38px;
  }
.root-unified-header .brand-photodrop .pd-word {
    font-size: 23px;
  }
}
.hero-facts {
  flex-wrap: wrap;
  overflow-x: visible;
  margin: 24px 0 0;
  padding: 0;
}

@media (min-width: 720px) {
.hero-facts {
    margin: 30px 0 0;
  }
}
/* mobile polish 2026-07-20: the kit-section card had zero
   horizontal padding on phones — text sat 1px from its border.
   Desktop rails its content; base = phone gets a real gutter. */
.kit-section {
  padding-inline: 20px;
}

@media (min-width: 720px) {
.kit-section {
    padding-inline: 0;
  }
}
