:root {
  --ink: #24180f;
  --muted: #6d5947;
  --sand: #f6edda;
  --paper: #fffaf0;
  --leather: #6f4324;
  --leather-dark: #321f14;
  --gold: #e5a934;
  --line: rgba(69, 43, 24, 0.18);
  --shadow: 0 22px 60px rgba(48, 30, 18, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 8%, rgba(229, 169, 52, 0.16), transparent 30rem),
    linear-gradient(180deg, #fffaf0 0%, var(--sand) 100%);
  font-family: Manrope, Arial, sans-serif;
  line-height: 1.65;
}

a { color: inherit; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 20;
  padding: 0.7rem 1rem;
  background: white;
}

.skip-link:focus { left: 0.75rem; top: 0.75rem; }

.public-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  color: #fffaf0;
  background: rgba(36, 24, 15, 0.96);
  backdrop-filter: blur(12px);
}

.nav-shell,
.page-shell,
.footer-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: white;
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.public-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem 1.2rem;
  font-size: 0.91rem;
  font-weight: 800;
}

.public-nav a {
  text-decoration: none;
  color: #f6ead7;
}

.public-nav a:hover,
.public-nav a:focus-visible { color: var(--gold); }

.hero {
  padding: clamp(3.5rem, 8vw, 7.5rem) 0 4.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.94fr);
  gap: clamp(2rem, 5vw, 4.8rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--leather);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.65rem, 7vw, 5.9rem);
  letter-spacing: -0.045em;
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.45rem);
  letter-spacing: -0.035em;
}

h3 { font-size: 1.32rem; }

.lede {
  max-width: 720px;
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.22rem);
}

.hero-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px 34px 8px 34px;
  box-shadow: var(--shadow);
  background: var(--leather-dark);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-media.contain img {
  object-fit: contain;
  background: #23180f;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.15rem;
  border: 2px solid var(--leather-dark);
  border-radius: 999px;
  background: var(--leather-dark);
  color: white;
  font-weight: 900;
  text-decoration: none;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  background: var(--leather);
}

.button.secondary {
  color: var(--leather-dark);
  background: transparent;
}

.section {
  padding: clamp(3.2rem, 7vw, 6.2rem) 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 250, 240, 0.83);
  box-shadow: 0 12px 34px rgba(48, 30, 18, 0.06);
}

.card h3 { margin: 0 0 0.65rem; }
.card p { margin: 0; color: var(--muted); }
.card a { font-weight: 900; text-underline-offset: 0.2em; }

.feature-image {
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 16px;
}

.feature-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 2rem 0;
}

.fact {
  padding: 1rem;
  border-left: 4px solid var(--gold);
  background: rgba(255,255,255,0.58);
}

.fact strong,
.fact span { display: block; }
.fact span { color: var(--muted); font-size: 0.9rem; }

.prose {
  max-width: 780px;
  font-size: 1.03rem;
}

.prose h2 { margin-top: 2.8rem; }
.prose h3 { margin-top: 2rem; }
.prose p, .prose li { color: #4f4034; }
.prose a { font-weight: 800; }

.faq details {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.cta {
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 32px;
  color: #fff8ea;
  background: linear-gradient(135deg, var(--leather-dark), #684021);
}

.cta h2 { max-width: 760px; }
.cta p { max-width: 690px; color: #eadac4; }
.cta .button { border-color: var(--gold); background: var(--gold); color: #21150d; }

.breadcrumbs {
  padding-top: 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.breadcrumbs a { font-weight: 800; }

.public-footer {
  padding: 2rem 0;
  color: #e9dcc9;
  background: var(--leather-dark);
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-shell p { margin: 0; }
.footer-shell a { font-weight: 800; }

@media (max-width: 820px) {
  .nav-shell { align-items: flex-start; padding: 0.75rem 0; }
  .public-nav { max-width: 55%; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 580px; }
  .grid { grid-template-columns: 1fr; }
  .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 540px) {
  .brand span { max-width: 150px; line-height: 1.15; }
  .public-nav { max-width: 48%; gap: 0.5rem 0.8rem; font-size: 0.78rem; }
  .facts { grid-template-columns: 1fr; }
}
