:root {
  --ink: #17221d;
  --muted: #66716b;
  --paper: #f7f1e8;
  --ivory: #fffaf1;
  --emerald: #073f33;
  --emerald-2: #0c5a46;
  --brass: #b98943;
  --copper: #c4664d;
  --night: #061411;
  --line: rgba(23, 34, 29, 0.14);
  --glass: rgba(255, 250, 241, 0.78);
  --shadow: 0 22px 58px rgba(6, 20, 17, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(7, 63, 51, 0.08) 0%, transparent 26%),
    linear-gradient(160deg, #fbf5eb 0%, #f3eadc 44%, #f8efe4 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.72;
  overflow-x: hidden;
}

a {
  color: #075c49;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 250, 241, 0.9);
  border-bottom: 1px solid rgba(7, 63, 51, 0.16);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  color: var(--emerald);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.14rem;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 650;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #06362c;
  background: rgba(184, 137, 67, 0.18);
  border-color: rgba(184, 137, 67, 0.28);
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  padding: 58px 0 38px;
}

.hero::after {
  content: "";
  display: block;
  clear: both;
}

.hero-image {
  width: min(540px, 46vw);
  height: clamp(600px, 70vh, 700px);
  float: right;
  margin: 0 0 28px 34px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 250, 241, 0.78);
  background: var(--emerald);
}

.hero-image img,
.wide-figure img,
.media-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--emerald);
  line-height: 1.13;
  letter-spacing: 0;
}

h1 {
  max-width: 800px;
  margin: 0 0 18px;
  font-size: clamp(2.35rem, 5vw, 4.2rem);
  overflow-wrap: break-word;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(1.75rem, 3.1vw, 2.85rem);
}

h3 {
  margin: 26px 0 10px;
  font-size: 1.34rem;
}

p {
  margin: 0 0 17px;
}

.lead {
  max-width: 780px;
  color: #283931;
  font-size: clamp(1.06rem, 1.65vw, 1.24rem);
}

.meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid rgba(184, 137, 67, 0.34);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.78);
  color: #20362e;
  font-size: 0.9rem;
  font-weight: 650;
}

.section {
  padding: 48px 0;
}

.band {
  padding: 56px 0;
  background:
    linear-gradient(135deg, rgba(7, 63, 51, 0.09), rgba(184, 137, 67, 0.08)),
    rgba(255, 250, 241, 0.56);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dark-band {
  padding: 58px 0;
  color: #f8efe3;
  background:
    linear-gradient(135deg, rgba(7, 63, 51, 0.96), rgba(6, 20, 17, 0.97)),
    var(--emerald);
}

.dark-band h2,
.dark-band h3 {
  color: #fff5df;
}

.dark-band a {
  color: #f3c879;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 34px;
  align-items: start;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0 10px;
}

.media-grid figure,
.wide-figure {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 250, 241, 0.78);
  border: 1px solid rgba(255, 250, 241, 0.8);
  box-shadow: 0 14px 36px rgba(6, 20, 17, 0.12);
}

.media-grid img {
  height: 292px;
}

.wide-figure img {
  height: clamp(300px, 42vw, 480px);
}

figcaption {
  color: var(--muted);
  font-size: 0.9rem;
  padding: 12px 14px 14px;
}

.note,
.premium-box,
.source-box,
.review,
.callout {
  border: 1px solid rgba(184, 137, 67, 0.28);
  background: var(--glass);
  box-shadow: 0 12px 32px rgba(6, 20, 17, 0.08);
  border-radius: 10px;
  padding: 22px;
}

.premium-box {
  border-color: rgba(184, 137, 67, 0.48);
  background: linear-gradient(135deg, rgba(255, 250, 241, 0.92), rgba(230, 214, 185, 0.74));
}

.premium-box.dark {
  color: #f8efe3;
  background: linear-gradient(135deg, rgba(11, 76, 60, 0.96), rgba(15, 28, 23, 0.96));
}

.premium-box.dark h3 {
  color: #fff5df;
}

.check-list,
.plain-list {
  margin: 14px 0 0;
  padding-left: 1.25rem;
}

.check-list li,
.plain-list li {
  margin: 0 0 10px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(7, 63, 51, 0.16);
  border-radius: 10px;
  background: rgba(255, 250, 241, 0.72);
  box-shadow: 0 12px 30px rgba(6, 20, 17, 0.08);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 15px 16px;
  border-bottom: 1px solid rgba(23, 34, 29, 0.12);
  text-align: left;
  vertical-align: top;
}

th {
  color: #fff5df;
  background: var(--emerald);
  font-size: 0.95rem;
}

tr:last-child td {
  border-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid rgba(7, 63, 51, 0.16);
  border-radius: 10px;
  background: rgba(255, 250, 241, 0.78);
  padding: 16px 18px;
}

summary {
  cursor: pointer;
  color: var(--emerald);
  font-weight: 760;
}

details p {
  margin-top: 12px;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.review strong {
  display: block;
  color: var(--emerald);
  margin-bottom: 6px;
}

.review p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.source-box ul {
  margin: 0;
  padding-left: 1.2rem;
}

.site-footer {
  padding: 42px 0;
  color: #f8efe3;
  background: var(--night);
}

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

.site-footer h2,
.site-footer h3 {
  color: #fff5df;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.8fr) minmax(240px, 0.8fr);
  gap: 26px;
}

.contact {
  color: #f0d6a1;
  font-weight: 700;
  word-break: break-word;
}

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

  .nav-links {
    justify-content: flex-start;
  }

  .hero-image {
    float: none;
    width: 100%;
    height: min(650px, 72vh);
    margin: 0 0 28px;
  }

  .two-col,
  .media-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .wrap,
  .nav {
    width: calc(100% - 24px);
    max-width: 1120px;
  }

  .nav-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .nav-links a {
    padding: 7px 4px;
    font-size: 0.74rem;
    text-align: center;
    white-space: normal;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-image {
    height: 260px;
  }

  .lead,
  p,
  h1,
  h2,
  h3 {
    max-width: 100%;
  }

  h1 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1rem;
    line-height: 1.6;
  }

  .meta-strip {
    margin-top: 16px;
  }

  .pill {
    min-height: 28px;
    padding: 4px 10px;
    font-size: 0.78rem;
  }

  .section,
  .band,
  .dark-band {
    padding: 38px 0;
  }

  .media-grid img,
  .wide-figure img {
    height: 250px;
  }

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