/* =========================================================
   BLINDAGEM PATRIMONIAL · estilo claro, sereno, legível
   Paleta navy + dourado herdada do e-book.
   Mobile-first. Fonte base 18px. Alto contraste.
   ========================================================= */

:root {
  --navy:        #0E2A47;
  --navy-deep:   #08172B;
  --navy-soft:   #1E3A5F;
  --gold:        #C9962E;
  --gold-soft:   #E8C36A;
  --gold-bg:     #FBF3DC;
  --paper:       #FAFAF7;
  --paper-warm:  #F4EFE6;
  --line:        #E2DED3;
  --text:        #0E2A47;
  --text-mid:    #4A5568;
  --text-soft:   #6B7280;
  --success:     #166534;
  --success-bg:  #DCFCE7;
  --danger:      #B91C1C;

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --radius:    14px;
  --radius-sm: 8px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(14, 42, 71, 0.06), 0 1px 3px rgba(14, 42, 71, 0.05);
  --shadow:    0 4px 14px rgba(14, 42, 71, 0.08), 0 2px 6px rgba(14, 42, 71, 0.05);
  --shadow-lg: 0 12px 32px rgba(14, 42, 71, 0.14), 0 4px 12px rgba(14, 42, 71, 0.08);

  --gutter: clamp(16px, 4vw, 32px);
  --container: 1120px;
}

/* Reset moderado */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
@media (min-width: 768px) {
  body { font-size: 19px; }
}
img, svg { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--gold); }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Acessibilidade — pular para conteúdo */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy); color: #fff;
  padding: 12px 18px; border-radius: 0 0 8px 0;
  font-weight: 600;
  z-index: 999;
}
.skip-link:focus { left: 0; }

/* Tipografia */
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 6vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 4.4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.8vw, 1.45rem); font-family: var(--sans); font-weight: 700; letter-spacing: -0.005em; }
p  { margin: 0 0 1em; }
em { font-style: italic; color: var(--navy-soft); }
strong { color: var(--navy); }

/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Eyebrow */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  min-height: 52px;
  text-align: center;
  line-height: 1.25;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: var(--shadow);
}
.btn--primary:hover {
  background: var(--gold-soft);
  color: var(--navy-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--ghost:hover {
  background: var(--navy);
  color: #fff;
}
.btn--lg  { padding: 18px 28px; font-size: 1.08rem; min-height: 60px; }
.btn--xl  { padding: 22px 32px; font-size: 1.18rem; min-height: 68px; width: 100%; max-width: 520px; }
.btn--sm  { padding: 10px 16px; font-size: 0.92rem; min-height: 42px; }
.btn__price {
  display: inline-block;
  font-weight: 700;
  font-size: 0.92em;
  background: rgba(14, 42, 71, 0.12);
  padding: 4px 10px;
  border-radius: 999px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(140%) blur(8px);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
}
.brand__mark {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--navy);
  color: var(--gold);
  border-radius: 8px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
.brand__text {
  display: flex; flex-direction: column; line-height: 1.1;
}
.brand__text strong {
  font-family: var(--serif);
  font-size: 1.05rem;
}
.brand__text small {
  font-size: 0.7rem;
  color: var(--text-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}
.header-cta { white-space: nowrap; }
@media (max-width: 520px) {
  .header-cta { display: none; }
  .brand__text small { display: none; }
}

/* HERO */
.hero {
  background:
    radial-gradient(1200px 480px at 90% -10%, rgba(201, 150, 46, 0.10), transparent 60%),
    radial-gradient(900px 420px at 0% 110%, rgba(14, 42, 71, 0.06), transparent 60%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%);
  border-bottom: 1px solid var(--line);
  padding: clamp(40px, 8vw, 88px) 0 clamp(48px, 10vw, 100px);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 6vw, 56px);
  align-items: center;
}
@media (min-width: 880px) {
  .hero__inner { grid-template-columns: 1.15fr 1fr; }
}
.hero__title {
  margin-bottom: 18px;
}
.hero__title em {
  color: var(--gold);
  font-style: italic;
  font-weight: 700;
}
.hero__title strong { color: var(--navy); }
.hero__sub {
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  color: var(--text-mid);
  max-width: 56ch;
  margin-bottom: 22px;
}
.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 8px;
  font-size: 1.02rem;
}
.hero__bullets li {
  display: flex; gap: 10px; align-items: flex-start;
  color: var(--text-mid);
}
.hero__bullets li span {
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}
.hero__cta { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.hero__note {
  font-size: 0.92rem;
  color: var(--text-soft);
  margin: 0;
}

/* Hero — capa do livro */
.hero__visual {
  display: flex; justify-content: center; align-items: center;
}
.cover {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 3 / 4.2;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-soft) 100%);
  color: #fff;
  border-radius: 14px 4px 14px 4px;
  padding: 28px 26px 26px;
  box-shadow:
    0 30px 50px -20px rgba(14, 42, 71, 0.45),
    0 12px 22px -10px rgba(14, 42, 71, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  display: flex; flex-direction: column;
  overflow: hidden;
  transform: rotate(-1.5deg);
  transition: transform 0.4s ease;
}
.cover::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(400px 200px at 80% 20%, rgba(232, 195, 106, 0.16), transparent 70%),
    radial-gradient(300px 180px at 20% 90%, rgba(232, 195, 106, 0.08), transparent 70%);
  pointer-events: none;
}
.cover:hover { transform: rotate(0deg) translateY(-4px); }
.cover__band {
  position: absolute; top: 18px; left: -36px;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--sans); font-weight: 700;
  font-size: 0.7rem; letter-spacing: 0.18em;
  padding: 6px 44px;
  transform: rotate(-22deg);
}
.cover__pt {
  width: 36px; height: 36px;
  background: var(--gold);
  color: var(--navy-deep);
  border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.02em;
  margin-left: auto;
  position: relative; z-index: 1;
}
.cover__kicker {
  margin: 24px 0 6px;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  position: relative;
}
.cover__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 6vw, 2.6rem);
  line-height: 1.05;
  color: #fff;
  margin: 0 0 14px;
  position: relative;
}
.cover__title em {
  display: block;
  color: var(--gold-soft);
  font-style: italic;
}
.cover__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  position: relative;
}
.cover__seal {
  margin-top: auto;
  display: flex; align-items: center; gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
}
.cover__seal span {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold); color: var(--navy-deep);
  border-radius: 50%;
  font-size: 0.85rem;
}
.cover__seal small {
  font-size: 0.62rem; letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
}

/* Strip de números */
.strip {
  background: var(--navy);
  color: #fff;
  padding: 24px 0;
}
.strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
}
@media (min-width: 720px) {
  .strip__inner { grid-template-columns: repeat(4, 1fr); }
}
.strip__item {
  display: flex; flex-direction: column; gap: 4px;
  text-align: center;
}
.strip__item strong {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3.4vw, 1.85rem);
  color: var(--gold-soft);
}
.strip__item span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.35;
}

/* Sections */
.section {
  padding: clamp(56px, 9vw, 96px) 0;
}
.section--alt {
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__head { margin-bottom: clamp(28px, 5vw, 48px); max-width: 760px; }
.section__head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section__title { margin: 0 0 12px; }
.section__lead {
  font-size: 1.08rem;
  color: var(--text-mid);
  max-width: 64ch;
}

/* Cards (pra quem é) */
.cards {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.card__icon {
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold-bg);
  color: var(--navy);
  border-radius: 12px;
  font-size: 1.5rem;
  margin-bottom: 14px;
}
.card__title { margin-bottom: 10px; color: var(--navy); }
.card__text { margin: 0; color: var(--text-mid); }

/* Parts (sumário visual) */
.parts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.part {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.part__num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
}
.part__title { margin: 0 0 6px; color: var(--navy); }
.part p { margin: 0; color: var(--text-mid); }

/* Alerts */
.alerts {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .alerts { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .alerts { grid-template-columns: repeat(5, 1fr); } }
.alert {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.alert::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
}
.alert__num {
  display: inline-block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.alert__title { margin: 0 0 8px; color: var(--navy); font-size: 1.05rem; }
.alert p { margin: 0; color: var(--text-mid); font-size: 0.98rem; }
.alerts__rule {
  margin: 28px 0 0;
  padding: 22px 24px;
  background: var(--gold-bg);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius-sm);
  color: var(--navy-deep);
  font-size: 1.05rem;
}

/* Authority */
.authority {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 880px) {
  .authority { grid-template-columns: 1.4fr 1fr; gap: 56px; }
}
.lead {
  font-size: 1.12rem;
  color: var(--text-mid);
  margin-bottom: 22px;
}
.commitments {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 14px;
}
.commitments li {
  padding-left: 22px; position: relative;
  color: var(--text-mid);
  line-height: 1.55;
}
.commitments li::before {
  content: "■";
  position: absolute; left: 0; top: 2px;
  color: var(--gold);
  font-size: 0.7em;
}
.authority__card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.authority__card::before {
  content: "“";
  position: absolute;
  top: 6px; left: 18px;
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.7;
}
.quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.45;
  margin: 18px 0 14px;
}
.quote strong { color: var(--gold-soft); }
.quote__source {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Buy */
.section--buy {
  background: linear-gradient(180deg, var(--paper-warm) 0%, var(--paper) 60%);
  border-top: 1px solid var(--line);
}
.buy { display: flex; flex-direction: column; align-items: center; }
.offer {
  width: 100%;
  max-width: 640px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.offer::before {
  content: "";
  position: absolute; top: -1px; left: -1px; right: -1px; height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft), var(--gold));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.offer__head { text-align: center; margin-bottom: 22px; }
.offer__title { margin: 0 0 6px; font-family: var(--serif); font-size: 1.6rem; }
.offer__sub { color: var(--text-mid); margin: 0; }
.offer__list {
  list-style: none; padding: 0;
  margin: 0 0 24px;
  display: grid; gap: 10px;
}
.offer__list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.45;
}
.offer__list li span {
  color: var(--success);
  font-weight: 700;
  font-size: 1.1rem;
}
.offer__price {
  display: flex; flex-direction: column; align-items: center;
  padding: 18px 0 22px;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  margin-bottom: 22px;
}
.offer__price__label {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.offer__price__value {
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--navy);
  margin-top: 4px;
}
.offer__price__value strong { color: var(--gold); }
.offer__trust {
  list-style: none; padding: 0;
  margin: 18px 0 0;
  display: grid; gap: 8px;
  font-size: 0.92rem;
  color: var(--text-mid);
}
.offer__trust li {
  display: flex; gap: 8px; align-items: center;
}

/* 2 botões: PIX em destaque + Cartão secundário */
.offer__pay {
  display: grid;
  gap: 12px;
  margin: 0 auto;
  max-width: 520px;
}
.offer__pay .btn {
  display: grid;
  grid-template-columns: 36px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 2px 12px;
  padding: 16px 22px;
  text-align: left;
  width: 100%;
  min-height: 76px;
}
.offer__pay .btn__icon {
  grid-row: 1 / 3;
  font-size: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.offer__pay .btn__main {
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.2;
}
.offer__pay .btn__sub {
  font-size: 0.86rem;
  font-weight: 500;
  opacity: 0.78;
  line-height: 1.2;
}
.btn--secondary {
  background: #fff;
  color: var(--navy);
  border: 2px solid var(--navy);
  box-shadow: var(--shadow-sm);
}
.btn--secondary:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* Garantia */
.guarantee-band {
  background: var(--success-bg);
  border-top: 1px solid #BBF7D0;
  border-bottom: 1px solid #BBF7D0;
  padding: clamp(32px, 6vw, 56px) 0;
}
.guarantee {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
@media (min-width: 720px) {
  .guarantee { grid-template-columns: auto 1fr; gap: 36px; }
}
.guarantee__seal {
  width: 110px; height: 110px;
  background: #fff;
  border: 4px solid var(--success);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--success);
  margin: 0 auto;
}
.guarantee__seal span {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1;
}
.guarantee__seal small {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  margin-top: 2px;
}
.guarantee__title {
  color: var(--success);
  margin: 0 0 8px;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
}
.guarantee__text {
  margin: 0;
  color: #14532D;
  font-size: 1.02rem;
  line-height: 1.55;
}

/* FAQ */
.faq {
  display: grid;
  gap: 12px;
  max-width: 820px;
}
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 22px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  position: relative;
  user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 22px; top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold-bg);
  color: var(--navy);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform 0.2s ease;
}
.faq__item[open] summary::after {
  content: "−";
  background: var(--gold);
}
.faq__body {
  padding: 0 22px 22px;
  color: var(--text-mid);
  line-height: 1.6;
  border-top: 1px solid var(--line);
  margin-top: -1px;
  padding-top: 16px;
}
.faq__body p:last-child { margin-bottom: 0; }

/* CTA Final */
.section--final {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: #fff;
  text-align: center;
}
.final { max-width: 760px; margin: 0 auto; }
.final__title {
  color: #fff;
  font-size: clamp(1.6rem, 4.4vw, 2.4rem);
  margin-bottom: 16px;
}
.final__title em {
  color: var(--gold-soft);
  font-style: italic;
}
.final__text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}
.final .btn { margin: 0 auto; display: flex; }
.final__note {
  margin-top: 14px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: clamp(36px, 6vw, 56px) 0;
}
.site-footer__inner {
  display: grid;
  gap: 28px;
  text-align: left;
}
.site-footer__brand {
  display: flex; gap: 14px; align-items: center;
}
.site-footer__brand strong { color: #fff; display: block; font-family: var(--serif); }
.site-footer__brand small {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}
.site-footer__nav {
  display: flex; flex-wrap: wrap; gap: 14px 22px;
}
.site-footer__nav a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.96rem;
}
.site-footer__nav a:hover { color: var(--gold-soft); }
.site-footer__legal {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
}
@media (min-width: 880px) {
  .site-footer__inner {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    align-items: center;
  }
  .site-footer__nav { justify-self: end; }
  .site-footer__legal { grid-column: 1 / -1; }
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 40;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  background: var(--gold);
  color: var(--navy-deep);
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.16s ease, background 0.18s ease;
}
.floating-cta:hover {
  background: var(--gold-soft);
  color: var(--navy-deep);
  transform: translateY(-2px);
}
.floating-cta__price {
  background: var(--navy-deep);
  color: var(--gold-soft);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
}
@media (max-width: 520px) {
  .floating-cta {
    left: 16px; right: 16px; bottom: 12px;
    justify-content: center;
    padding: 16px 18px;
    font-size: 1.02rem;
  }
}

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

/* Print friendly */
@media print {
  .site-header, .floating-cta, .section--buy, .section--final, .site-footer { display: none !important; }
  body { background: #fff; color: #000; }
}
