/* Sommplicity — styles taken from the live site's real CSS.
   Sources cited per block: base.css, clean-simple.css, home-core-journey.css,
   homepage-layout-fixes.css, ux-flow.css, and inline rules in home.html. */

/* ---- Tokens (base.css :root + clean-simple.css :root) ---- */
:root {
  --font-display: "Cormorant Garamond", Georgia, serif; /* live homepage headings */
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --clean-bg: #ffffff;
  --clean-soft: #f6f5f2;
  --clean-ink: #182033;
  --clean-text: #2f3337;
  --clean-muted: #646b73;
  --clean-line: rgba(24, 32, 51, .11);
  --clean-line-strong: rgba(24, 32, 51, .18);
  --clean-accent: #5C1F26;
  --clean-accent-hover: #49171d;
  --clean-navy: #14213A;
  --clean-gold: #B8963E;
  --clean-radius: 8px;
  --clean-radius-sm: 5px;
  --clean-shadow: 0 10px 30px rgba(20, 33, 58, .08);
  --clean-shadow-hover: 0 16px 42px rgba(20, 33, 58, .12);
  --clean-max: 1180px;
  --clean-section-y: clamp(56px, 7vw, 92px);
  --label-spacing: .16em; /* clean-simple.css clamps all labels to .16em */
}

* { box-sizing: border-box; margin: 0; padding: 0; } /* base.css */

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

#digital-guides { scroll-margin-top: 88px; }

/* base.css html,body + clean-simple.css body */
body {
  background: var(--clean-bg);
  color: var(--clean-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
::selection { background: #5c1f2624; } /* clean-simple.css */

p { color: var(--clean-muted); max-width: 70ch; margin: 0 0 1.1em; }
a { color: var(--clean-accent); }

/* Headings: Cormorant Garamond on the live homepage (hcj h1, inline h2s) */
h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--clean-navy);
  letter-spacing: 0;
  text-wrap: balance;
}

/* .home-premium-hero h1: clamp(44px,7vw,82px)/650/.96 — scaled context here
   uses the .hcj variant clamp(44px,7vw,76px), weight 650, line-height .98 */
h1 {
  font-size: clamp(44px, 7vw, 76px);
  font-weight: 650;
  line-height: .98;
  margin: 0 0 20px;
}

/* inline About h2: clamp(36px,4vw,52px)/400/1.08 */
h2 {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.08;
  margin: 0 0 24px;
}

/* .hcj-panel h2 scale: 30px/1.06 */
h3 {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.06;
  margin: 0 0 8px;
}

/* ---- Eyebrow label (.hcj-kicker / .home-premium-hero__eyebrow) ---- */
.eyebrow {
  display: block;
  color: var(--clean-accent);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .24em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* Gold hairline rule (.ds-rule / .home-heading:after) */
.gold-rule {
  width: 56px;
  height: 1px;
  background: rgba(184, 150, 62, .38);
  border: 0;
  margin: 0 0 18px;
}

/* ---- Layout ---- */
.wrap {
  max-width: var(--clean-max);
  margin: 0 auto;
  padding: 0 48px; /* live sections pad 64px 48px */
}

.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }

/* Inner pages keep a single centred column with section-scale padding */
main.wrap {
  max-width: 760px;
  padding-block: var(--clean-section-y);
}

main.wrap h1 { font-size: clamp(36px, 5vw, 52px); margin-bottom: 24px; }

/* Section rhythm (clean-simple.css: padding-block var(--clean-section-y),
   each band separated by 1px solid var(--clean-line)) */
.band {
  padding-block: var(--clean-section-y);
  background: var(--clean-bg);
  border-bottom: 1px solid var(--clean-line);
}
.band--soft { background: var(--clean-bg); }

/* Cream color block */
.band--cream { background: var(--clean-soft); }

/* Blush color block: pale wine tint */
.band--blush { background: var(--clean-soft); }

/* Navy color block */
.band--navy { background: var(--clean-navy); border-bottom: 0; }
.band--navy h2, .band--navy h3 { color: #fff; }
.band--navy p, .band--navy li { color: rgba(255, 255, 255, .78); }
.band--navy .eyebrow { color: rgba(226, 204, 142, .95); }
.band--navy .gold-rule { background: rgba(226, 204, 142, .5); }
.band--navy h2 .accent { color: #E2CC8E; }
.band--navy .feature-media img { border-color: rgba(255, 255, 255, .2); box-shadow: 0 18px 48px rgba(0, 0, 0, .35); }

/* Maroon color block (accent band, white text) */
.band--maroon { background: var(--clean-accent); border-bottom: 0; }
.band--maroon h1, .band--maroon h2, .band--maroon h3 { color: #fff; }
.band--maroon strong, .band--maroon .coming strong {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  letter-spacing: .01em;
}
.band--maroon p, .band--maroon li { color: rgba(255, 255, 255, .82); }
.band--maroon .eyebrow { color: rgba(226, 204, 142, .95); }
.band--maroon h1 .accent, .band--maroon h2 .accent { color: #E2CC8E; }
.band--maroon .feature-media img { border-color: rgba(255, 255, 255, .2); box-shadow: 0 18px 48px rgba(0, 0, 0, .3); }
.band--maroon .app-note, .band--maroon .price { color: #fff; }
.band--maroon .gold-rule { background: rgba(226, 204, 142, .5); }

main > .band:first-child { border-top: 0; }

/* ---- Header (clean-simple.css .topnav block) ---- */
header.topnav {
  height: 76px;
  background: #fffffff5;
  border-bottom: 1px solid var(--clean-line);
  position: sticky;
  top: 0;
  z-index: 100;
}

.topnav-inner {
  max-width: var(--clean-max);
  margin: 0 auto;
  height: 100%;
  padding-inline: 30px; /* .topnav-inner padding-inline:30px */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

/* Wordmark: serif accent name over a tiny-caps tagline */
.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: lowercase;
  color: var(--clean-accent);
}

.brand-tag {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--clean-muted);
}

/* Nav links (.topnav-link: navy, .16em, uppercase, underline accent on hover) */
nav.topnav-links { display: flex; align-items: center; gap: 18px; }

nav.topnav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 2px;
  color: var(--clean-navy);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--label-spacing);
  text-transform: uppercase;
  text-decoration: none;
}

nav.topnav-links a::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 6px;
  height: 1px;
  background: var(--clean-accent);
  transform: scaleX(0);
  transition: transform .2s ease;
}

nav.topnav-links a:hover,
nav.topnav-links a[aria-current="page"] { color: var(--clean-accent); }
nav.topnav-links a:hover::after,
nav.topnav-links a[aria-current="page"]::after { transform: scaleX(1); }

/* ---- Hero (home-core-journey.css .hcj / homepage-layout-fixes.css hero) ---- */
.hero-shell {
  max-width: var(--clean-max);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 70px) clamp(16px, 5vw, 48px) clamp(34px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .72fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.hero-band {
  background: #fff;
  border-bottom: 1px solid rgba(20, 33, 58, .08);
}

.hero-copy h1 { max-width: 760px; }

/* .hcj-lede: Inter clamp(16px,2vw,19px)/500/1.62 color #344052 */
.hero-copy .subhead {
  color: var(--clean-muted);
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.7;
  margin: 18px 0 0;
  max-width: 560px;
}

/* Glass floats directly on the page background (no card) */
.hero-panel {
  align-self: center;
  display: grid;
  justify-items: center;
}

.hero-panel img {
  width: min(52vw, 250px);
  height: auto;
  filter: drop-shadow(0 28px 46px rgba(20, 33, 58, .14));
}

/* ---- Buttons (.hcj-btn: 4px radius, Inter 11/850/.14em, min-height 50px) ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  background: var(--clean-accent);
  border: 1px solid var(--clean-accent);
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .18s ease, box-shadow .16s ease, transform .16s ease;
}

.btn:hover {
  background: var(--clean-accent-hover);
  border-color: var(--clean-accent-hover);
  box-shadow: 0 14px 30px #5c1f2629; /* .hcj-btn:hover */
  transform: translateY(-1px);
}

/* Muted non-clickable placeholder, same metrics as .btn */
.coming-soon {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  color: #8c9299; /* --clean-faint */
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.book-availability {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1.45;
  max-width: 100%;
  width: 100%;
}
.book-availability > span {
  max-width: 100%;
  overflow-wrap: anywhere;
}

/* ---- Cards (clean-simple.css .ds-card block) ---- */
.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}

.card,
.product,
.follow-row {
  background: #fff;
  border: 1px solid var(--clean-line);
  border-radius: var(--clean-radius);
  box-shadow: none; /* resting: none per .ds-card */
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.card {
  display: block;
  padding: 24px;
  text-decoration: none;
  color: var(--clean-text);
}

.card:hover,
.follow-row:hover {
  border-color: #b8963e80; /* gold-tinted hover border */
  transform: translateY(-2px);
  box-shadow: var(--clean-shadow-hover);
}

.card h3 { font-size: 26px; }
.card p { margin: 0; font-size: .92rem; line-height: 1.6; }

/* Card link label: Inter 10px/700/.16em uppercase accent (ux-flow buttons) */
.card .go,
.follow-row .handle {
  display: inline-block;
  margin-top: 16px;
  color: var(--clean-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: var(--label-spacing);
  text-transform: uppercase;
}

/* ---- Numbered list on home: editorial hanging serif numerals ---- */
.coming ol {
  list-style: none;
  counter-reset: item;
  margin: 40px 0 0;
  padding: 0;
}

.coming li {
  counter-increment: item;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0 10px;
  align-items: baseline;
  padding: 30px 0;
  line-height: 1.7;
  max-width: 66ch;
}

.coming li + li { border-top: 1px solid rgba(255, 255, 255, .16); }

.coming li::before {
  content: "0" counter(item);
  font-family: var(--font-display);
  font-size: 34px;
  font-style: italic;
  font-weight: 400;
  color: rgba(226, 204, 142, .75);
  line-height: 1;
}

.coming strong {
  display: block;
  color: #E2CC8E;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.coming li span { display: block; }
.coming li a { color: #E2CC8E; text-decoration: none; border-bottom: 1px solid rgba(226, 204, 142, .5); }
.coming li a:hover { color: #fff; }
.coming li > div { min-width: 0; }
.road-top {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.road-tag {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(226, 204, 142, .95);
  border: 1px solid rgba(226, 204, 142, .4);
  border-radius: 999px;
  padding: 5px 12px;
  white-space: nowrap;
}
.coming li > div > span { color: rgba(255, 255, 255, .78); font-size: 15px; }

/* ---- About Sommplicity and Gina ---- */
.about-sommplicity-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}
.about-sommplicity h2 {
  font-size: clamp(38px, 4.8vw, 56px);
  margin: 0;
}
.about-sommplicity-copy p {
  font-size: 16px;
  line-height: 1.75;
}
.about-sommplicity .about-principle {
  border-left: 3px solid var(--clean-accent);
  color: var(--clean-navy);
  font-family: var(--font-display);
  font-size: 21px;
  font-style: italic;
  line-height: 1.5;
  margin: 30px 0 0;
  padding: 4px 0 4px 22px;
}
.about-gina {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}

.portrait-frame { position: sticky; top: 100px; }

.about-copy h1,
.about-copy h2 { font-size: clamp(40px, 5vw, 60px); font-weight: 500; margin-bottom: 4px; }
.about-copy .stat-row { margin-top: 20px; margin-bottom: 28px; }

.about-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.about-ctas .btn { box-shadow: 4px 4px 0 rgba(20, 33, 58, .9); }
.about-ctas .btn--ghost { box-shadow: none; }
.about-ctas .btn:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 rgba(20, 33, 58, .9); }
.about-ctas .btn--ghost:hover { transform: translateY(-1px); box-shadow: var(--clean-shadow); }
.about-copy .story p { max-width: 62ch; }

.portrait-frame {
  position: relative;
  max-width: 90%;
  justify-self: center;
}

/* photo: 1px solid rgba(92,31,38,.34) border, 8px white padding, 3/4 crop */
.portrait-frame img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
  border: 1px solid rgba(92, 31, 38, .34);
  padding: 8px;
  background: #fff;
}

/* floating label: Inter 11px/.36em uppercase navy on white card */
.portrait-label {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #E5E7EB;
  padding: 10px 28px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--clean-navy);
  white-space: nowrap;
}

/* Diamond-flanked eyebrow (inline: svg diamonds + 11px/.42em label,
   clamped to .16em by clean-simple; we keep the stronger .24em kicker) */
.diamond-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.diamond-eyebrow .eyebrow { margin: 0; }
.diamond-eyebrow .diamond { color: var(--clean-accent); font-size: 8px; line-height: 1; }

/* Credential stat row (inline: flex gap 48px, hairline top+bottom) */
.stat-row {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin: 32px 0 0;
  padding: 24px 0;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
}

/* number: Cormorant 28px italic accent; label: Inter 9px/.26em uppercase */
.stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  color: var(--clean-accent);
  line-height: 1.2;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #6B6B6B;
  margin-top: 2px;
}

/* ---- App page screenshots ---- */
.shots { margin-top: var(--clean-section-y); }

.shot {
  display: flex;
  align-items: center;
  gap: clamp(28px, 5vw, 56px);
  margin-bottom: clamp(44px, 6vw, 72px);
}

.shot:nth-child(even) { flex-direction: row-reverse; }

/* framed like .wf-preview / .hec-preview: white, clean-line, 8px, soft shadow */
.shot img {
  width: 260px;
  max-width: 100%;
  height: auto;
  border: 1px solid var(--clean-line);
  border-radius: var(--clean-radius);
  box-shadow: 0 12px 34px #14213a14; /* .hec-preview */
  flex-shrink: 0;
}

.shot .caption { font-size: .92rem; color: var(--clean-muted); line-height: 1.6; }
.shot .caption strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.1;
  color: var(--clean-navy);
  margin-bottom: 8px;
}

.app-note {
  text-align: center;
  font-size: .92rem;
  letter-spacing: .04em;
  color: var(--clean-muted);
  margin: 0 auto;
}

/* ---- Shop products ---- */
.product {
  display: flex;
  gap: 30px;
  padding: clamp(20px, 4vw, 30px);
  margin-bottom: 24px;
  align-items: flex-start;
}

.product img {
  width: 190px;
  max-width: 40%;
  height: auto;
  border: 1px solid var(--clean-line);
  border-radius: 4px;
  box-shadow: 0 12px 34px #14213a14;
  flex-shrink: 0;
}

.product h2 { font-size: clamp(28px, 3.2vw, 40px); margin: 0 0 12px; } /* .hec-copy h3 scale */
.product p { color: var(--clean-muted); }

/* price: Cormorant 30px/600 (inline featured band) */
.product .price {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  color: var(--clean-navy);
  margin-bottom: 20px;
}

/* ---- Follow page ---- */
.follow-list { margin-top: 40px; }

.follow-row {
  display: block;
  padding: 22px 26px;
  margin-bottom: 14px;
  text-decoration: none;
  color: var(--clean-text);
}

.follow-row .platform {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  color: var(--clean-navy);
}

.follow-row .handle { margin: 0 0 0 12px; }
.follow-row p { margin: 6px 0 0; font-size: .92rem; }

/* ---- About page contact and follow ---- */
.contact-follow { padding-block: clamp(44px, 5vw, 64px); }
.contact-follow-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.contact-follow h2 {
  font-size: clamp(32px, 3.5vw, 42px);
  margin-bottom: 14px;
}
.contact-follow-intro > p {
  font-size: 14px;
  line-height: 1.65;
  max-width: 52ch;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.contact-actions .btn {
  box-shadow: none;
  font-size: 9px;
  padding: 10px 13px;
}
.contact-social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  padding-top: 4px;
}
.contact-social-icons a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  background: rgba(255, 255, 255, .56);
  border: 1px solid var(--clean-line);
  border-radius: 50%;
  color: var(--clean-navy);
  transition: border-color .18s ease, box-shadow .18s ease, color .18s ease, transform .18s ease;
}
.contact-social-icons a:hover {
  border-color: rgba(92, 31, 38, .32);
  box-shadow: 0 4px 12px rgba(20, 33, 58, .08);
  color: var(--clean-accent);
  transform: translateY(-1px);
}
.contact-social-icons svg {
  width: 16px;
  height: 16px;
}

/* ---- Story (about page) ---- */
.story p { margin-bottom: 1.4em; }
.story strong { color: var(--clean-accent); font-weight: 600; }

/* ---- Philosophy quote block ---- */
.quote-band { text-align: center; }
.quote { margin: 0; }

.quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(26px, 3.6vw, 42px);
  font-weight: 400;
  line-height: 1.3;
  color: #fff !important;
  max-width: 24ch;
  margin: 0 auto 24px;
}

.quote-attr {
  font-size: 11px !important;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65) !important;
  margin: 0 auto 36px;
}

/* ---- Footer (home.html footer: #14213A, 64px 64px 32px) ---- */
footer {
  background: #fff;
  color: rgba(20, 26, 45, .78);
  padding: 64px 0 32px;
  text-align: center;
  border-top: 1px solid rgba(20, 26, 45, .10);
}

footer .wrap { max-width: 760px; }
footer a { color: var(--clean-navy); }

.signup-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--clean-navy);
  margin: 0 0 10px;
  max-width: none;
}

.signup .signup-sub {
  display: block;
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 26px;
  color: rgba(20, 26, 45, .65);
}

/* Two-option subscription checklist (minimal, no boxes) */
.signup .checks {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 22px auto 0;
  text-align: left;
}

.signup .check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.signup .check input {
  margin-top: 3px;
  accent-color: var(--clean-gold);
  flex-shrink: 0;
}

.signup .check strong {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 2px;
}

.signup .check em {
  display: block;
  font-style: normal;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, .55);
}

.signup .row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* input per clean-simple .ds-input: 1px strong border, 5px radius, 44px min */
.signup input[type="email"] {
  font-family: var(--font-body);
  font-size: .95rem;
  line-height: 1.4;
  min-height: 50px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: var(--clean-radius-sm);
  background: #fff;
  color: var(--clean-navy);
  min-width: 300px;
}

.signup input[type="email"]:focus {
  outline: none;
  border-color: var(--clean-gold);
  box-shadow: 0 0 0 3px rgba(184, 150, 62, .28); /* a11y focus ring */
}

/* Honeypot: real users never see or fill this */
.hp { position: absolute; left: -9999px; top: -9999px; }

.signup-done { font-size: .95rem; color: #fff; }
.signup-done p { color: #fff; margin-left: auto; margin-right: auto; }
.signup-done iframe {
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: var(--clean-radius-sm);
  background: #fff;
}

.signup-error { color: #E8B4B4; font-size: 13px; margin-top: 10px; }

/* credentials: footer h4 style — Inter 10px/.36em uppercase, dimmed gold */
.credentials {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: rgba(226, 204, 142, .8);
  margin: 44px 0 0;
  max-width: none;
}

/* social icon row */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 36px;
}
.footer-social a { color: rgba(255, 255, 255, .45); transition: color .18s ease, transform .18s ease; }
.footer-social a:hover { color: #E2CC8E; transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; display: block; }

.footer-meta {
  margin: 18px auto 0;
  font-size: 12.5px;
  letter-spacing: .02em;
  color: rgba(255, 255, 255, .5);
  max-width: none;
}
.footer-meta a { color: rgba(20, 26, 45, .65); text-decoration: none; border-bottom: 1px solid rgba(226, 204, 142, .5); }
.footer-meta a:hover { color: #E2CC8E; }


/* ---- Hero refinements (matching live landing) ---- */
.eyebrow-dash {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.eyebrow-dash::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--clean-gold);
}
.eyebrow-dash .eyebrow { margin: 0; }

.hero-copy h1 {
  font-size: clamp(56px, 8.5vw, 96px);
  font-weight: 500;
  letter-spacing: .01em;
  margin-bottom: 14px;
}

/* Serif subline in maroon, like the live hero */
.hero-serif-sub {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  color: var(--clean-accent);
  line-height: 1.25;
  margin: 0 0 16px;
  max-width: none;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

/* "made for ..." line under the hero actions */
.made-for {
  margin: 18px 0 0;
  font-size: 14px;
  color: var(--clean-muted);
  max-width: none;
}
.made-for strong { color: var(--clean-navy); font-weight: 700; }
.made-for .sep { color: var(--clean-accent); margin: 0 4px; font-weight: 300; }

.btn--ghost {
  background: #fff;
  color: var(--clean-navy);
  border: 1px solid var(--clean-line-strong);
}
.btn--ghost:hover {
  background: #fff;
  color: var(--clean-accent);
  border-color: var(--clean-accent);
  box-shadow: var(--clean-shadow);
}

/* Stat strip under hero (off-white band, serif numbers, tiny-caps labels) */
.stat-strip {
  background: var(--clean-navy);
  border-block: 0;
  padding-block: 34px;
}
.stat-strip .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
.stat-head {
  grid-column: 1 / -1;
  margin-bottom: 26px;
}
.stat-eyebrow {
  display: block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(226, 204, 142, .95);
  margin-bottom: 8px;
}
.stat-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: rgba(255, 255, 255, .8);
  margin: 0 auto;
  max-width: none;
  white-space: nowrap;
}
.stat-strip .wrap > div + div { border-left: 1px solid rgba(255, 255, 255, .2); }
.stat-strip .stat-num { font-style: normal; font-size: 26px; color: #fff; }
.stat-strip .stat-label { margin-top: 4px; color: rgba(226, 204, 142, .9); }

/* ---- Section headers with intent (eyebrow + two-tone serif heading) ---- */
.section-head { margin-bottom: 34px; }
.section-head h2 { margin-bottom: 0; }
h2 .accent { color: var(--clean-accent); font-style: italic; }

/* Horizontal brand logo above the approach section */
.logo-horizontal {
  width: 300px;
  max-width: 70vw;
  height: auto;
  margin: 0 0 26px -8px;
  mix-blend-mode: multiply; /* lets the white logo background disappear into the page */
}


/* ---- Shop featured layout (two-column feature bands) ---- */
.feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
.feature--flip { grid-template-columns: minmax(280px, .8fr) minmax(0, 1fr); }
.feature--flip .feature-media { order: -1; }
.feature-media { display: grid; justify-items: center; }
.feature h2 { font-size: clamp(30px, 3.6vw, 44px); }
.section-head h1 { font-size: clamp(40px, 5vw, 60px); font-weight: 500; margin: 0; }
.feature-media img {
  width: min(60vw, 300px);
}
.feature-media img[src*="screen"], .feature-media img[alt*="app"] {
  width: min(55vw, 250px);
  height: auto;
  border: 1px solid var(--clean-line);
  border-radius: var(--clean-radius);
  box-shadow: 0 18px 48px #14213a14;
}

/* ---- Split intro header (heading left, copy right, like the live site) ---- */
.intro-split {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
.intro-split .section-head { margin-bottom: 0; }
.intro-split > div:last-child p { margin: 0 0 1.1em; font-size: 15.5px; line-height: 1.7; }
.intro-split > div:last-child strong { color: var(--clean-accent); font-weight: 650; }
.intro-close {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--clean-gold) !important;
  border-top: 1px solid var(--clean-line);
  padding-top: 16px;
}
.intro-split > div:last-child p:last-child { margin-bottom: 0; }
.intro-split .gold-rule { margin-top: 22px; margin-bottom: 0; }

/* Navy app intro block */
.intro-band .section-head h1 { color: #fff; }
.intro-band .section-head h1 .accent { color: #E2CC8E; }
.intro-band .intro-split > div:last-child strong { color: #E2CC8E; }
.intro-band .intro-close {
  color: rgba(226, 204, 142, .95) !important;
  border-top: 1px solid rgba(255, 255, 255, .2);
}
.intro-band .intro-split { align-items: center; }

/* ---- App value props ---- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 48px);
}
.value-prop { position: relative; padding-top: 6px; }
.value-num {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 30px;
  color: rgba(184, 150, 62, .8);
  line-height: 1;
  margin-bottom: 12px;
}
.value-prop h3 { font-size: 24px; line-height: 1.2; margin-bottom: 10px; }
.value-prop h3 .accent { color: var(--clean-accent); font-style: italic; }
.value-prop p { font-size: 14px; line-height: 1.6; margin: 0; }

/* ---- Phone frame around app screenshots ---- */
.phone {
  position: relative;
  border: 10px solid #14213A;
  border-radius: 38px;
  background: #14213A;
  box-shadow: 0 24px 54px rgba(20, 33, 58, .28), inset 0 0 0 2px rgba(255, 255, 255, .06);
  overflow: hidden;
  width: min(50vw, 245px);
}
.phone::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 74px;
  height: 16px;
  background: #14213A;
  border-radius: 10px;
  z-index: 2;
}
.phone img { width: 100% !important; display: block; border: 0 !important; border-radius: 26px; box-shadow: none !important; }
.band--maroon .phone { border-color: #3a1218; background: #3a1218; box-shadow: 0 24px 54px rgba(0, 0, 0, .45); }
.band--maroon .phone::before { background: #3a1218; }
.band--navy .phone { border-color: #0d1626; background: #0d1626; box-shadow: 0 24px 54px rgba(0, 0, 0, .45); }
.band--navy .phone::before { background: #0d1626; }

/* skim emphasis in step copy */
.step-copy strong { color: var(--clean-accent); font-weight: 650; }
.band--maroon .step-copy strong, .band--navy .step-copy strong { color: #E2CC8E; }

/* ---- App story flow: tighter, intentional rhythm ---- */
.band--tight { padding-block: clamp(40px, 5vw, 60px); }

.step-copy { max-width: 46ch; }
.step-copy .eyebrow { margin-bottom: 10px; }
.step-copy .gold-rule { margin-bottom: 14px; }
.step-copy h2, .step-copy h1 { font-size: clamp(28px, 3.2vw, 40px); margin-bottom: 14px; line-height: 1.15; }
.step-copy p { margin: 0; font-size: 15.5px; line-height: 1.6; }
.step-copy .price { margin: 18px 0 20px; }
.band--tight .section-head h1 { margin-bottom: 6px; }
.section-head .gold-rule { margin-top: 18px; margin-bottom: 0; }



.band--tight .feature { align-items: center; gap: clamp(24px, 4vw, 48px); max-width: 880px; margin-inline: auto; }
.band--tight .feature .step-copy { justify-self: start; }
.band--tight .feature--flip .step-copy { justify-self: start; }
.band--tight .feature-media img { width: min(50vw, 225px); }

/* Final CTA band */
.cta-final { text-align: center; }
.cta-final p { margin-left: auto; margin-right: auto; }
.cta-final .btn { margin-top: 8px; }

.btn--cream {
  background: #E2CC8E;
  border-color: #E2CC8E;
  color: var(--clean-accent);
}
.btn--cream:hover {
  background: #d9bf7a;
  border-color: #d9bf7a;
  color: var(--clean-accent);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .25);
}

/* ---- App page: benefit-led product story ---- */
.app-hero { padding-block: clamp(52px, 6vw, 76px); }

.app-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, .6fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}

.app-hero-copy { max-width: 760px; }
.app-hero-copy h1 {
  color: #fff;
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.01;
  max-width: 620px;
}
.app-hero-copy h1 .accent { color: #E2CC8E; font-style: italic; }
.app-hero-lede {
  color: rgba(255, 255, 255, .84) !important;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.65;
  max-width: 59ch;
  margin: 20px 0 0;
}
.app-hero-promise {
  color: #E2CC8E !important;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-style: italic;
  line-height: 1.25;
  margin: 18px 0 0;
}
.app-hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.app-launch-status {
  color: rgba(226, 204, 142, .96);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.app-audience {
  color: rgba(255, 255, 255, .62) !important;
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  line-height: 1.45;
  margin: 24px 0 0;
}
.app-hero-visual {
  display: grid;
  justify-items: center;
  gap: 22px;
}
.app-hero-visual .phone--hero { width: min(28vw, 250px); }
.app-hero-visual > p {
  color: rgba(226, 204, 142, .88);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.6;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}
.app-hero-visual > p span { color: rgba(255, 255, 255, .36); margin-inline: 3px; }

.app-problem-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}
.app-problem h2 {
  font-size: clamp(38px, 4.8vw, 58px);
  margin: 0;
  max-width: 15ch;
}
.app-problem-copy { border-left: 1px solid var(--clean-line-strong); padding-left: clamp(28px, 4vw, 48px); }
.app-problem-copy p { font-size: 16px; line-height: 1.75; }
.app-problem-copy p:last-child { margin-bottom: 0; }
.app-problem-copy strong { color: var(--clean-accent); font-weight: 650; }

.app-journey-head {
  max-width: 820px;
  margin-bottom: 52px;
}
.app-journey-head h2 {
  font-size: clamp(40px, 5vw, 60px);
  margin-bottom: 18px;
}
.app-journey-head p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 66ch;
  margin: 0;
}
.journey-loop {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px;
  list-style: none;
  margin: 30px 0 14px;
  max-width: 930px;
  padding: 0;
}
.journey-loop li {
  position: relative;
  min-height: 108px;
  background: #fffdfa;
  border: 1px solid rgba(92, 31, 38, .16);
  border-top: 4px solid var(--clean-accent);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(20, 33, 58, .1);
}
.journey-loop a {
  display: grid;
  align-content: center;
  gap: 7px;
  min-height: 104px;
  padding: 19px 20px;
  color: var(--clean-accent);
  text-decoration: none;
}
.journey-loop li:hover,
.journey-loop li:focus-within {
  background: #f8eeec;
  box-shadow: 0 16px 34px rgba(20, 33, 58, .14);
  transform: translateY(-2px);
}
.journey-loop a:focus-visible {
  outline: 2px solid var(--clean-accent);
  outline-offset: 3px;
}
.journey-loop li:not(:last-child)::after {
  content: "\2192";
  position: absolute;
  top: 50%;
  right: -31px;
  z-index: 2;
  color: var(--clean-accent);
  font-family: var(--font-display);
  font-size: 31px;
  line-height: 1;
  transform: translateY(-50%);
}
.journey-loop li span {
  color: currentColor;
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  line-height: 1;
  opacity: .8;
}
.journey-loop li strong {
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .16em;
  line-height: 1.35;
  text-transform: uppercase;
}
.journey-loop-caption {
  color: var(--clean-accent) !important;
  font-family: var(--font-display);
  font-size: 18px !important;
  font-style: italic;
}
.app-steps { display: grid; gap: 24px; }
.app-step {
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
  background: #fff;
  border: 1px solid var(--clean-line);
  border-top: 3px solid var(--clean-accent);
  border-radius: 12px;
  box-shadow: 0 18px 52px rgba(20, 33, 58, .06);
  padding: clamp(28px, 4.5vw, 52px);
}
.app-step:nth-child(even) { border-top-color: var(--clean-gold); }
.app-step--flip .app-step-copy { order: 2; }
.app-step--flip .app-screen-grid { order: 1; }
.app-step-copy { max-width: 42ch; }
.app-step-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 14px;
}
.app-step-kicker span {
  color: var(--clean-gold);
  font-family: var(--font-display);
  font-size: 34px;
  font-style: italic;
  line-height: 1;
}
.app-step-kicker strong {
  color: var(--clean-accent);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.app-step h3 {
  font-size: clamp(31px, 3.3vw, 43px);
  line-height: 1.06;
  margin-bottom: 18px;
}
.app-step-copy > p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.app-step-copy .app-step-note { color: var(--clean-ink); font-weight: 500; }
.app-callouts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.app-callouts span {
  background: var(--clean-soft);
  border: 1px solid var(--clean-line);
  border-radius: 999px;
  color: var(--clean-accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  padding: 7px 10px;
  text-transform: uppercase;
}
.app-insight {
  border-left: 2px solid var(--clean-gold);
  color: var(--clean-accent);
  font-family: var(--font-display);
  font-size: 19px;
  font-style: italic;
  line-height: 1.4;
  margin-top: 24px;
  padding-left: 16px;
}

.app-screen-grid {
  display: grid;
  gap: 14px;
  justify-items: center;
  min-width: 0;
}
.app-screen-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.app-screen-grid--patterns {
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}
.app-screen-grid--recommendations {
  grid-template-columns: repeat(2, minmax(0, 310px));
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.app-screen-grid--patterns .app-screen-card,
.app-screen-grid--patterns .app-pattern-card { max-width: 360px; }
.app-screen-card {
  width: 100%;
  max-width: 260px;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(20, 33, 58, .14);
  border-radius: 10px;
  box-shadow: 0 16px 38px rgba(20, 33, 58, .12);
}
.app-screen-card--wide { max-width: 520px; }
.app-screen-card--scan-photo { max-width: 520px; }
.app-screen-card figcaption {
  background: var(--clean-navy);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
  padding: 11px 14px;
  text-transform: uppercase;
}
.app-screen-crop {
  height: 390px;
  overflow: hidden;
  background: #fdfcf9;
}
.app-screen-crop img {
  width: 100%;
  height: auto;
}
.app-screen-card--wide .app-screen-crop { height: 410px; }
.app-screen-card--scan-photo .app-screen-crop { height: 410px; }
.app-screen-crop--scan img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
}
.app-screen-crop--saved img { transform: translateY(-44px); }
.app-screen-crop--map img { transform: translateY(-42px); }
.app-screen-crop--region img { transform: translateY(-35px); }
.app-screen-crop--learn img { transform: translateY(-34px); }
.app-pattern-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 390px;
  margin: 0;
  padding: clamp(24px, 3vw, 34px);
  background: var(--clean-navy);
  border: 1px solid rgba(20, 33, 58, .14);
  border-radius: 10px;
  box-shadow: 0 16px 38px rgba(20, 33, 58, .16);
}
.app-pattern-card > span {
  color: #E2CC8E;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .2em;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.app-pattern-card h4 {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.5vw, 34px);
  font-weight: 500;
  line-height: 1.08;
  margin: 0 0 18px;
}
.app-pattern-card p {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
}
.app-pattern-card strong {
  color: #E2CC8E;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  margin-top: 26px;
  text-transform: uppercase;
}
.app-recommendation-card {
  align-self: center;
  width: min(100%, 310px);
  min-height: 520px;
  aspect-ratio: 9 / 16;
  padding: 48px 24px 30px;
  border: 6px solid #0d1728;
  border-radius: 30px;
  box-shadow: 0 22px 46px rgba(20, 33, 58, .24);
  position: relative;
}
.app-producer-card {
  align-self: center;
  width: min(100%, 310px);
  aspect-ratio: 9 / 16;
  margin: 0;
  overflow: hidden;
  background: #f8f5ee;
  border: 6px solid #0d1728;
  border-radius: 30px;
  box-shadow: 0 22px 46px rgba(20, 33, 58, .24);
}
.app-producer-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
}
.app-recommendation-card::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 50%;
  width: 58px;
  height: 5px;
  background: rgba(255, 255, 255, .3);
  border-radius: 999px;
  transform: translateX(-50%);
}
.app-recommendation-card h4 { font-size: clamp(24px, 2.2vw, 31px); }

.app-difference-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}
.app-difference h2 {
  font-size: clamp(40px, 5vw, 60px);
  margin: 0;
}
.app-difference-grid > div:last-child {
  border-left: 1px solid rgba(255, 255, 255, .2);
  padding-left: clamp(28px, 4vw, 48px);
}
.app-difference-grid > div:last-child p {
  font-size: 16px;
  line-height: 1.75;
}
.app-difference-line {
  color: #E2CC8E !important;
  font-family: var(--font-display);
  font-size: 21px !important;
  font-style: italic;
  margin: 24px 0 0;
}

.app-loop-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}
.app-loop h2 {
  font-size: clamp(38px, 4.6vw, 54px);
  margin: 0;
}
.app-loop-copy {
  border-left: 1px solid var(--clean-line-strong);
  padding-left: clamp(28px, 4vw, 48px);
}
.app-loop-copy p {
  font-size: 15px;
  line-height: 1.75;
}
.app-loop-copy p:last-child { margin-bottom: 0; }
.app-loop-copy strong { color: var(--clean-accent); font-weight: 650; }
.app-loop-copy .app-loop-principle {
  border-top: 1px solid var(--clean-line-strong);
  color: var(--clean-ink);
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  line-height: 1.55;
  margin-top: 22px;
  padding-top: 18px;
}

.app-credibility-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}
.app-credibility h2 {
  font-size: clamp(38px, 4.6vw, 54px);
  margin: 0;
}
.app-credibility-copy {
  border-left: 1px solid var(--clean-line-strong);
  padding-left: clamp(28px, 4vw, 48px);
}
.app-credibility-copy > p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 24px;
}
.app-credibility-copy > p strong,
.app-credibility-copy > p a { color: var(--clean-accent); font-weight: 650; }
.app-credibility-copy > p a {
  text-decoration: none;
  border-bottom: 1px solid rgba(92, 31, 38, .35);
}
.app-credibility-copy > p a:hover { color: var(--clean-accent-hover); border-bottom-color: currentColor; }
.app-credibility-about-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--clean-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
}
.app-credibility-about-link:hover { color: var(--clean-accent-hover); }
.app-credentials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.app-credentials span {
  border-top: 1px solid rgba(184, 150, 62, .55);
  color: var(--clean-muted);
  font-size: 10px;
  letter-spacing: .08em;
  padding-top: 12px;
  text-transform: uppercase;
}
.app-credentials strong {
  display: block;
  color: var(--clean-navy);
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 3px;
  text-transform: none;
}

.app-final { text-align: center; }
.app-final h2 { font-size: clamp(42px, 5vw, 60px); margin-bottom: 18px; }
.app-final p { margin: 0 auto 26px; max-width: 62ch; }
.app-final .app-final-tagline {
  color: var(--clean-muted);
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  margin-top: 24px;
}

/* ---- The Pour band (About page) ---- */
.pour-band { background: var(--clean-soft); }

.pour-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.pour-title {
  font-size: clamp(34px, 4vw, 48px);
  margin: 0;
}

.pour-side p { font-size: 15px; line-height: 1.65; margin: 0 0 20px; }

.pour-note {
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--clean-muted);
  margin: 18px 0 6px !important;
}

.pour-contact {
  font-size: 13px !important;
  margin: 0 !important;
}
.pour-contact a { color: var(--clean-accent); text-decoration: none; border-bottom: 1px solid rgba(184, 150, 62, .5); }
.pour-contact a:hover { color: var(--clean-accent-hover); }

/* ---- Book cover effect ---- */
.book {
  position: relative;
  display: inline-block;
  transform: perspective(1400px) rotateY(-7deg);
  border-radius: 3px 8px 8px 3px;
  box-shadow:
    -6px 0 0 0 rgba(0, 0, 0, .28),
    -12px 0 0 0 rgba(255, 255, 255, .12),
    18px 28px 60px rgba(0, 0, 0, .5);
}
.book::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 14px;
  background: linear-gradient(90deg, rgba(0, 0, 0, .32), rgba(0, 0, 0, 0));
  border-radius: 3px 0 0 3px;
  z-index: 2;
}
.book::after {
  content: "";
  position: absolute;
  inset: 3px -5px 3px auto;
  width: 5px;
  background: repeating-linear-gradient(180deg, #fdfcf8 0 2px, #e4e0d5 2px 3px);
  border-radius: 0 2px 2px 0;
}
.book img {
  display: block;
  width: min(70vw, 340px);
  border-radius: 3px 8px 8px 3px;
  border: 1px solid rgba(0, 0, 0, .15);
}

/* ---- Shop: book stockist note + PDF download cards ---- */
.band--maroon .coming-soon { color: rgba(226, 204, 142, .9); }

.stockist-note {
  margin: 16px 0 0;
  font-size: 13.5px !important;
  color: rgba(255, 255, 255, .7) !important;
}
.stockist-note a { color: #E2CC8E; text-decoration: none; border-bottom: 1px solid rgba(226, 204, 142, .5); }
.stockist-note a:hover { color: #fff; }

.section-head--center { text-align: center; margin-bottom: 44px; }
.section-head--center .section-sub { margin: 10px auto 0; font-size: 15px; color: var(--clean-muted); max-width: 48ch; }

.pdf-band { background: var(--clean-soft); }

.pdf-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.pdf-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--clean-line);
  border-radius: var(--clean-radius);
  padding: clamp(20px, 3vw, 30px);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.pdf-card:hover { border-color: #b8963e80; box-shadow: var(--clean-shadow-hover); transform: translateY(-2px); }

.pdf-card-media { display: grid; justify-items: center; margin-bottom: 22px; }
.pdf-card-media img { width: min(70%, 280px); border: 1px solid var(--clean-line); box-shadow: 0 12px 30px #14213a12; }

.avail-row { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.avail-row span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--clean-accent);
  white-space: nowrap;
}
.avail-row hr { flex: 1; height: 1px; border: 0; background: var(--clean-line); margin: 0; }

.pdf-card h3 { font-size: 23px; margin-bottom: 10px; }
.pdf-card p { font-size: 14px; line-height: 1.6; margin: 0 0 18px; }

.pdf-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid var(--clean-line);
  padding-top: 14px;
  margin: auto 0 16px;
}
.pdf-pages {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--clean-muted);
}
.pdf-price {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--clean-accent);
}
.pdf-card .btn { align-self: flex-start; }

/* ---- Trusted-by band (About page bottom) ---- */
.trusted-grid {
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.trusted-stat { display: grid; gap: 6px; padding-right: clamp(20px, 3vw, 40px); border-right: 1px solid rgba(255, 255, 255, .2); }
.trusted-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
}
.trusted-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 500;
  color: #fff;
  line-height: 1;
}
.trusted-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: rgba(20, 26, 45, .65);
}

.trusted-quote .tq-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .92) !important;
  margin: 0 0 10px;
}
.trusted-quote .tq-role {
  font-size: 10px !important;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(226, 204, 142, .9) !important;
  margin: 0;
}

/* ---- Event gallery (About page) ---- */
.gallery-head {
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--clean-accent);
  margin: 0 0 34px;
  max-width: none;
}
.gallery-head .diamond { font-size: 9px; margin: 0 8px; color: var(--clean-accent); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gallery-item {
  background: #fff;
  border: 1px solid var(--clean-line);
  padding: 10px 10px 14px;
  text-align: center;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.gallery-item:hover { border-color: #b8963e80; box-shadow: var(--clean-shadow-hover); transform: translateY(-2px); }
.gallery-zoom { display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; }
.gallery-item img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.gallery-item figcaption {
  margin-top: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--clean-ink);
}

/* ---- Lightbox ---- */
.lightbox[hidden] { display: none; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 33, 58, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  cursor: zoom-out;
}
.lightbox figure { margin: 0; text-align: center; max-width: min(1100px, 94vw); }
.lightbox img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border: 6px solid #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
  cursor: default;
}
.lightbox figcaption {
  margin-top: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  opacity: .8;
}
.lightbox-close:hover { opacity: 1; }

/* ---- Product strip on home (five ways in) ---- */
.cards--products {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}
.cards--products .card {
  padding: 24px 20px 22px;
  border-top: 3px solid var(--clean-maroon);
  background: #fbfaf8;
}
.cards--products .card:nth-child(2) { border-top-color: var(--clean-navy); }
.cards--products .card:nth-child(3) { border-top-color: var(--clean-gold); }
.cards--products .card:nth-child(4) { border-top-color: var(--clean-navy); }
.cards--products .card:nth-child(5) { border-top-color: var(--clean-gold); }
.cards--products .card h3 { font-size: 20px; color: var(--clean-maroon); }
.cards--products .card p { font-size: 13px; line-height: 1.55; }
.cards--products .card .go { color: var(--clean-gold-dark, #96782f); }

/* ---- Home: colorful approach section ---- */
.approach-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 6% 92%, rgba(92, 31, 38, .08), transparent 25rem),
    #fbf8f1;
}
.approach-band::before {
  content: "";
  position: absolute;
  inset: 22px 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(92, 31, 38, .55) 18%, rgba(92, 31, 38, .82) 50%, rgba(92, 31, 38, .55) 82%, transparent);
}
.approach-band .wrap { position: relative; z-index: 1; }
.approach-band .section-head {
  border-left: 3px solid var(--clean-accent);
  padding-left: 20px;
}
.approach-band .section-head h2 { color: var(--clean-navy); }
.approach-band > .wrap:first-child > p { color: #524d4d; }
.approach-band .btn--ghost {
  background: var(--clean-accent);
  border-color: var(--clean-accent);
  color: #fff;
  margin-top: 4px;
}
.approach-band .btn--ghost:hover {
  background: var(--clean-accent-hover);
  border-color: var(--clean-accent-hover);
}
.approach-band .cards--products { margin-top: 38px; }
.approach-band .cards--products .card {
  min-height: 174px;
  background: #fffdfa;
  border: 1px solid rgba(92, 31, 38, .16);
  border-top: 4px solid var(--clean-accent);
  box-shadow: 0 12px 28px rgba(20, 33, 58, .08);
}
.approach-band .cards--products .card:hover {
  box-shadow: 0 18px 36px rgba(20, 33, 58, .16);
}
.approach-band .cards--products .card h3,
.approach-band .cards--products .card .go { color: var(--clean-accent); }
.approach-band .cards--products .card p { color: var(--clean-muted); }

/* ---- Responsive (live breakpoints: 900, 768, 640, 520/480) ---- */
@media (max-width: 900px) {
  .hero-shell { grid-template-columns: minmax(0, 1fr); }
  .app-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(210px, .45fr); gap: 36px; }
  .app-step { grid-template-columns: minmax(220px, .68fr) minmax(0, 1.32fr); gap: 30px; }
  .app-screen-crop { height: 330px; }
  .app-screen-card--wide .app-screen-crop { height: 360px; }
}

@media (max-width: 768px) {
  :root { --clean-section-y: 44px; } /* clean-simple.css */
  .wrap { padding: 0 22px; }
  .about-gina { grid-template-columns: 1fr; gap: 24px; }
  .about-sommplicity-grid,
  .contact-follow-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-panel img { max-height: 220px; width: auto; }
  .stat-row { gap: 18px; }
  .journey-loop {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 38px;
  }
  .journey-loop li:nth-child(2)::after {
    content: "\2193";
    top: auto;
    right: auto;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
  }
  .journey-loop li:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }
  .journey-loop li:nth-child(3)::after {
    content: "\2190";
    right: auto;
    left: -31px;
  }
  .journey-loop li:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
  }
}

@media (max-width: 768px) {
  .intro-split { grid-template-columns: 1fr; gap: 20px; }
  .pour-grid { grid-template-columns: 1fr; gap: 24px; }
  .pdf-cards { grid-template-columns: 1fr; }
  .trusted-grid { grid-template-columns: 1fr; gap: 24px; }
  .value-grid { grid-template-columns: 1fr; gap: 28px; }
  .cards--products { grid-template-columns: 1fr; }
  .trusted-stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); padding: 0 0 20px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .feature, .feature--flip { grid-template-columns: 1fr; }
  .feature--flip .step-copy { justify-self: start; }
  .feature--flip .feature-media { order: 0; }
  .app-hero-grid,
  .app-problem-grid,
  .app-difference-grid,
  .app-loop-grid,
  .app-credibility-grid,
  .app-step { grid-template-columns: 1fr; }
  .app-hero-copy { max-width: none; }
  .app-hero-visual .phone--hero { width: min(58vw, 235px); }
  .app-problem-copy,
  .app-difference-grid > div:last-child,
  .app-loop-copy,
  .app-credibility-copy {
    border-left: 0;
    border-top: 1px solid var(--clean-line-strong);
    padding: 28px 0 0;
  }
  .app-difference-grid > div:last-child { border-top-color: rgba(255, 255, 255, .2); }
  .app-step--flip .app-step-copy,
  .app-step--flip .app-screen-grid { order: initial; }
  .app-step-copy { max-width: none; }
  .app-screen-grid { justify-self: stretch; }
  .stat-strip .wrap { grid-template-columns: 1fr; gap: 18px; }
  .stat-sub { white-space: normal; }
  .stat-strip .wrap > div + div { border-left: 0; border-top: 1px solid rgba(255, 255, 255, .2); padding-top: 18px; }
}

@media (max-width: 640px) {
  .topnav-inner { padding-inline: 18px 12px; }
  .brand-name { font-size: 21px; }
  .brand-tag { font-size: 8px; letter-spacing: .16em; }
  nav.topnav-links { gap: 12px; }
  nav.topnav-links a { letter-spacing: .11em; font-size: 10px; }

  .hero-shell { padding: 24px 16px 42px; }
  h1 { font-size: clamp(40px, 13vw, 56px); line-height: 1; } /* @520 hero h1 */

  .cards { grid-template-columns: 1fr; }
  .contact-socials { grid-template-columns: 1fr; }
  .app-hero { text-align: left; }
  .app-hero-actions { align-items: flex-start; flex-direction: column; }
  .app-hero-visual { margin-top: 12px; }
  .app-journey-head { margin-bottom: 34px; }
  .journey-loop {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 24px;
  }
  .journey-loop li:nth-child(3),
  .journey-loop li:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }
  .journey-loop li:nth-child(1)::after,
  .journey-loop li:nth-child(2)::after,
  .journey-loop li:nth-child(3)::after {
    content: "\2193";
    top: auto;
    right: auto;
    bottom: -31px;
    left: 50%;
    transform: translateX(-50%);
  }
  .app-step { padding: 24px 18px; }
  .app-screen-grid--two { grid-template-columns: 1fr; }
  .app-screen-grid--recommendations { grid-template-columns: minmax(0, 310px); }
  .app-screen-card,
  .app-screen-card--wide { max-width: 360px; }
  .app-screen-crop,
  .app-screen-card--wide .app-screen-crop { height: 390px; }
  .app-credentials { grid-template-columns: 1fr; }

  .shot,
  .shot:nth-child(even) { flex-direction: column; text-align: center; }
  .shot .caption { text-align: center; }
  .shot .caption p { margin-left: auto; margin-right: auto; }

  .gold-rule { margin-left: auto; margin-right: auto; }
  section .gold-rule { margin-left: 0; }

  .product { flex-direction: column; align-items: center; text-align: center; }
  .product p { margin-left: auto; margin-right: auto; }

  .signup .row { flex-direction: column; align-items: stretch; }
  .signup .checks { flex-direction: column; gap: 14px; align-items: flex-start; max-width: 300px; }
  .signup input[type="email"] { min-width: 0; }

  .credentials { letter-spacing: .2em; }
}

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


/* light footer overrides */
footer .footer-social a { color: rgba(20, 26, 45, .5); }
footer .footer-social a:hover { color: var(--clean-navy); }
footer .footer-meta { color: rgba(20, 26, 45, .65); }
footer .footer-meta a { color: var(--clean-navy); }
.signup-fine {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(20, 26, 45, .55);
  margin: 16px auto 0;
  max-width: 480px;
}


/* navy bottom bar */
footer .footer-social {
  background: var(--clean-navy);
  margin: 48px -9999px 0;
  padding: 32px 9999px 12px;
}
footer .footer-social a { color: rgba(255,255,255,.7); }
footer .footer-social a:hover { color: #fff; }
footer .footer-meta {
  background: var(--clean-navy);
  color: rgba(255,255,255,.75);
  margin: 0 -9999px;
  padding: 0 9999px 36px;
}
footer .footer-meta a { color: #fff; }
footer { padding-bottom: 0; }


/* ================= App page (rebuilt September 2026) ================= */

/* Hero: one bright lede, one quieter supporting line */
.app-hero-sub {
  color: rgba(255, 255, 255, .62) !important;
  font-size: 15px;
  line-height: 1.7;
  max-width: 52ch;
  margin-top: 14px;
}

/* Shared four-column editorial row, used twice */
.app-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 3.2vw, 46px);
}
.app-col { border-top: 1px solid var(--clean-line-strong); padding-top: 22px; }
.app-col-label {
  display: block;
  color: var(--clean-accent);
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.app-col-num {
  display: block;
  color: rgba(184, 150, 62, .95);
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  line-height: 1;
  margin-bottom: 14px;
}
.app-col h3 {
  font-size: 23px;
  font-weight: 500;
  line-height: 1.18;
  margin: 0 0 10px;
}
.app-col p {
  color: var(--clean-muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  max-width: 34ch;
}


/* Reference profiles: a slim navy divider between the two long sections */
.app-context { padding-block: clamp(48px, 5.5vw, 72px); }
.app-context-inner { text-align: center; }
.app-context h2 { font-size: clamp(30px, 3.2vw, 40px); margin-bottom: 14px; }
.app-context p { font-size: 15px; line-height: 1.7; margin: 0; }
.app-reference-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 26px;
  list-style: none;
  margin: 26px 0;
  padding: 0;
}
.app-reference-list li {
  color: #fff !important;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1;
  position: relative;
}
.app-reference-list li + li::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  width: 4px;
  height: 4px;
  margin-top: -2px;
  background: rgba(226, 204, 142, .85);
  transform: rotate(45deg);
}
.app-context-close { color: rgba(255, 255, 255, .62) !important; font-size: 14px; }

/* Product screens */
.app-screens {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 34px);
  justify-items: center;
  margin-top: clamp(52px, 6vw, 82px);
}
.app-screens .phone { width: 100%; max-width: 232px; }

/* Centred statement bands */
.app-centered { text-align: center; }
.app-centered h2 { margin-bottom: 20px; }
.app-centered p { margin-left: auto; margin-right: auto; }

.app-palate h2 { font-size: clamp(34px, 4vw, 50px); }
.app-palate p { font-size: 16px; line-height: 1.75; max-width: 58ch; }
.app-palate-close { margin-top: 18px; }
.app-palate strong {
  font-family: var(--font-body);
  font-size: inherit;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0;
}

.app-expertise p { font-size: 16px; line-height: 1.75; max-width: 60ch; }
.app-credit {
  color: var(--clean-accent) !important;
  font-size: 11px !important;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.app-audience-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(34px, 4vw, 48px);
  max-width: 720px;
  margin-inline: auto;
}
.app-audience-pair p {
  border-top: 1px solid var(--clean-line-strong);
  color: var(--clean-ink);
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.3;
  margin: 0;
  padding-top: 18px;
}

/* Final call to action */
.app-final { border-bottom: 0; }
.app-final .app-final-line {
  color: rgba(226, 204, 142, .95) !important;
  font-family: var(--font-display);
  font-size: clamp(19px, 2vw, 24px);
  font-style: italic;
  margin-bottom: 34px;
}
.app-final .btn--cream { margin-bottom: 20px; }
.app-final .app-launch-status { display: block; }

@media (max-width: 1000px) {
  .app-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .app-screens { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .app-grid-4 { grid-template-columns: 1fr; gap: 26px; }
  .app-screens { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .app-audience-pair { grid-template-columns: 1fr; gap: 22px; }
  .app-reference-list { gap: 8px 22px; }
}

/* App hero headline: one sentence per line, slightly smaller */
.app-hero-copy h1 { font-size: clamp(36px, 4.1vw, 52px); max-width: none; }
.app-hero-copy h1 .hero-line { display: block; }
.app-hero-copy h1 .hero-line + .hero-line { margin-top: 4px; }


/* App feature list: compact two-column list, no boxes */
.app-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(40px, 6vw, 96px);
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 940px;
  margin-inline: auto;
}
.app-feature-list li {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 16px 2px;
  border-bottom: 1px solid var(--clean-line);
}
.feature-num {
  color: rgba(184, 150, 62, .95);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  flex: 0 0 22px;
}
.feature-name {
  color: var(--clean-navy);
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 25px);
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 700px) {
  .app-feature-list { grid-template-columns: 1fr; }
  .app-feature-list li { padding: 14px 2px; }
}
