@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #efe6d8;
  --bg-deep: #d9c7af;
  --surface: rgba(255, 251, 245, 0.88);
  --surface-strong: #fffdf9;
  --surface-dark: #23312d;
  --ink: #1f2724;
  --ink-soft: #576560;
  --line: rgba(54, 66, 61, 0.16);
  --line-strong: rgba(54, 66, 61, 0.28);
  --primary: #7d4b2a;
  --primary-strong: #5f391f;
  --accent: #2f5d50;
  --accent-soft: #dce8e2;
  --warm-soft: #f3dcc0;
  --ok: #1b6d4f;
  --shadow: 0 18px 48px rgba(42, 32, 22, 0.12);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: min(1160px, 92vw);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  line-height: 1.65;
  background:
    radial-gradient(circle at top left, rgba(243, 220, 192, 0.85), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(47, 93, 80, 0.12), transparent 24%),
    linear-gradient(180deg, #f3ebdf 0, var(--bg) 240px, #f6f0e7 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(31, 39, 36, 0.028) 0 1px, transparent 1px 88px),
    repeating-linear-gradient(180deg, rgba(31, 39, 36, 0.018) 0 1px, transparent 1px 88px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.06));
}

a {
  color: var(--primary-strong);
  text-decoration: none;
}

a:hover {
  color: var(--primary);
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  min-height: 100vh;
  position: relative;
  overflow-x: clip;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  z-index: -1;
  pointer-events: none;
}

.site-shell::before {
  width: 26rem;
  height: 26rem;
  left: -11rem;
  top: 7rem;
  border-radius: 47% 53% 45% 55%;
  background: radial-gradient(circle, rgba(125, 75, 42, 0.18) 0, rgba(125, 75, 42, 0.06) 48%, transparent 74%);
  filter: blur(10px);
}

.site-shell::after {
  width: 22rem;
  height: 22rem;
  right: -6rem;
  bottom: 10vh;
  border-radius: 55% 45% 43% 57%;
  background:
    linear-gradient(135deg, rgba(47, 93, 80, 0.18), rgba(47, 93, 80, 0.04)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 14px, transparent 14px 32px);
  transform: rotate(14deg);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(35, 49, 45, 0.1);
  backdrop-filter: blur(14px);
  background: rgba(248, 243, 235, 0.82);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  color: var(--ink);
  font-family: "Fraunces", serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.brand:hover {
  color: var(--ink);
}

.brand small {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line-strong);
  background: var(--surface-strong);
  color: var(--ink);
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  background: rgba(47, 93, 80, 0.08);
}

.nav-links a.active {
  color: #fff;
  background: var(--accent);
}

.cta-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
}

.cta-link:hover,
.button:hover {
  transform: translateY(-2px);
}

.cta-link,
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #a5663b);
  box-shadow: 0 16px 32px rgba(125, 75, 42, 0.2);
}

.cta-link:hover,
.button-primary:hover {
  color: #fff;
}

.button-soft {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.42);
  border-color: var(--line);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero {
  padding: 92px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0;
  font-family: "Fraunces", serif;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(3.1rem, 7vw, 5.8rem);
}

.hero-copy h1 span,
.page-hero h1 span {
  color: var(--primary);
}

.hero-copy p,
.page-hero p,
.section-head p,
.card p,
.timeline-item p,
.faq-item p,
.policy-copy p,
.contact-card p,
.hero-panel p {
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-note {
  margin-top: 22px;
  max-width: 65ch;
  padding: 14px 16px;
  border-left: 3px solid var(--primary);
  background: rgba(255, 255, 255, 0.48);
  border-radius: 0 14px 14px 0;
  color: var(--ink-soft);
}

.hero-panel,
.card,
.contact-card,
.table-wrap,
.policy-copy,
.timeline-item,
.faq-item,
.data-shell {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.hero-panel {
  border-radius: var(--radius-xl);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto -24px -28px auto;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 93, 80, 0.12), transparent 66%);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
}

.list-tight,
.check-list,
.footer-links,
.contact-list,
.list-columns,
.compact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-tight {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.compact-list {
  display: grid;
  gap: 8px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.stat {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(54, 66, 61, 0.08);
}

.stat strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.section,
.page-hero {
  padding: 72px 0;
}

.page-hero {
  padding-top: 80px;
  padding-bottom: 42px;
}

.page-hero h1 {
  max-width: 11ch;
  font-size: clamp(2.5rem, 6vw, 4.4rem);
}

.section-soft {
  position: relative;
}

.section-soft::before {
  content: "";
  position: absolute;
  inset: 20px 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(47, 93, 80, 0.06), rgba(255, 255, 255, 0.18));
}

.section-head {
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.grid {
  display: grid;
  gap: 18px;
}

.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.contact-card,
.policy-copy,
.data-shell {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.card h3,
.contact-card h2,
.timeline-item h3,
.policy-copy h2,
.policy-copy h3,
.data-shell h2,
.faq-item summary {
  margin-top: 0;
}

.card h3,
.timeline-item h3,
.policy-copy h3,
.faq-item summary {
  font-size: 1.12rem;
}

.check-list,
.list-columns,
.contact-list,
.footer-links {
  display: grid;
  gap: 10px;
}

.check-list li,
.list-columns li {
  position: relative;
  padding-left: 18px;
}

.check-list li::before,
.list-columns li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  border-radius: 24px 24px 24px 8px;
  padding: 22px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
}

.form {
  display: grid;
  gap: 14px;
}

.form label {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  font-weight: 700;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-feedback {
  margin: 0;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 700;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th,
td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(54, 66, 61, 0.1);
  vertical-align: top;
  text-align: left;
}

th {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.policy-copy {
  display: grid;
  gap: 18px;
}

.policy-copy h2,
.data-shell h2 {
  margin-bottom: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.policy-copy h3 {
  margin-bottom: 8px;
}

.faq-item {
  border-radius: 20px;
  padding: 0;
}

.faq-item details {
  padding: 18px 20px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
}

.site-footer {
  margin-top: 28px;
  padding: 48px 0 22px;
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(180deg, #25332f, #1c2522);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 22px;
}

.footer-title {
  margin-top: 0;
  margin-bottom: 12px;
  color: #fff;
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
}

.footer-note,
.legal-strip,
.site-footer a {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer a:hover {
  color: #fff;
}

.legal-strip {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-grid,
  .cols-2,
  .cols-3,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .page-hero h1 {
    max-width: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 4vw;
    width: min(340px, 92vw);
    padding: 12px;
    border-radius: 22px;
    background: rgba(255, 251, 245, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a,
  .cta-link {
    width: 100%;
  }

  .nav-wrap {
    position: relative;
  }

  .header-inner {
    align-items: flex-start;
    padding: 14px 0;
  }
}

@media (max-width: 640px) {
  .hero,
  .section,
  .page-hero {
    padding-top: 56px;
    padding-bottom: 48px;
  }

  .hero-panel,
  .card,
  .contact-card,
  .policy-copy,
  .data-shell {
    padding: 20px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .form-buttons,
  .hero-actions {
    flex-direction: column;
  }

  .button,
  .button-soft,
  .button-primary {
    width: 100%;
  }
}