@charset "UTF-8";

:root {
  --bg: #f6f2ea;
  --surface: #ffffff;
  --surface-soft: #fbf8f2;
  --text: #1c1b18;
  --muted: #6f675d;
  --gold: #b8873b;
  --gold-dark: #7a5520;
  --navy: #152033;
  --navy-soft: #21314d;
  --line: #e7dccb;
  --green: #1f6f5b;
  --shadow: 0 24px 70px rgba(21, 32, 51, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(184, 135, 59, 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(21, 32, 51, 0.14), transparent 32%),
    var(--bg);
  color: var(--text);
  line-height: 1.75;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
.container { width: min(1180px, 92%); margin: 0 auto; }

.topbar {
  background: var(--navy);
  color: #f9f3e7;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(231, 220, 203, 0.9);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; min-width: 240px; }
.brand-logo { width: 245px; height: auto; display: block; }

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 700;
}

.menu a:hover { color: var(--gold-dark); }

.header-cta {
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--navy);
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 12px 30px rgba(21, 32, 51, 0.18);
}

.hero {
  padding: 82px 0 58px;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -170px;
  top: -150px;
  background: rgba(184, 135, 59, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 42px;
  align-items: center;
  position: relative;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid rgba(184, 135, 59, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--gold-dark);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  line-height: 1.08;
}

h1 {
  font-size: clamp(42px, 6vw, 76px);
  letter-spacing: -0.06em;
  margin: 22px 0;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.045em;
  margin: 0 0 18px;
}

h3 {
  font-size: 24px;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
}

p { margin: 0 0 16px; }

.lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 760px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(21, 32, 51, 0.22);
}

.btn-primary:hover { transform: translateY(-2px); }

.btn-secondary {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
  color: var(--navy);
}

.hero-visual { display: flex; justify-content: center; }

.hero-visual img {
  border-radius: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(231, 220, 203, 0.9);
}

.section { padding: 72px 0; }
.section-tight { padding: 44px 0; }

.section-title {
  max-width: 820px;
  margin-bottom: 34px;
}

.kicker {
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.editorial-block {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 38px;
  align-items: stretch;
}

.quote-box {
  background: var(--navy);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 34px;
  min-height: 100%;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.quote-box:before {
  content: "“";
  position: absolute;
  top: -34px;
  left: 22px;
  font-size: 180px;
  font-family: Georgia, "Times New Roman", serif;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
}

.quote-box p {
  position: relative;
  z-index: 1;
  font-size: 21px;
  line-height: 1.55;
  color: #f5ead8;
  margin-bottom: 18px;
}

.quote-box small {
  position: relative;
  z-index: 1;
  color: #d7bf8e;
  font-weight: 800;
}

.content-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 34px;
  box-shadow: 0 16px 44px rgba(21, 32, 51, 0.08);
}

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

.stat {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 14px 36px rgba(21, 32, 51, 0.07);
}

.stat span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 9px;
}

.stat b {
  display: block;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1.1;
}

.cream-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(251, 248, 242, 0.94)),
    var(--surface-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 12px 34px rgba(21, 32, 51, 0.07);
  position: relative;
  overflow: hidden;
}

.feature-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: #f3eadb;
  color: var(--gold-dark);
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 18px;
}

.essay-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.prompt-box {
  background: linear-gradient(145deg, #ffffff, #fbf8f2);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 34px;
  box-shadow: var(--shadow);
}

.prompt-label {
  display: inline-block;
  background: var(--navy);
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.prompt-text {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  line-height: 1.28;
  color: var(--navy);
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}

.checklist { display: grid; gap: 14px; }

.check-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px;
}

.check-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(31, 111, 91, 0.12);
  color: var(--green);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.timeline {
  display: grid;
  gap: 0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(21, 32, 51, 0.07);
}

.timeline-row {
  display: grid;
  grid-template-columns: 230px 1fr;
  border-bottom: 1px solid var(--line);
}

.timeline-row:last-child { border-bottom: 0; }

.timeline-date {
  background: #fbf8f2;
  padding: 22px;
  font-weight: 900;
  color: var(--gold-dark);
  border-right: 1px solid var(--line);
}

.timeline-content { padding: 22px; }
.timeline-content h3 { font-size: 22px; margin-bottom: 6px; }

.notice {
  background: #fff7e6;
  border: 1px solid #efd19a;
  color: #6d4712;
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 26px;
  font-weight: 600;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.faq-side {
  background: var(--navy);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 34px;
  box-shadow: var(--shadow);
}

.faq-side h2 { color: #ffffff; }
.faq-side p { color: #e7dccb; }
.faq-list { display: grid; gap: 14px; }

details {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: 0 10px 24px rgba(21, 32, 51, 0.05);
}

summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
}

details p {
  color: var(--muted);
  margin-top: 12px;
  margin-bottom: 0;
}

.final-cta {
  background:
    linear-gradient(135deg, rgba(21, 32, 51, 0.95), rgba(33, 49, 77, 0.94)),
    var(--navy);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 46px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow);
}

.final-cta h2 { color: #ffffff; }
.final-cta p { color: #e7dccb; }

.mini-list {
  display: grid;
  gap: 12px;
}

.mini-list div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px 16px;
  color: #f8efe0;
  font-weight: 700;
}

footer {
  padding: 34px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  flex-wrap: wrap;
}

.footer-inner > div { max-width: 560px; }

@media (max-width: 980px) {
  .hero-grid,
  .editorial-block,
  .essay-layout,
  .faq-grid,
  .final-cta { grid-template-columns: 1fr; }

  .stats-grid,
  .cards-3 { grid-template-columns: repeat(2, 1fr); }

  .menu { display: none; }
  .hero-copy { max-width: none; }
}

@media (max-width: 640px) {
  .stats-grid,
  .cards-3 { grid-template-columns: 1fr; }

  .timeline-row { grid-template-columns: 1fr; }

  .timeline-date {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .topbar-inner { display: block; }
  .hero { padding-top: 54px; }

  .content-card,
  .prompt-box,
  .quote-box,
  .final-cta { padding: 24px; }

  .brand-logo { width: 210px; }
  .header-cta { display: none; }
  h1 { font-size: 44px; }
}
