/* ==========================================================================
   WishGee 2.0
   Brand tokens carried over from the original wishgee-front theme
   (tailwind.config.js + customcss.scss)
   ========================================================================== */

:root {
  /* Brand — unchanged from WishGee 1.0 */
  --red: #ed2737;
  --red-lighter: #ea2027;
  --red-darker: #e91f26;
  --red-darkest: #9e0000;
  --red-lightest: #fed7d7;

  --cream: #fdf8f0;
  --sand: #f8eedf;
  --sand-line: #e8dcca;

  --slate: #585d6d;
  --amber: #ffc107;
  --orange: #e29016;

  --ink: #2d2d2d;
  --grey: #808080;
  --grey-light: #f7f7f7;
  --white: #ffffff;
  --smoke: #fafafa;
  --black-light: #707070;

  --shadow-sm: 0 4px 4px rgba(175, 175, 175, 0.25);
  --shadow-md: 0 3px 3px -2px rgba(0, 0, 0, 0.12), 0 6px 12px -4px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 32px -12px rgba(45, 45, 45, 0.22), 0 2px 6px -2px rgba(45, 45, 45, 0.08);

  /* Type */
  --f-display: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  --f-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji";

  /* Layout */
  --gutter: 24px;
  --max: 1180px;
  --radius: 12px;
  --radius-sm: 8px;
  --nav-h: 68px;
}

/* ---------- reset ---------- */

*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

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

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

ul, ol { list-style: none; margin: 0; padding: 0; }

a { color: inherit; text-decoration: none; }

img, svg { max-width: 100%; display: block; }

button {
  font: inherit;
  color: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

input, select, textarea { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
  border-radius: 4px;
}

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

.skip-link {
  position: absolute;
  top: -100px; left: 12px;
  z-index: 200;
  background: var(--red);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ---------- layout helpers ---------- */

.shell {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: 84px 0; }
.section--tight { padding: 60px 0; }
.section--cream { background: var(--cream); }
.section--sand { background: var(--sand); }

.section-head { margin-bottom: 40px; max-width: 46rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
}

.title-underline {
  display: block;
  width: 56px;
  height: 4px;
  border-radius: 2px;
  background: var(--red);
  margin-top: 16px;
}

.section-head p {
  margin-top: 16px;
  color: var(--grey);
  font-size: 1.05rem;
  max-width: 42rem;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 999px;
  transition: background-color 0.18s ease, color 0.18s ease,
    transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 6px 16px -6px rgba(237, 39, 55, 0.6);
}
.btn--primary:hover {
  background: var(--red-darkest);
  transform: translateY(-1px);
}

.btn--ghost {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--sand-line);
}
.btn--ghost:hover { border-color: var(--red); color: var(--red); }

.btn--lg { padding: 15px 32px; font-size: 16.5px; }
.btn--block { width: 100%; }

.btn[disabled] { opacity: 0.45; cursor: not-allowed; transform: none; }

/* ==========================================================================
   Nav
   ========================================================================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--sand-line);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav__brand { display: flex; align-items: center; gap: 10px; flex: none; }
.nav__brand img { height: 30px; width: auto; }

.badge-2 {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--red);
  background: var(--red-lightest);
  padding: 2px 8px;
  border-radius: 999px;
  line-height: 1.5;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 500;
}
.nav__links a { color: var(--ink); transition: color 0.16s ease; }
.nav__links a:hover { color: var(--red); }

.nav__actions { display: flex; align-items: center; gap: 12px; flex: none; }

.nav__toggle { display: none; padding: 8px; border-radius: 8px; }
.nav__toggle svg { width: 24px; height: 24px; }

@media (max-width: 900px) {
  .nav__links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--sand-line);
    box-shadow: var(--shadow-md);
    padding: 8px 0;
    display: none;
  }
  .nav__links[data-open="true"] { display: flex; }
  .nav__links a { padding: 14px var(--gutter); font-size: 17px; }
  .nav__toggle { display: block; }
  .nav__actions .btn { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  background: var(--cream);
  border-bottom: 1px solid var(--sand-line);
  padding: 56px 0 72px;
  position: relative;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: start;
}

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
}

.hero__pitch { padding-top: 12px; }

.hero h1 {
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--red);
  position: relative;
  white-space: nowrap;
}

.hero__sub {
  font-size: clamp(1.02rem, 2.2vw, 1.18rem);
  color: var(--grey);
  max-width: 34rem;
  margin-bottom: 28px;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-bottom: 32px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid var(--sand-line);
  border-radius: 999px;
  padding: 7px 14px 7px 11px;
  font-size: 13.5px;
  font-weight: 500;
  font-family: var(--f-display);
  box-shadow: var(--shadow-sm);
}
.pill svg { width: 15px; height: 15px; flex: none; color: var(--red); }

.hero__retailers {
  border-top: 1px solid var(--sand-line);
  padding-top: 22px;
}
.hero__retailers .label {
  font-family: var(--f-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black-light);
  margin-bottom: 12px;
}
.retailer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}
.retailer-tag {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  background: rgba(88, 93, 109, 0.09);
  border-radius: 6px;
  padding: 5px 11px;
}

/* ==========================================================================
   Wish composer
   ========================================================================== */

.composer {
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--sand-line);
  overflow: hidden;
}

.composer__head {
  background: var(--slate);
  color: var(--white);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.composer__head h2 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.composer__head .steps {
  display: flex;
  gap: 6px;
  align-items: center;
}
.composer__head .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.composer__head .dot[data-active="true"] {
  background: var(--amber);
  transform: scale(1.35);
}

.composer__body { padding: 24px; }

.field { margin-bottom: 26px; }
.field:last-of-type { margin-bottom: 20px; }

.field__label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black-light);
  margin-bottom: 14px;
}
.field__label .hint {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 12.5px;
  color: var(--grey);
}

/* category grid */

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 8px;
}

.cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 12px 6px;
  border: 1.5px solid var(--sand-line);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--f-display);
  font-size: 12.5px;
  font-weight: 500;
  text-transform: capitalize;
  transition: border-color 0.16s ease, background-color 0.16s ease,
    transform 0.16s ease;
}
.cat img { height: 22px; width: auto; }
.cat:hover { border-color: var(--red); transform: translateY(-2px); }
.cat[aria-pressed="true"] {
  border-color: var(--red);
  background: var(--red-lightest);
  color: var(--red-darkest);
  font-weight: 600;
}

/* budget */

.budget-out {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  margin-bottom: 12px;
}
.budget-out span { color: var(--grey); font-weight: 500; font-size: 15px; }

input[type="range"] {
  width: 100%;
  height: 26px;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-runnable-track {
  height: 5px;
  border-radius: 3px;
  background: var(--sand-line);
}
input[type="range"]::-moz-range-track {
  height: 5px;
  border-radius: 3px;
  background: var(--sand-line);
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  margin-top: -8.5px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--white);
  box-shadow: 0 2px 6px rgba(237, 39, 55, 0.45);
}
input[type="range"]::-moz-range-thumb {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--white);
  box-shadow: 0 2px 6px rgba(237, 39, 55, 0.45);
}

.budget-scale {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--grey);
  font-variant-numeric: tabular-nums;
  margin-top: 2px;
}

/* chips */

.chips { display: flex; flex-wrap: wrap; gap: 8px; }

.chip {
  border: 1.5px solid var(--sand-line);
  border-radius: 999px;
  padding: 7px 15px;
  font-size: 13.5px;
  font-family: var(--f-display);
  font-weight: 500;
  background: var(--white);
  transition: all 0.16s ease;
}
.chip:hover { border-color: var(--red); color: var(--red); }
.chip[aria-pressed="true"] {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  font-weight: 600;
}

.composer__foot {
  border-top: 1px solid var(--sand-line);
  padding: 18px 24px;
  background: var(--smoke);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.composer__foot .note {
  font-size: 12.5px;
  color: var(--grey);
  max-width: 22rem;
}

/* ==========================================================================
   Verdict card
   ========================================================================== */

.verdict {
  background: var(--white);
  border: 1px solid var(--sand-line);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.verdict__top {
  background: var(--slate);
  color: var(--white);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.verdict__top .t {
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.demo-badge {
  font-family: var(--f-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--amber);
  color: #4a3600;
  padding: 3px 9px;
  border-radius: 999px;
}

.verdict__body { padding: 24px; }

.verdict__lead {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.verdict__thumb {
  width: 82px; height: 82px;
  flex: none;
  border-radius: var(--radius-sm);
  background: var(--cream);
  border: 1px solid var(--sand-line);
  display: grid;
  place-items: center;
  padding: 12px;
}
.verdict__thumb img { max-height: 100%; width: auto; }

.verdict__id { flex: 1 1 14rem; min-width: 0; }
.verdict__brand {
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}
.verdict__name {
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 700;
  margin-bottom: 8px;
}
.verdict__price {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.verdict__price small {
  font-size: 13px;
  font-weight: 500;
  color: var(--grey);
  letter-spacing: 0;
  margin-left: 8px;
}

.reasons { display: grid; gap: 2px; margin-bottom: 22px; }

.reason {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 6px 18px;
  padding: 14px 0;
  border-top: 1px solid var(--sand-line);
  align-items: baseline;
}
.reason:last-child { border-bottom: 1px solid var(--sand-line); }
.reason__k {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black-light);
}
.reason__v { font-size: 15px; line-height: 1.55; }
.reason--catch .reason__k { color: var(--orange); }

@media (max-width: 560px) {
  .reason { grid-template-columns: 1fr; }
}

/* price table */

.prices { margin-bottom: 22px; }
.prices__head {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black-light);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.prices__list { display: grid; gap: 6px; }

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  background: var(--smoke);
  border: 1px solid transparent;
  font-size: 14.5px;
}
.price-row--best {
  background: var(--red-lightest);
  border-color: rgba(237, 39, 55, 0.35);
}
.price-row__store { font-weight: 600; font-family: var(--f-display); }
.price-row__tag {
  font-size: 11px;
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-darkest);
}
.price-row__amt {
  font-family: var(--f-display);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.price-row__amt[data-oos="true"] {
  color: var(--grey);
  font-weight: 500;
  text-decoration: line-through;
}

.verdict__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.verdict__foot {
  border-top: 1px solid var(--sand-line);
  background: var(--smoke);
  padding: 14px 24px;
  font-size: 12.5px;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* empty / loading state */

.verdict--empty .verdict__body {
  text-align: center;
  padding: 52px 28px;
}
.verdict--empty img {
  width: 88px;
  margin: 0 auto 20px;
  opacity: 0.9;
}
.verdict--empty h3 { font-size: 1.25rem; margin-bottom: 10px; font-weight: 600; }
.verdict--empty p { color: var(--grey); max-width: 26rem; margin: 0 auto; font-size: 15px; }

.thinking {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--grey);
  font-size: 14.5px;
  font-family: var(--f-display);
}
.thinking .bead {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: bead 1.1s ease-in-out infinite;
}
.thinking .bead:nth-child(2) { animation-delay: 0.16s; }
.thinking .bead:nth-child(3) { animation-delay: 0.32s; }

@keyframes bead {
  0%, 80%, 100% { opacity: 0.25; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-5px); }
}

/* ==========================================================================
   Upgrades (what's new in 2.0)
   ========================================================================== */

.upgrades {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.upgrade {
  background: var(--white);
  border: 1px solid var(--sand-line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
}
.upgrade__n {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 14px;
}
.upgrade h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.upgrade p { color: var(--grey); font-size: 14.5px; }

.upgrade__then {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--sand-line);
  font-size: 13px;
  color: var(--black-light);
}
.upgrade__then b {
  font-family: var(--f-display);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  display: block;
  margin-bottom: 3px;
}

/* ==========================================================================
   How it works
   ========================================================================== */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  counter-reset: step;
}

.step { counter-increment: step; position: relative; padding-top: 46px; }
.step::before {
  content: counter(step);
  position: absolute;
  top: 0; left: 0;
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 15px;
}
.step h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--grey); font-size: 14.5px; }

/* ==========================================================================
   Categories
   ========================================================================== */

.cat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
}

.cat-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  background: var(--white);
  border: 1px solid var(--sand-line);
  border-radius: var(--radius);
  padding: 22px 20px;
  min-height: 168px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}
.cat-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 4px;
}
.cat-card p { font-size: 13px; color: var(--grey); }
.cat-card__foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.cat-card__foot img { height: 30px; width: auto; }
.cat-card__go {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
}

/* ==========================================================================
   Why WishGee
   ========================================================================== */

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 30px;
}
.why-item img { height: 42px; width: auto; margin-bottom: 16px; }
.why-item h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.why-item p { font-size: 14.5px; color: var(--grey); }

/* ==========================================================================
   Testimonials
   ========================================================================== */

.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}
.quote {
  background: var(--white);
  border: 1px solid var(--sand-line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.quote blockquote { margin: 0; font-size: 15.5px; line-height: 1.6; }
.quote__who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.quote__av {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--red-lightest);
  color: var(--red-darkest);
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  flex: none;
}
.quote__who .n { font-family: var(--f-display); font-weight: 600; font-size: 14px; }
.quote__who .m { font-size: 12.5px; color: var(--grey); }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq { max-width: 800px; }

.faq__item { border-bottom: 1px solid var(--sand-line); }
.faq__item:first-child { border-top: 1px solid var(--sand-line); }

.faq__q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 4px;
  font-family: var(--f-display);
  font-size: 16.5px;
  font-weight: 600;
  transition: color 0.16s ease;
}
.faq__q:hover { color: var(--red); }
.faq__q .mark {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--red);
  display: grid;
  place-items: center;
  font-size: 17px;
  line-height: 1;
  transition: transform 0.22s ease, background-color 0.16s ease;
}
.faq__q[aria-expanded="true"] .mark { transform: rotate(45deg); background: var(--red); color: var(--white); }

.faq__a {
  display: none;
  padding: 0 40px 22px 4px;
  color: var(--grey);
  font-size: 15px;
}
.faq__a[data-open="true"] { display: block; }

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  background: var(--slate);
  color: var(--white);
  border-radius: 18px;
  padding: 46px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); font-weight: 700; margin-bottom: 10px; }
.cta-band p { color: rgba(255, 255, 255, 0.72); max-width: 34rem; font-size: 15.5px; }

/* ==========================================================================
   Footer
   ========================================================================== */

.footer { background: var(--ink); color: rgba(255, 255, 255, 0.72); padding: 56px 0 0; }
.footer a { transition: color 0.16s ease; }
.footer a:hover { color: var(--white); }

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
  gap: 40px 32px;
  padding-bottom: 44px;
}
@media (max-width: 860px) {
  .footer__top { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
}

.footer__brand img { height: 34px; width: auto; margin-bottom: 18px; }
.footer__brand p { font-size: 14px; max-width: 26rem; }

.footer__col h4 {
  font-family: var(--f-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__col li { margin-bottom: 10px; font-size: 14px; }

.footer__seo {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px 0;
  font-size: 12.5px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.42);
}

.footer__bar {
  background: var(--amber);
  color: #40300a;
  padding: 14px 0;
  font-size: 13.5px;
  font-weight: 500;
}
.footer__bar .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Simple inner pages (terms, 404)
   ========================================================================== */

.page { padding: 64px 0 84px; }
.page__inner { max-width: 720px; }
.page h1 { font-size: clamp(1.9rem, 5vw, 2.6rem); font-weight: 700; margin-bottom: 8px; }
.page .updated { color: var(--grey); font-size: 14px; margin-bottom: 36px; }
.page h2 { font-size: 1.25rem; font-weight: 700; margin: 36px 0 12px; }
.page p, .page li { color: #4a4a4a; }
.page ul { margin: 0 0 1rem; }
.page li { position: relative; padding-left: 20px; margin-bottom: 8px; }
.page li::before {
  content: "";
  position: absolute;
  left: 2px; top: 0.72em;
  width: 7px; height: 2px;
  background: var(--red);
  border-radius: 1px;
}

.notfound {
  min-height: 62vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 60px var(--gutter);
  background: var(--cream);
}
.notfound img { width: 110px; margin: 0 auto 26px; }
.notfound h1 { font-size: clamp(1.8rem, 5vw, 2.6rem); font-weight: 700; margin-bottom: 12px; }
.notfound p { color: var(--grey); max-width: 30rem; margin: 0 auto 28px; }
