:root {
  --paper: #f6f2e9;
  --paper-strong: #eee7da;
  --ink: #1b1a18;
  --ink-soft: #57524b;
  --line: #cfc5b5;
  --accent: #6f1f1f;
  --accent-soft: #efe3d9;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Source Sans 3", Arial, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(30, 24, 20, 0.02) 0.6px, transparent 0.6px);
  background-size: 3px 3px;
  opacity: 0.45;
}

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

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

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.topline {
  background: #171513;
  color: #efe5d8;
  border-bottom: 1px solid #0f0d0b;
}

.topline .container {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 600;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(246, 242, 233, 0.95);
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.branding {
  display: inline-flex;
  flex-direction: column;
}

.brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 6vw, 2.9rem);
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-meta {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 700;
}

.nav-toggle {
  border: 1px solid #1f1c18;
  background: transparent;
  color: #1f1c18;
  padding: 0.35rem 0.65rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
}

.main-nav {
  display: none;
}

.main-nav.open {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.main-nav ul {
  margin: 0;
  padding: 0.6rem 1rem 1rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.main-nav a {
  display: block;
  padding: 0.45rem 0.55rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  border-radius: 4px;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: #201d19;
  color: #f6f2e9;
}

.credibility-strip {
  background: var(--paper-strong);
  border-bottom: 1px solid var(--line);
}

.credibility-strip .container {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3a342e;
  font-weight: 700;
}

main {
  padding: 1.6rem 0 3.2rem;
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  margin: 0;
  line-height: 1.08;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
}

.hero {
  display: grid;
  gap: 1rem;
}

.hero-media {
  border: 1px solid var(--line);
}

.hero-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.hero-copy {
  background: #fffdf9;
  border: 1px solid var(--line);
  padding: 1.15rem;
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 8vw, 3.5rem);
  margin-bottom: 0.9rem;
  max-width: 17ch;
}

.lede {
  max-width: 60ch;
  margin: 0 0 1rem;
  color: #2d2823;
}

.btn,
button {
  display: inline-block;
  border: 0;
  background: #1d1a16;
  color: #f6f2e9;
  padding: 0.6rem 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.btn.alt {
  background: var(--accent);
}

.section {
  margin-top: 1.6rem;
  background: #fffdf9;
  border: 1px solid var(--line);
  padding: 1.1rem;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  margin-bottom: 0.45rem;
}

.section-intro {
  margin-top: 0;
  color: var(--ink-soft);
}

.grid {
  display: grid;
  gap: 0.9rem;
}

.card {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 0.95rem;
}

.card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.card p {
  margin: 0;
}

.media-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 0.7rem;
}

.cta-band {
  margin-top: 1.6rem;
  background: #1e1a16;
  color: #f1e8da;
  border: 1px solid #120f0d;
  padding: 1rem;
}

.cta-band h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 0.5rem;
}

.content-grid {
  display: grid;
  gap: 1rem;
}

.content-grid .panel {
  background: #fffdf9;
  border: 1px solid var(--line);
  padding: 1rem;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: #fffdf9;
}

th,
td {
  border: 1px solid var(--line);
  padding: 0.65rem;
  text-align: left;
  vertical-align: top;
}

th {
  background: #f0e8da;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
}

.form-shell {
  background: #fffdf9;
  border: 1px solid var(--line);
  padding: 1rem;
}

form {
  display: grid;
  gap: 0.75rem;
}

label {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

input,
textarea,
select {
  width: 100%;
  margin-top: 0.35rem;
  border: 1px solid #bfb4a3;
  background: #fff;
  padding: 0.6rem;
  font: inherit;
}

.faq details {
  margin-bottom: 0.65rem;
  border: 1px solid var(--line);
  background: #fffdf9;
  padding: 0.65rem;
}

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

.site-footer {
  background: #161311;
  color: #eee4d6;
  border-top: 1px solid #100d0b;
  padding: 1.6rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.92rem;
}

@media (min-width: 820px) {
  .nav-toggle {
    display: none;
  }

  .main-nav {
    display: block;
    position: static;
  }

  .main-nav ul {
    flex-direction: row;
    padding: 0;
    gap: 0.35rem;
    align-items: center;
  }

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

  .hero-media img {
    height: 100%;
    min-height: 430px;
  }

  .grid.cols-2 {
    grid-template-columns: 1fr 1fr;
  }

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

  .content-grid.two {
    grid-template-columns: 1fr 340px;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
