:root {
  --green-950: #052a16;
  --green-900: #07391d;
  --green-800: #0b5128;
  --green-700: #126b36;
  --gold: #d79b18;
  --gold-light: #f1c85b;
  --cream: #fbf5e8;
  --paper: #fffaf0;
  --ink: #122016;
  --muted: #5e675c;
  --line: rgba(9, 58, 29, 0.14);
  --shadow: 0 22px 60px rgba(5, 42, 22, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 64px);
  color: #fff;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.is-scrolled {
  padding-block: 10px;
  background: rgba(5, 42, 22, 0.95);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--gold-light);
  border-radius: 50%;
  color: var(--green-950);
  background: #fff;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 800;
  box-shadow: 0 0 0 3px rgba(215, 155, 24, 0.18);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 20px;
  font-weight: 900;
}

.brand small {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("assets/images/hero-brochure.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 42, 22, 0.88), rgba(5, 42, 22, 0.5) 52%, rgba(5, 42, 22, 0.25)),
    linear-gradient(0deg, rgba(5, 42, 22, 0.8), rgba(5, 42, 22, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 100px);
  padding-top: 72px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(52px, 8vw, 104px);
  line-height: 0.95;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.38);
}

.seal {
  display: inline-block;
  margin: 18px 0 0;
  padding: 8px 18px;
  border: 1px solid rgba(241, 200, 91, 0.72);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(5, 42, 22, 0.55);
  font-weight: 900;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 560px;
  margin: 22px 0 0;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 800;
}

.hero-actions,
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 34px;
}

.btn,
.tab-button {
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  text-transform: uppercase;
}

.btn-primary {
  color: var(--green-950);
  background: var(--gold-light);
}

.btn-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gold);
}

.trust-strip div {
  padding: 24px clamp(18px, 4vw, 54px);
  color: #fff;
  background: var(--green-900);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-size: 18px;
  font-weight: 900;
}

.trust-strip span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.section {
  padding: clamp(72px, 9vw, 120px) clamp(18px, 5vw, 76px);
}

.section-grid,
.collection-grid,
.contact-panel {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-grid,
.collection-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  align-items: center;
  gap: clamp(34px, 5vw, 70px);
}

.section-copy h2,
.section-heading h2,
.contact-panel h2 {
  color: var(--green-950);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
}

.section-copy p,
.feature-panel p,
.product-list p,
.why-card p {
  color: var(--muted);
}

.badge-grid,
.why-grid {
  display: grid;
  gap: 14px;
}

.badge-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.mini-badge {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--green-900);
  background: #fff;
  font-weight: 900;
}

.image-card,
.collection-image {
  overflow: hidden;
  border: 1px solid rgba(215, 155, 24, 0.35);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  aspect-ratio: 0.72;
  object-fit: cover;
}

.values-section,
.products-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(215, 155, 24, 0.12), transparent 32%),
    var(--cream);
}

.section-heading {
  width: min(860px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.values-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.feature-panel,
.why-card,
.product-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.feature-panel {
  min-height: 100%;
  padding: clamp(22px, 3vw, 34px);
}

.feature-panel h3,
.product-list h3,
.why-card h3 {
  margin: 0 0 12px;
  color: var(--green-900);
  font-size: 24px;
  line-height: 1.12;
}

.feature-panel ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.feature-panel li + li {
  margin-top: 10px;
}

.value-list {
  display: grid;
  gap: 10px;
}

.value-list span {
  padding: 12px 14px;
  border-radius: 6px;
  color: #fff;
  background: var(--green-800);
  font-weight: 900;
}

.tabs {
  justify-content: center;
  margin: -18px auto 38px;
}

.tab-button {
  min-height: 44px;
  padding: 11px 18px;
  color: var(--green-900);
  background: #fff;
  border: 1px solid var(--line);
}

.tab-button.is-active {
  color: #fff;
  border-color: var(--green-900);
  background: var(--green-900);
}

.product-tab {
  display: none;
}

.product-tab.is-active {
  display: block;
}

.collection-grid {
  grid-template-columns: minmax(360px, 1fr) minmax(300px, 0.82fr);
}

.collection-image img {
  width: 100%;
  aspect-ratio: 0.72;
  object-fit: cover;
  object-position: top center;
}

.product-list h3 {
  font-size: clamp(28px, 4vw, 44px);
}

.muted {
  margin-top: 0;
}

.product-card {
  display: grid;
  gap: 3px;
  padding: 16px 18px;
  margin-top: 12px;
}

.product-card strong {
  color: var(--green-900);
  font-weight: 900;
}

.product-card span {
  color: var(--muted);
}

.why-section {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(5, 42, 22, 0.96), rgba(7, 57, 29, 0.98)),
    var(--green-950);
}

.why-section .section-heading h2,
.why-section .eyebrow {
  color: #fff;
}

.why-section .eyebrow {
  color: var(--gold-light);
}

.why-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1180px, 100%);
  margin: 0 auto;
}

.why-card {
  min-height: 210px;
  padding: 24px;
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(241, 200, 91, 0.24);
}

.why-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--green-950);
  background: var(--gold-light);
  font-weight: 900;
}

.why-card h3 {
  color: var(--gold-light);
  font-size: 20px;
}

.why-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-section {
  background: var(--paper);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.62fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(26px, 5vw, 56px);
  border-radius: 8px;
  color: #fff;
  background: var(--green-900);
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  color: #fff;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  font-size: 18px;
  font-weight: 800;
}

.contact-list a,
.contact-list span {
  padding: 14px 16px;
  border: 1px solid rgba(241, 200, 91, 0.28);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-panel img {
  width: 100%;
  max-height: 520px;
  border-radius: 8px;
  object-fit: cover;
  object-position: top center;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 76px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--green-950);
}

.site-footer p {
  margin: 0;
  color: #fff;
  font-weight: 900;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 15;
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: var(--green-950);
  background: var(--gold-light);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-size: 22px;
  font-weight: 900;
}

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

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

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border: 1px solid rgba(241, 200, 91, 0.22);
    border-radius: 8px;
    background: rgba(5, 42, 22, 0.98);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px;
  }

  .trust-strip,
  .values-layout,
  .why-grid,
  .section-grid,
  .collection-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .collection-image {
    order: 2;
  }
}

@media (max-width: 640px) {
  .brand strong {
    font-size: 17px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-inline: 16px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5, 42, 22, 0.82), rgba(5, 42, 22, 0.36) 48%, rgba(5, 42, 22, 0.88)),
      rgba(5, 42, 22, 0.18);
  }

  .hero-actions,
  .tabs {
    flex-direction: column;
  }

  .btn,
  .tab-button {
    width: 100%;
  }

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

  .why-grid {
    gap: 12px;
  }

  .site-footer {
    display: block;
  }
}
