:root {
  color-scheme: light;
  --bg: #f6f6f4;
  --surface: #ffffff;
  --surface-alt: #f1f1ee;
  --text: #111315;
  --muted: #5b6166;
  --accent: #7a5a2a;
  --accent-soft: #cdb277;
  --border: #e2e3e5;
  --shadow: 0 24px 50px rgba(17, 19, 21, 0.12);
  --radius-lg: 26px;
  --radius: 18px;
  --max-width: 1200px;
  --grid-gap: clamp(22px, 3vw, 36px);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Segoe UI", "Trebuchet MS", sans-serif;
  background: radial-gradient(
      circle at 12% 12%,
      rgba(205, 178, 119, 0.16),
      transparent 46%
    ),
    radial-gradient(
      circle at 88% 8%,
      rgba(122, 90, 42, 0.12),
      transparent 44%
    ),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.section {
  padding: clamp(72px, 10vw, 120px) 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 16px;
}

h1,
h2,
h3 {
  font-family: "Fraunces", "Times New Roman", serif;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.2;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

p {
  color: var(--muted);
  font-size: 1rem;
}

.lead {
  font-size: 1.15rem;
  margin: 20px 0 28px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 246, 244, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 227, 229, 0.7);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow: 0 8px 16px rgba(17, 19, 21, 0.2);
}

.brand-text {
  font-size: 1rem;
  color: var(--text);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.hero {
  padding-top: clamp(72px, 12vw, 140px);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--grid-gap);
  align-items: start;
}

.hero-copy {
  grid-column: 1 / span 8;
  max-width: 640px;
}

.hero-visual {
  grid-column: 9 / -1;
  justify-self: end;
  max-width: 500px;
  width: 100%;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 26px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fffdf8;
  box-shadow: 0 12px 30px rgba(122, 90, 42, 0.35);
}

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

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

.hero-meta {
  display: grid;
  gap: 14px;
}

.meta-card {
  padding: 18px 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
}

.meta-title {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.hero-visual {
  display: grid;
  gap: clamp(12px, 1.8vw, 18px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shot {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(226, 227, 229, 0.8);
  box-shadow: var(--shadow);
  background: var(--surface);
  aspect-ratio: 9 / 19.5;
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--surface);
}

.shot-wide {
  grid-column: 1 / -1;
}

.section-head {
  margin-bottom: 36px;
  max-width: 640px;
}

.grid {
  display: grid;
  gap: var(--grid-gap);
}

.grid.three {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.grid.three .card {
  grid-column: span 4;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: 0 16px 30px rgba(17, 19, 21, 0.08);
}

.card.compact {
  padding: 20px;
}

.reports {
  background: transparent;
}

.output-figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--surface);
  margin: 0;
  max-width: 560px;
  width: 100%;
}

.output-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.output-caption {
  padding: 12px 16px 16px;
  font-size: 0.9rem;
  color: var(--muted);
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.reports-grid {
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
}

.reports-copy {
  grid-column: 1 / span 5;
}

.checklist {
  list-style: none;
  margin: 22px 0 26px;
  display: grid;
  gap: 12px;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(122, 90, 42, 0.2);
}

.report-preview {
  display: grid;
  gap: 24px;
  grid-column: 6 / -1;
  justify-items: end;
}


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

.faq details {
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 18px 22px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
}

.faq p {
  margin-top: 12px;
}


.site-footer {
  padding: 40px 0 26px;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer-bottom {
  margin-top: 24px;
  font-size: 0.85rem;
}

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

.page-hero {
  padding-top: clamp(60px, 10vw, 100px);
}

.page-title {
  max-width: 760px;
}

.page-content {
  display: grid;
  gap: 28px;
}

.page-content h2 {
  margin-top: 12px;
}

.page-content ul {
  padding-left: 20px;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.notice {
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nav-links {
    gap: 12px;
    font-size: 0.9rem;
  }

  .container {
    width: min(100% - 40px, var(--max-width));
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-visual,
  .reports-copy,
  .report-preview {
    grid-column: 1 / -1;
    justify-items: start;
  }

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

  .hero-visual {
    max-width: 480px;
    justify-self: center;
    height: auto;
    grid-template-rows: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shot {
    grid-column: span 1;
    height: auto;
  }

  .shot-wide {
    grid-column: 1 / -1;
  }

  .grid.three .card {
    grid-column: span 6;
  }
}

@media (max-width: 700px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .grid.three .card {
    grid-column: span 12;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .reveal {
    transition: none;
  }
}
