:root {
  --bg: #fffaf0;
  --bg-soft: #f4efe4;
  --text: #1e1f22;
  --muted: #5d616d;
  --line: #d8cfbe;
  --brand: #f46036;
  --brand-dark: #c73e1d;
  --card: #ffffff;
  --shadow: 0 18px 50px rgba(35, 24, 11, 0.11);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Space Grotesk", "Segoe UI", Tahoma, sans-serif;
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.2;
  margin-top: 0;
}

a {
  color: var(--brand-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(255, 250, 240, 0.88);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 14px 4%;
}

.brand {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.main-nav a {
  font-size: 0.95rem;
}

.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  background-image: url("../img/bg.jpg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(244, 96, 54, 0.52), transparent 50%),
    linear-gradient(135deg, rgba(20, 16, 11, 0.75), rgba(20, 16, 11, 0.35));
}

.hero-content {
  position: relative;
  color: #fff;
  padding: 72px 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.75rem;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  max-width: 14ch;
  margin-bottom: 12px;
}

.lead {
  max-width: 62ch;
  color: #f3efe8;
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
}

.button:hover {
  text-decoration: none;
}

.button.primary {
  background: var(--brand);
  color: #fff;
}

.button.primary:hover {
  background: var(--brand-dark);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.section {
  padding: 68px 0;
}

.section-alt {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.callout {
  margin-top: 18px;
  background: #fff3df;
  border: 1px solid #edc995;
  border-radius: 12px;
  padding: 12px 14px;
}

.split {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 26px;
  align-items: start;
}

.clean-list {
  margin: 0;
  padding-left: 20px;
}

.clean-list li {
  margin-bottom: 8px;
}

.ad-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}

.ad-label {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.muted {
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  background: #fff;
  border-left: 5px solid var(--brand);
  border-radius: 10px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
}

.history-notes {
  margin-top: 16px;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 10px;
}

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

.site-footer {
  background: #131416;
  color: #f5f2ea;
  padding: 44px 0 18px;
}

.site-footer a {
  color: #ffd2b3;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}

.site-footer h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.site-footer p {
  margin: 6px 0;
}

.copyright {
  width: min(1120px, 92%);
  margin: 16px auto 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: #d8d8d8;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .split,
  .cards-3,
  .cards-2,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: static;
  }

  .main-nav {
    gap: 10px;
  }
}
