:root {
  --ink: #22201d;
  --muted: #6f6961;
  --soft: #f7f1e8;
  --paper: #fffaf3;
  --line: #e5d8c6;
  --sage: #68775c;
  --gold: #a7783e;
  --cream: #fbf7ef;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(67, 48, 27, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(251, 247, 239, 0.88);
  border-bottom: 1px solid rgba(229, 216, 198, 0.65);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--gold);
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 34px);
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--ink);
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 132px) clamp(20px, 5vw, 72px) clamp(38px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 20, 17, 0.72), rgba(24, 20, 17, 0.42) 42%, rgba(24, 20, 17, 0.06)),
    linear-gradient(0deg, rgba(24, 20, 17, 0.4), transparent 42%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  max-width: 760px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f3d6a4;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 500;
  line-height: 0.96;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 500;
  line-height: 1.04;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 760;
}

.button.primary {
  background: var(--paper);
  color: var(--ink);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.section {
  padding: clamp(68px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.page-hero {
  padding: clamp(86px, 12vw, 150px) clamp(20px, 5vw, 72px) clamp(52px, 7vw, 88px);
  background: #263027;
  color: var(--white);
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 22px;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 2vw, 23px);
}

.intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: start;
}

.intro-grid p,
.section-heading p,
.about-copy p,
.compliance p {
  color: var(--muted);
  font-size: 18px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.55fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  margin-bottom: 36px;
}

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

.collection-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 34px rgba(67, 48, 27, 0.06);
}

.collection-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.product-list {
  display: grid;
  gap: 16px;
}

.product-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(280px, 0.85fr);
  gap: clamp(24px, 5vw, 80px);
  padding: clamp(24px, 4vw, 42px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-row h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 48px);
}

.product-row p {
  align-self: end;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.product-boundary {
  margin-top: 0;
}

.card-number {
  margin-bottom: auto;
  color: var(--gold);
  font-weight: 800;
}

.quality-band {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 6vw, 90px);
  margin: 0 clamp(20px, 5vw, 72px);
  padding: clamp(42px, 6vw, 76px);
  background: #263027;
  color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quality-band .section-kicker {
  color: #dcb46f;
}

.quality-list {
  display: grid;
  gap: 18px;
}

.quality-list div {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.quality-list strong,
.quality-list span {
  display: block;
}

.quality-list strong {
  margin-bottom: 6px;
  font-size: 18px;
}

.quality-list span {
  color: rgba(255, 255, 255, 0.72);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.45fr);
  gap: clamp(28px, 6vw, 84px);
}

.facts {
  align-self: start;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.facts dl {
  margin: 0;
}

.facts div {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.facts div:last-child {
  border-bottom: 0;
}

.facts dt {
  color: var(--muted);
}

.facts dd {
  margin: 0;
  font-weight: 750;
}

.compliance {
  margin: 0 clamp(20px, 5vw, 72px);
  padding: clamp(30px, 4.5vw, 52px);
  background: #efe3d0;
  border: 1px solid #dcc8aa;
  border-radius: 8px;
}

.compliance h2 {
  font-size: clamp(28px, 3.6vw, 44px);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.5fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
}

.contact-panel {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-panel a {
  color: var(--sage);
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-panel span {
  color: var(--muted);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .intro-grid,
  .section-heading,
  .quality-band,
  .about,
  .contact,
  .product-row {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .site-header {
    padding: 14px 18px;
  }

  .hero {
    min-height: 720px;
    padding: 84px 20px 36px;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-media::after {
    background:
      linear-gradient(0deg, rgba(24, 20, 17, 0.76), rgba(24, 20, 17, 0.2) 58%, rgba(24, 20, 17, 0.18)),
      linear-gradient(90deg, rgba(24, 20, 17, 0.26), rgba(24, 20, 17, 0.04));
  }

  h1 {
    font-size: 46px;
  }

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

  .collection-card {
    min-height: 220px;
  }

  .quality-band,
  .compliance {
    margin-inline: 16px;
    padding: 26px;
  }

  .facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}


/* Product catalog */
.catalog-hero {
  background: radial-gradient(circle at 82% 24%, rgba(197, 162, 105, 0.2), transparent 30%), #263027;
}

.catalog-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.catalog-hero-meta span {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 13px;
}

.catalog-nav {
  position: sticky;
  top: 71px;
  z-index: 9;
  display: flex;
  gap: 8px;
  padding: 12px clamp(20px, 5vw, 72px);
  overflow-x: auto;
  background: rgba(251, 247, 239, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.catalog-nav a {
  flex: 0 0 auto;
  padding: 9px 14px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.catalog-nav a:hover { color: var(--ink); background: var(--paper); }
.catalog-section { scroll-margin-top: 135px; }
.catalog-section-alt { background: #eee7da; }

.catalog-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.55fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  margin-bottom: 36px;
}

.catalog-section-heading > p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 18px;
}

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

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

.product-card {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 14px 40px rgba(67, 48, 27, 0.06);
}

.product-card-dark {
  min-height: 520px;
  color: var(--white);
  background: #2d342c;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.product-card-feature {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(300px, 0.8fr);
  gap: clamp(32px, 8vw, 120px);
}

.product-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 72px;
}

.status-badge {
  padding: 7px 10px;
  color: var(--sage);
  background: #edf0e8;
  border: 1px solid #dbe1d4;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-card-dark .status-badge {
  color: #f1d9ae;
  background: rgba(241, 217, 174, 0.09);
  border-color: rgba(241, 217, 174, 0.22);
}

.product-card h3 {
  max-width: 330px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 500;
}

.product-summary { margin-bottom: 32px; color: var(--muted); font-size: 17px; }
.product-card-dark .product-summary { color: rgba(255, 255, 255, 0.7); }

.product-detail {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.product-detail + .product-detail { margin-top: 24px; }
.product-card-dark .product-detail { border-color: rgba(255, 255, 255, 0.14); }
.product-detail h4 { margin: 0 0 10px; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; }
.product-detail p, .product-detail ul { margin: 0; color: var(--muted); }
.product-card-dark .product-detail p, .product-card-dark .product-detail ul { color: rgba(255, 255, 255, 0.68); }
.product-detail ul { padding-left: 20px; }
.product-detail li + li { margin-top: 6px; }
.feature-details { display: grid; align-content: end; gap: 24px; }
.catalog-standards { scroll-margin-top: 135px; }
.catalog-standards > div > p:last-child { color: rgba(255, 255, 255, 0.7); font-size: 17px; }

.standards-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.standards-list li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.standards-list li > span { color: #dcb46f; font-weight: 800; }
.standards-list p { margin: 4px 0 0; color: rgba(255, 255, 255, 0.7); }

.status-guide {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 110px);
}

.status-grid { display: grid; gap: 12px; }
.status-grid div { padding: 20px; background: var(--paper); border: 1px solid var(--line); border-radius: 8px; }
.status-grid p, .contact-copy { margin: 6px 0 0; color: var(--muted); }

@media (max-width: 920px) {
  .catalog-section-heading, .status-guide, .product-card-feature { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: 1fr; }
  .product-card { min-height: auto; }
  .product-card-topline { margin-bottom: 42px; }
}

@media (max-width: 620px) {
  .catalog-nav { top: 63px; padding-inline: 16px; }
  .catalog-hero-meta span { font-size: 12px; }
  .status-badge { max-width: 180px; text-align: center; }
}
