@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Source+Serif+4:wght@400;600;700&display=swap');

:root {
  --accent: #C47D3C;
  --accent-2: #E2A15E;
  --bg: #FAF7F2;
  --surface: #FFFFFF;
  --navy: #1B2838;
  --text: #1A1612;
  --muted: #4A433A;
  --border: #E8E2D9;
  --highlight: #FFF8E7;
  --shadow: 0 24px 60px rgba(27, 40, 56, 0.10);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Source Serif 4', Georgia, serif;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(250, 247, 242, 0.82);
  border-bottom: 1px solid rgba(232, 226, 217, 0.85);
}
.site-header.dark {
  background: rgba(27, 40, 56, 0.72);
  border-bottom-color: rgba(255,255,255,0.08);
}
.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img {
  width: 148px;
  height: auto;
}
.brand small {
  display: block;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 11px;
}
.nav-links {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 15px;
}
.nav-links a:hover { color: var(--text); }

.btn, button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 14px 30px rgba(196, 125, 60, .25);
}
.btn-primary:hover { background: #b66f2d; }
.btn-secondary {
  background: transparent;
  border-color: rgba(255,255,255,.22);
  color: white;
}
.btn-light {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.hero {
  position: relative;
  background: radial-gradient(circle at 65% 45%, rgba(226,161,94,0.20), transparent 30%),
              linear-gradient(180deg, rgba(8,10,12,.58), rgba(8,10,12,.72)),
              #130f0c;
  color: white;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('RTF_avatar.jpeg') center 22% / cover no-repeat;
  mix-blend-mode: screen;
  opacity: .22;
  transform: scale(1.04);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27,40,56,.18), rgba(27,40,56,.54));
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 46px;
  align-items: center;
  min-height: 82vh;
  padding: 72px 0 80px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,248,231,.06);
  color: #F3DEC9;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
}
.hero h1, .section-title h2, .card h3, .result-card h3, .content h2, .content h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.05;
  letter-spacing: -.02em;
}
.hero h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  margin: 0 0 18px;
}
.hero .lead {
  font-size: 1.15rem;
  max-width: 760px;
  color: rgba(255,255,255,.82);
  margin-bottom: 26px;
}
.hero-quote {
  margin-top: 28px;
  padding-left: 18px;
  border-left: 2px solid rgba(226,161,94,.65);
  color: rgba(255,255,255,.78);
  font-size: 1rem;
  max-width: 720px;
}
.hero-panel {
  position: relative;
  z-index: 2;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}
.hero-panel h3 {
  margin: 0 0 12px;
  font-size: 2rem;
}
.hero-panel p {
  color: rgba(255,255,255,.82);
  margin: 0 0 14px;
}
.hero-panel ul {
  padding-left: 20px;
  margin: 0 0 22px;
  color: rgba(255,255,255,.9);
}
.hero-panel li + li { margin-top: 8px; }

main section { padding: 86px 0; }
.section-title {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 30px;
}
.section-title h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  color: var(--text);
}
.section-title p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.cards { display: grid; gap: 24px; }
.card, .result-card, .form-card, .cta-band {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card {
  padding: 28px;
}
.card.dark {
  background: var(--navy);
  color: white;
  border-color: rgba(255,255,255,.06);
}
.card.dark p, .card.dark li { color: rgba(255,255,255,.82); }
.card h3 {
  margin: 0 0 12px;
  font-size: 2rem;
}
.card .eyebrow, .result-card .eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 700;
}
.card p:last-child { margin-bottom: 0; }

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.bullet-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}
.bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .75em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.bullet-list li + li { margin-top: 10px; }

.steps {
  counter-reset: item;
  display: grid;
  gap: 18px;
}
.step {
  position: relative;
  padding: 22px 22px 22px 80px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.step::before {
  counter-increment: item;
  content: counter(item, decimal-leading-zero);
  position: absolute;
  left: 22px;
  top: 22px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--highlight);
  color: var(--accent);
  border: 1px solid rgba(196,125,60,.22);
  font-weight: 700;
}
.step h4 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}
.step p { margin: 0; color: var(--muted); }

.results-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.result-card { padding: 28px; }
.result-card h3 { margin: 0 0 10px; font-size: 2rem; }
.result-card p { color: var(--muted); }
.result-card .risk { margin-top: 16px; padding: 14px 16px; background: var(--highlight); border-radius: 14px; border: 1px solid rgba(196,125,60,.16); }
.result-card .risk strong { color: var(--text); }

.band {
  background: linear-gradient(180deg, rgba(27,40,56,.98), rgba(27,40,56,.98));
  color: white;
}
.band .section-title h2, .band .section-title p { color: white; }
.band .section-title p { color: rgba(255,255,255,.78); }

.quote-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: stretch; }
.quote-box {
  padding: 34px;
  border-radius: 28px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
.quote-box blockquote {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.1;
}
.quote-box cite {
  display: block;
  margin-top: 14px;
  color: rgba(255,255,255,.68);
  font-style: normal;
}

.form-card {
  padding: 30px;
}
.form-card h3 {
  margin: 0 0 10px;
  font-size: 2rem;
}
.form-card p { color: var(--muted); }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
  margin-top: 20px;
}
.form-grid .full { grid-column: 1 / -1; }
label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--muted);
}
input, textarea, select {
  width: 100%;
  padding: 14px 15px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font: inherit;
}
textarea { min-height: 130px; resize: vertical; }
input:focus, textarea:focus, select:focus {
  outline: 2px solid rgba(196,125,60,.18);
  border-color: rgba(196,125,60,.58);
}
.helper {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}

.mini-cta {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.content p, .content li {
  color: var(--muted);
}
.content h2 {
  margin-top: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}
.content h3 {
  font-size: 1.9rem;
  margin: 22px 0 10px;
}
.content .divider {
  height: 1px;
  background: var(--border);
  margin: 30px 0;
}
.content .callout {
  padding: 20px 22px;
  border-radius: 18px;
  background: var(--highlight);
  border: 1px solid rgba(196,125,60,.14);
  color: var(--text);
}
.table-wrap {
  overflow: auto;
  border-radius: 18px;
  border: 1px solid var(--border);
}
.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}
.table-wrap th, .table-wrap td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
.table-wrap th {
  background: #FCFBF8;
  font-weight: 700;
  color: var(--text);
}

.cta-band {
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-band h3 {
  margin: 0 0 8px;
  font-size: 2rem;
}
.cta-band p { margin: 0; color: var(--muted); max-width: 720px; }

.footer {
  padding: 28px 0 44px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  background: #F6F2EB;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.footer img { width: 124px; }
.footer small { display: block; }

@media (max-width: 1024px) {
  .hero-inner, .grid-2, .grid-3, .results-grid, .quote-grid { grid-template-columns: 1fr; }
  .hero-inner { min-height: auto; padding: 90px 0 72px; }
}
@media (max-width: 760px) {
  .nav { min-height: 74px; }
  .nav-links { display: none; }
  .hero h1 { font-size: 2.65rem; }
  .section-title { display: block; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-band, .footer-inner { display: block; }
  .cta-band .btn { margin-top: 18px; }
}
