:root {
  --green: #24392a;
  --green-2: #536445;
  --charcoal: #171712;
  --paper: #f6f0e4;
  --white: #fffdf7;
  --sand: #c3a061;
  --rust: #8a4e2c;
  --line: rgba(36, 57, 42, .18);
  --shadow: 0 18px 55px rgba(16, 18, 14, .22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--charcoal);
  background: var(--paper);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img, video { display: block; max-width: 100%; }

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(16px, 4vw, 54px);
  color: var(--white);
  background: rgba(17, 18, 15, .86);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  font-size: 13px;
}
.article-brand-logo { width: 190px; height: 54px; object-fit: contain; object-position: left center; }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 22px);
  font-size: 14px;
  font-weight: 800;
}

.nav a:hover,
.nav a.active { color: var(--sand); }

.menu-button {
  display: none;
  width: 42px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.44);
  background: rgba(0,0,0,.18);
  color: white;
  font-size: 23px;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #111;
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.44) 50%, rgba(0,0,0,.18)),
    linear-gradient(0deg, rgba(0,0,0,.78), rgba(0,0,0,0) 44%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 74px;
}

.page-hero {
  padding: 138px clamp(18px, 4vw, 54px) 62px;
  color: white;
  background: linear-gradient(90deg, rgba(20,28,21,.96), rgba(67,79,54,.84));
}

.page-hero .wrap { width: min(980px, 100%); margin: 0 auto; }

.eyebrow {
  margin-bottom: 11px;
  color: var(--sand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1, h2, h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; line-height: 1.08; letter-spacing: 0; }
h1 { max-width: 880px; font-size: clamp(44px, 8vw, 92px); }
h2 { font-size: clamp(30px, 5vw, 54px); }
h3 { margin-bottom: 9px; font-size: 23px; }
p { margin: 0 0 14px; }
.hero p, .page-hero p {
  max-width: 760px;
  margin: 20px 0 28px;
  font-size: clamp(18px, 2.2vw, 23px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 4px;
  padding: 13px 18px;
  background: var(--sand);
  color: #18140c;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,.16);
}

.button:hover { filter: brightness(1.05); transform: translateY(-1px); }
.button.secondary {
  background: rgba(255,255,255,.1);
  color: white;
  border: 1px solid rgba(255,255,255,.44);
}

.button.outline {
  background: transparent;
  color: var(--green);
  border: 1px solid var(--green);
  box-shadow: none;
}

.section { padding: clamp(58px, 8vw, 96px) clamp(18px, 4vw, 54px); }
.section.light { background: var(--white); }
.section.dark { background: var(--green); color: white; }
.wrap { width: min(1180px, 100%); margin: 0 auto; }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: 34px;
  align-items: end;
  margin-bottom: 32px;
}

.lead { color: rgba(23,23,18,.75); font-size: 18px; }
.dark .lead { color: rgba(255,255,255,.78); }

.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(32,30,24,.06);
}

.card-link {
  display: block;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.card-link:hover {
  transform: translateY(-3px);
  border-color: rgba(195,160,97,.72);
  box-shadow: 0 16px 34px rgba(32,30,24,.12);
}

.dark .card {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
  box-shadow: none;
}

.price { font-size: 34px; line-height: 1; font-weight: 900; margin: 14px 0; }
.tag { display: inline-block; margin-bottom: 12px; padding: 5px 9px; background: #efe3cc; border-radius: 4px; font-size: 12px; font-weight: 900; color: var(--green); text-transform: uppercase; }

.species-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.species {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(36,57,42,.16);
  border-radius: 6px;
  background: #efe6d5;
  font-weight: 900;
}
.species small { color: rgba(23,23,18,.66); font-weight: 800; white-space: nowrap; }

.species-feature {
  overflow: hidden;
  padding: 0;
  background: rgba(255,255,255,.06);
}

.species-placeholder {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(195,160,97,.32), rgba(36,57,42,.22)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.08) 0 10px, rgba(255,255,255,.02) 10px 20px);
  color: rgba(255,255,255,.78);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.species-feature-body {
  padding: 18px;
}

.article-body {
  display: grid;
  gap: 18px;
  max-width: 920px;
  font-size: 1.06rem;
  line-height: 1.72;
}

.article-body h2 {
  margin-top: 18px;
  font-size: clamp(26px, 4vw, 38px);
}

.package-list { display: grid; gap: 16px; }
details.card { padding: 0; overflow: hidden; }
summary {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  cursor: pointer;
}
summary::-webkit-details-marker { display: none; }
.summary-title { display: grid; gap: 6px; }
.details-body { padding: 0 24px 24px; border-top: 1px solid var(--line); }
.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }

.quote-layout { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr); gap: 22px; align-items: start; }
.panel {
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.summary-panel { position: sticky; top: 86px; }

.fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
label { display: grid; gap: 7px; font-size: 14px; font-weight: 900; }
input, select, textarea {
  width: 100%;
  min-height: 44px;
  padding: 12px;
  border: 1px solid rgba(23,23,18,.2);
  border-radius: 4px;
  background: #fffdf7;
  color: var(--charcoal);
}
textarea { min-height: 104px; resize: vertical; }
.wide { grid-column: 1 / -1; }

.checks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; margin-top: 14px; }
.check {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  padding: 10px;
  border: 1px solid rgba(23,23,18,.14);
  border-radius: 5px;
  background: #faf6eb;
  cursor: pointer;
}
.check input { width: 18px; min-height: 18px; accent-color: var(--green); }

.summary-lines {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.summary-lines div { display: flex; justify-content: space-between; gap: 14px; }
.summary-lines strong { text-align: right; }
.notice { margin: 12px 0 0; color: rgba(23,23,18,.66); font-size: 13px; }

.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.post-meta { color: rgba(23,23,18,.62); font-size: 13px; font-weight: 800; text-transform: uppercase; }
.article-author-box {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto clamp(42px, 6vw, 68px);
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.article-author-box p { margin: 9px 0 0; font-size: 1.02rem; line-height: 1.7; }
.article-author-box a { color: var(--green); text-decoration: underline; text-decoration-color: rgba(195,160,97,.7); text-underline-offset: 3px; }
.related-guides { padding: clamp(52px, 7vw, 82px) clamp(18px, 4vw, 54px); background: #efe6d5; }
.related-guides h2 { margin: 8px 0 26px; color: var(--green); }
.related-links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-bottom: 24px; }
.related-links a { display: grid; gap: 8px; min-height: 150px; padding: 20px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); box-shadow: 0 8px 28px rgba(32,30,24,.06); transition: transform .18s ease, border-color .18s ease; }
.related-links a:hover { transform: translateY(-2px); border-color: rgba(195,160,97,.72); }
.related-links strong { color: var(--green); font-family: Georgia, "Times New Roman", serif; font-size: 21px; line-height: 1.15; }
.related-links span { color: rgba(23,23,18,.68); font-size: 14px; }

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

.popup {
  position: fixed;
  inset: auto 18px 18px auto;
  z-index: 60;
  width: min(410px, calc(100vw - 36px));
  padding: 20px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background: #151611;
  color: white;
  box-shadow: var(--shadow);
}
.popup.hidden { display: none; }
.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 4px;
  background: transparent;
  color: white;
  cursor: pointer;
}
.popup form { display: grid; gap: 10px; margin-top: 12px; }

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  max-width: 360px;
  display: none;
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--green);
  color: white;
  box-shadow: var(--shadow);
}

.footer { padding: 34px clamp(18px, 4vw, 54px); background: #11120f; color: rgba(255,255,255,.72); }
.footer .wrap { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

@media (max-width: 920px) {
  .menu-button { display: grid; place-items: center; }
  .nav {
    position: absolute;
    top: 64px;
    right: 18px;
    width: min(310px, calc(100vw - 36px));
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: rgba(17,18,15,.98);
    border: 1px solid rgba(255,255,255,.15);
  }
  .nav.open { display: flex; }
  .nav a { padding: 10px; }
  .section-head, .quote-layout { grid-template-columns: 1fr; }
  .summary-panel { position: static; }
  .grid, .blog-grid, .species-grid, .related-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .topbar { padding: 12px 14px; }
  .brand span:last-child { font-size: 12px; }
  .hero { min-height: 86vh; }
  .hero-content { width: calc(100% - 28px); padding-bottom: 46px; }
  .article-brand-logo { width: 158px; height: 46px; }
  .grid, .grid.two, .blog-grid, .species-grid, .fields, .checks, .split, .contact-form, .related-links { grid-template-columns: 1fr; }
  .button { width: 100%; }
  .popup { inset: auto 12px 12px; width: auto; }
}

.article-body{max-width:860px}.article-body h2{margin-top:2.2rem}.article-image{margin:2rem 0}.article-image img{display:block;width:100%;height:auto;border-radius:16px}.article-image figcaption{font-size:.85rem;color:#666;margin-top:.5rem}.article-meta{margin-top:1rem;font-size:.92rem;opacity:.85}.article-toc,.related-reading,.author-box,.article-cta{margin:2rem 0;padding:1.4rem;border:1px solid rgba(90,70,40,.18);border-radius:14px;background:#fff}.article-toc strong{display:block;margin-bottom:.35rem}.article-cta{background:#f3eee3}.article-body ul{padding-left:1.4rem}.article-body li{margin:.45rem 0}@media(max-width:700px){.article-body{max-width:100%}.article-image{margin:1.35rem -4px}.article-toc,.related-reading,.author-box,.article-cta{padding:1rem}.article-meta{font-size:.84rem}}
