
:root {
  --bg: #101821;
  --bg-soft: #182330;
  --panel: #f7efe9;
  --panel-2: #efe4db;
  --text: #17202a;
  --text-soft: #4d5a68;
  --ink: #0c1218;
  --line: rgba(20, 31, 42, 0.12);
  --white: #ffffff;
  --accent: #c85f43;
  --accent-2: #d9b38b;
  --sage: #6a8079;
  --shadow: 0 18px 52px rgba(9, 18, 28, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --site-width: 1240px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #efe4db 0%, #f8f3ee 26%, #fffdfa 100%);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.skip-link {
  position: absolute; left: -9999px; top: 0;
}
.skip-link:focus {
  left: 12px; top: 12px; background: var(--white); padding: 10px 14px; border-radius: 999px; z-index: 2000;
}
.container { width: min(calc(100% - 40px), var(--site-width)); margin: 0 auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 800;
  color: var(--accent);
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: currentColor; display: inline-block;
}
.site-header {
  position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(18px);
  background: rgba(16,24,33,.76); border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-wrap {
  min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.brand {
  display: flex; flex-direction: column; gap: 1px; color: var(--white);
}
.brand strong {
  font-family: Georgia, "Times New Roman", serif; font-size: 1.28rem; letter-spacing: .02em;
}
.brand small { color: rgba(255,255,255,.74); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.nav-toggle {
  display: none; border: 0; border-radius: 999px; background: rgba(255,255,255,.1); color: var(--white); padding: 11px 15px; font-weight: 700;
}
.site-nav { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.site-nav a {
  color: rgba(255,255,255,.86); font-size: .95rem; padding: 10px 12px; border-radius: 999px;
}
.site-nav a:hover, .site-nav a:focus-visible { background: rgba(255,255,255,.1); }
.site-nav .cta-link {
  background: linear-gradient(135deg, var(--accent), #e07953); color: #fff; font-weight: 800; box-shadow: 0 10px 24px rgba(200,95,67,.26);
}
.hero-shell {
  background: radial-gradient(circle at top left, rgba(217,179,139,.26), transparent 26%), linear-gradient(180deg, #101821 0%, #141f2a 100%);
  color: var(--white); padding: 40px 0 80px;
}
.hero-grid {
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 28px; align-items: stretch;
}
.hero-copy { padding: 28px 0 0; }
.hero-copy h1 {
  margin: 16px 0 16px; font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 5vw, 5rem); line-height: .98; letter-spacing: -.03em;
}
.hero-copy .lead {
  font-size: clamp(1.02rem, 2vw, 1.18rem); color: rgba(255,255,255,.82); max-width: 58ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 0; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 20px; border-radius: 999px; font-weight: 800;
  background: linear-gradient(135deg, var(--accent), #e07953); color: #fff; box-shadow: 0 12px 28px rgba(200,95,67,.3);
}
.button.secondary { background: rgba(255,255,255,.08); color: var(--white); box-shadow: none; border: 1px solid rgba(255,255,255,.16); }
.button.light { background: var(--ink); color: #fff; box-shadow: none; }
.hero-notes { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; margin-top: 32px; }
.hero-note {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; padding: 16px 16px 14px;
}
.hero-note strong { display: block; font-size: 1.1rem; margin-bottom: 4px; }
.hero-media {
  position: relative; border-radius: 34px; overflow: hidden; min-height: 560px; box-shadow: 0 24px 56px rgba(0,0,0,.24);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-card {
  position: absolute; right: 22px; bottom: 22px; max-width: 310px;
  padding: 18px 18px 16px; border-radius: 22px;
  background: rgba(247,239,233,.92); color: var(--text); box-shadow: var(--shadow);
}
.hero-card h2 { margin: 0 0 6px; font-size: 1.06rem; }
.hero-card p { margin: 0; font-size: .95rem; color: var(--text-soft); }
main section { padding: 72px 0; }
.intro-slab {
  margin-top: -38px;
}
.intro-card {
  background: var(--white); border-radius: 28px; box-shadow: var(--shadow); padding: 30px;
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: start;
}
.intro-card h2, .section-head h2, .page-hero h1, .content-block h2, .faq h2, .cta-panel h2 {
  font-family: Georgia, "Times New Roman", serif; letter-spacing: -.02em; line-height: 1.08;
}
.intro-card h2 { margin: 12px 0 0; font-size: clamp(1.9rem, 3vw, 3rem); }
.copy p, .rich-copy p { margin: 0 0 16px; color: var(--text-soft); }
.metrics-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; margin-top: 26px;
}
.metric {
  padding: 22px; background: linear-gradient(180deg, #fff, #f7f1eb); border-radius: 22px; border: 1px solid rgba(20,31,42,.08);
}
.metric strong { display: block; font-size: 1.5rem; margin-bottom: 6px; color: var(--ink); }
.metric span { color: var(--text-soft); font-size: .96rem; }
.section-head { display: grid; grid-template-columns: .82fr 1.18fr; gap: 20px; align-items: end; margin-bottom: 28px; }
.section-head h2 { margin: 12px 0 0; font-size: clamp(1.8rem, 3vw, 2.8rem); }
.section-head p { margin: 0; color: var(--text-soft); }
.editorial-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 24px; align-items: stretch;
}
.editorial-grid.reverse { grid-template-columns: .95fr 1.05fr; }
.editorial-grid.reverse .editorial-image { order: 2; }
.editorial-grid.reverse .editorial-copy { order: 1; }
.editorial-image {
  border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); min-height: 420px;
}
.editorial-image img { width: 100%; height: 100%; object-fit: cover; }
.editorial-copy {
  background: linear-gradient(180deg, var(--white), #fbf8f4);
  border-radius: 28px; padding: 30px; border: 1px solid var(--line);
}
.editorial-copy h3 { margin: 14px 0 14px; font-size: clamp(1.55rem, 2.5vw, 2.3rem); font-family: Georgia, "Times New Roman", serif; }
.editorial-copy p { color: var(--text-soft); margin: 0 0 14px; }
.check-list {
  list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px;
}
.check-list li {
  display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; color: var(--text);
}
.check-list li::before {
  content: "•"; color: var(--accent); font-size: 1.35rem; line-height: 1;
}
.dual-cards {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px;
}
.info-card {
  background: linear-gradient(180deg, var(--bg-soft), var(--bg)); color: var(--white); border-radius: 26px; padding: 28px; box-shadow: var(--shadow);
}
.info-card h3 { margin: 12px 0 10px; font-family: Georgia, "Times New Roman", serif; font-size: 1.7rem; }
.info-card p { color: rgba(255,255,255,.78); }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 0; }
.pill {
  padding: 9px 12px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; color: rgba(255,255,255,.82); font-size: .9rem;
}
.resource-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.resource-card {
  background: var(--white); border-radius: 24px; border: 1px solid var(--line); padding: 24px; box-shadow: 0 12px 30px rgba(13,24,35,.06);
}
.resource-card h3 { margin: 12px 0 10px; font-size: 1.24rem; }
.resource-card p { color: var(--text-soft); margin: 0 0 16px; }
.resource-card a { font-weight: 800; color: var(--accent); }
.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.faq-item {
  background: var(--white); border: 1px solid var(--line); border-radius: 24px; padding: 24px;
}
.faq-item h3 { margin: 0 0 10px; font-size: 1.06rem; }
.faq-item p { margin: 0; color: var(--text-soft); }
.cta-panel {
  background: linear-gradient(135deg, #1a2734 0%, #101821 100%); color: var(--white); border-radius: 32px; padding: 34px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 24px; align-items: center; box-shadow: var(--shadow);
}
.cta-panel h2 { margin: 12px 0; font-size: clamp(1.9rem, 3vw, 3rem); }
.cta-panel p { color: rgba(255,255,255,.78); }
.cta-panel .links { display: flex; flex-wrap: wrap; gap: 12px; }
.page-hero {
  background: linear-gradient(180deg, #101821 0%, #162331 100%); color: var(--white); padding: 60px 0 42px;
}
.page-hero-grid {
  display: grid; grid-template-columns: .92fr 1.08fr; gap: 24px; align-items: center;
}
.page-hero h1 { margin: 16px 0 14px; font-size: clamp(2.2rem, 4vw, 4.2rem); }
.page-hero p { color: rgba(255,255,255,.8); }
.page-hero .media { border-radius: 30px; overflow: hidden; min-height: 360px; box-shadow: 0 24px 56px rgba(0,0,0,.26); }
.page-hero .media img { width: 100%; height: 100%; object-fit: cover; }
.breadcrumb { font-size: .9rem; color: rgba(255,255,255,.7); }
.breadcrumb a { color: rgba(255,255,255,.84); }
.content-grid {
  display: grid; grid-template-columns: 280px 1fr; gap: 24px; align-items: start;
}
.sidebar {
  position: sticky; top: 96px; background: var(--white); border-radius: 24px; border: 1px solid var(--line); padding: 20px; box-shadow: 0 12px 28px rgba(12,18,24,.05);
}
.sidebar h3 { margin: 0 0 14px; font-size: 1rem; }
.sidebar a { display: block; padding: 10px 0; color: var(--text-soft); border-bottom: 1px solid rgba(20,31,42,.06); }
.sidebar a:last-child { border-bottom: 0; }
.content-stack { display: grid; gap: 22px; }
.content-block {
  background: var(--white); border-radius: 28px; padding: 28px; border: 1px solid var(--line); box-shadow: 0 12px 28px rgba(12,18,24,.05);
}
.content-block h2 { margin: 8px 0 14px; font-size: clamp(1.55rem, 2.6vw, 2.3rem); }
.content-block h3 { margin: 18px 0 10px; font-size: 1.12rem; }
.content-block p { color: var(--text-soft); }
.split-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px 20px; }
.split-list ul { margin: 0; padding-left: 18px; color: var(--text-soft); }
.quote-banner {
  padding: 24px; border-radius: 24px; background: linear-gradient(135deg, #fff9f4, #f3e8dd); border: 1px solid rgba(200,95,67,.18);
}
.quote-banner strong { display: block; margin-bottom: 8px; color: var(--ink); }
.contact-box {
  background: var(--white); border-radius: 30px; border: 1px solid var(--line); padding: 24px; box-shadow: var(--shadow);
}
.contact-box iframe, .contact-box script { width: 100%; }
.footer {
  background: #0d141c; color: rgba(255,255,255,.72); padding: 54px 0 24px; margin-top: 80px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 24px;
}
.footer h3 { color: var(--white); margin-top: 0; }
.footer a { color: rgba(255,255,255,.82); }
.footer small { display: block; margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); }
@media (max-width: 1080px) {
  .hero-grid, .intro-card, .section-head, .editorial-grid, .page-hero-grid, .cta-panel, .content-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 420px; }
  .sidebar { position: static; }
  .resource-grid, .faq-grid, .dual-cards, .metrics-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 760px) {
  .container { width: min(calc(100% - 24px), var(--site-width)); }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute; top: 78px; left: 12px; right: 12px; display: none; flex-direction: column; align-items: stretch;
    background: rgba(16,24,33,.98); border: 1px solid rgba(255,255,255,.08); border-radius: 24px; padding: 12px;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 14px; }
  .hero-notes, .metrics-grid, .resource-grid, .faq-grid, .dual-cards, .split-list { grid-template-columns: 1fr; }
  .hero-shell { padding-bottom: 56px; }
  .hero-copy h1 { font-size: clamp(2.2rem, 9vw, 3.4rem); }
  main section { padding: 58px 0; }
  .hero-card { position: static; margin: 14px; max-width: none; }
  .footer-grid { grid-template-columns: 1fr; }
}
