:root {
  --navy: #06111b;
  --navy-soft: #091825;
  --gold: #caa04f;
  --gold-bright: #ddb567;
  --sand: #f5f1e8;
  --line: #e7dcc6;
  --text: #111111;
  --muted: #666666;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(6, 17, 27, 0.08);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: #040f0b;
}

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

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

input,
textarea,
button {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 880px;
  background:
    linear-gradient(90deg, rgba(3, 10, 18, 0.95) 0%, rgba(3, 10, 18, 0.88) 30%, rgba(3, 10, 18, 0.52) 56%, rgba(3, 10, 18, 0.24) 100%),
    url("assets/hero-banner.png") center center / cover no-repeat;
  color: var(--white);
  overflow: hidden;
}

.subhero {
  position: relative;
  min-height: 420px;
  background:
    radial-gradient(circle at 85% 15%, rgba(221, 181, 103, 0.16), transparent 18%),
    linear-gradient(135deg, #04111c 0%, #0a2030 55%, #0d1825 100%);
  color: var(--white);
  overflow: hidden;
}

.page-topbar {
  background: linear-gradient(135deg, #062d1b 0%, #0c4d2d 55%, #072a1a 100%);
  color: var(--white);
  border-bottom: 4px solid #d8b25a;
  box-shadow: 0 2px 0 rgba(216, 178, 90, 0.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 36%, rgba(218, 172, 95, 0.22), transparent 22%),
    linear-gradient(180deg, rgba(4, 11, 18, 0.1), rgba(4, 11, 18, 0.55));
}

.hero-shell {
  position: relative;
  z-index: 1;
  width: min(1480px, calc(100% - 12px));
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(300px, 24vw, 420px);
  flex: 0 0 auto;
  color: var(--white);
  margin-right: 18px;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.24));
}

.nav-toggle,
.nav-burger {
  display: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-left: auto;
  padding-left: 16px;
}

.nav-menu a {
  position: relative;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 2px;
  background: var(--gold);
}

.hero-content {
  display: flex;
  align-items: center;
  min-height: 720px;
  padding: 56px 0 90px;
}

.subhero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 54px 0 88px;
}

.page-lead {
  max-width: 720px;
  margin-bottom: 0;
}

.hero-copy {
  max-width: 760px;
}

.subhero-content h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.25rem);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.25rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.hero-copy .eyebrow,
.hero-copy .experience,
.hero-copy .hero-text,
.hero-copy .hero-actions {
  max-width: 640px;
}

.hero-line {
  display: block;
}

.hero-line-accent,
.experience strong {
  color: var(--gold-bright);
}

.experience {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 24px 0 18px;
  font-size: clamp(1rem, 2vw, 1.3rem);
  text-transform: uppercase;
  font-weight: 700;
}

.dash {
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.hero-text {
  max-width: 520px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.8;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 28px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(90deg, #bf9341, #ddb567);
  color: var(--white);
}

.btn-dark {
  background: rgba(6, 17, 27, 0.72);
  border-color: rgba(202, 160, 79, 0.45);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border-color: rgba(202, 160, 79, 0.7);
  color: var(--white);
}

.btn.wide {
  min-width: 190px;
}

.footer-brand-mark {
  width: clamp(160px, 14vw, 220px);
}

.section {
  padding: 68px 0;
}

.section-light {
  background: var(--white);
}

.section-soft {
  background: #faf8f4;
}

.section-dark {
  background: linear-gradient(180deg, #07131e, #05101a);
  color: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 34px;
}

.section-subtitle {
  margin: -10px auto 24px;
  max-width: 720px;
  text-align: center;
  color: var(--muted);
  line-height: 1.7;
}

.section-title.left {
  text-align: left;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.3vw, 2.25rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.section-title span {
  display: inline-block;
  width: 90px;
  height: 14px;
  margin-top: 8px;
  position: relative;
}

.section-title span::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: rgba(202, 160, 79, 0.8);
}

.section-title span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: translate(-50%, -50%) rotate(45deg);
}

.inverse h2 {
  color: var(--white);
}

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

.product-card,
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.product-card {
  min-height: 170px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  box-shadow: 0 6px 18px rgba(9, 24, 37, 0.03);
}

.product-card i {
  color: var(--gold);
  font-size: 2.3rem;
}

.product-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
  text-transform: uppercase;
}

.home-details-section {
  padding-top: 88px;
  padding-bottom: 88px;
}

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

.detail-box {
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #fffefb, #f8f3ea);
  text-align: center;
  box-shadow: 0 10px 30px rgba(9, 24, 37, 0.05);
}

.detail-box i {
  color: var(--gold);
  font-size: 2rem;
}

.detail-box h3 {
  margin: 16px 0 10px;
  font-size: 1rem;
  text-transform: uppercase;
}

.detail-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.division-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.division-card {
  padding: 26px 20px;
  background: linear-gradient(180deg, #062618, #08311f);
  border-radius: 18px;
  color: var(--white);
  text-align: center;
  box-shadow: 0 20px 40px rgba(3, 20, 13, 0.12);
}

.division-card i {
  color: var(--gold-bright);
  font-size: 2.1rem;
}

.division-card h3 {
  margin: 16px 0 10px;
  font-size: 1rem;
  text-transform: uppercase;
}

.division-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 0.95rem;
}

.category-link-card {
  position: relative;
  min-height: 245px;
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, #fffefb, #f8f3ea);
  box-shadow: 0 10px 30px rgba(9, 24, 37, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.category-link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(9, 24, 37, 0.1);
  border-color: rgba(202, 160, 79, 0.55);
}

.category-page-shell {
  padding-top: 44px;
}

.category-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 20%, rgba(221, 181, 103, 0.18), transparent 18%),
    linear-gradient(180deg, #fffefb, #f7f2e8);
  box-shadow: var(--shadow);
}

.category-eyebrow {
  margin: 0 0 12px;
  color: #0a3d25;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-hero-card h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.category-description {
  margin: 0;
  max-width: 640px;
  color: #424242;
  line-height: 1.85;
}

.category-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.category-tag-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #0a3d25;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.category-hero-visual {
  display: flex;
  justify-content: center;
}

.category-hero-icon-wrap {
  width: min(100%, 280px);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 30%, rgba(221, 181, 103, 0.45), rgba(10, 61, 37, 0.95));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.category-hero-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.category-hero-icon-wrap.with-image {
  background: linear-gradient(180deg, #f6f1e7, #ebe1cd);
  overflow: hidden;
}

.category-hero-icon-wrap.with-image img {
  display: block;
}

.category-hero-icon-wrap i {
  color: var(--white);
  font-size: clamp(4rem, 8vw, 7rem);
}

.category-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 34px;
}

.category-highlight-card {
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fffdf8;
}

.category-highlight-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
  text-transform: uppercase;
}

.category-highlight-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.category-items-shell {
  padding-top: 6px;
}

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

.catalog-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, #fffefb, #f8f3ea);
  box-shadow: 0 12px 30px rgba(9, 24, 37, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.catalog-card.static {
  height: 100%;
}

.catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(9, 24, 37, 0.1);
}

.catalog-card.compact {
  padding: 24px 22px;
}

.catalog-image {
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, #f6f1e7, #ebe1cd);
}

.catalog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 35%, rgba(221, 181, 103, 0.42), rgba(10, 61, 37, 0.94));
}

.catalog-fallback i {
  color: var(--white);
  font-size: 4rem;
}

.catalog-copy {
  padding: 22px;
}

.catalog-meta {
  margin: 0 0 10px;
  color: #0a3d25;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.catalog-copy h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  text-transform: uppercase;
}

.catalog-copy p:last-of-type {
  margin-bottom: 0;
}

.catalog-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.75;
}

.catalog-detail-block {
  margin: 0 0 18px;
}

.catalog-detail-block strong {
  display: block;
  margin-bottom: 10px;
  color: #0a3d25;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.catalog-detail-block .catalog-chip-row,
.catalog-detail-block .catalog-mini-list {
  margin-top: 0;
}

.catalog-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.catalog-chip-row span {
  padding: 8px 12px;
  border-radius: 999px;
  background: #f2eadb;
  color: #0a3d25;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
}

.catalog-chip-row.compact span {
  background: #0a3d25;
  color: var(--gold-bright);
}

.catalog-mini-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.catalog-mini-list li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.card-number {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #0a3d25;
  color: var(--white);
  font-weight: 700;
}

.category-link-card i {
  display: block;
  margin: 30px 0 18px;
  color: #0a3d25;
  font-size: 2.6rem;
}

.category-link-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  line-height: 1.4;
  text-transform: uppercase;
}

.category-link-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.card-cta {
  color: #0a3d25;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.centered-action {
  margin-top: 18px;
  text-align: center;
}

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

/* Homepage centered hero (no header) */
.main-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f4ecd7;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay-dark {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 8, 6, 0.95) 0%, rgba(2, 8, 6, 0.88) 45%, rgba(1, 6, 4, 0.97) 100%);
  z-index: 1;
}

.main-hero-shell {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 64px 24px;
}

.main-hero-center {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px 20px;
}

.brand-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.brand-hero img {
  width: min(700px, 78%);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.3));
}

.hero-tagline {
  color: #f3e5bc;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.45;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.hero-cta {
  padding: 16px 44px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, rgba(201, 168, 81, 0.95), rgba(240, 211, 135, 0.95));
  color: #08120b;
  font-weight: 700;
  box-shadow: 0 18px 34px rgba(199, 151, 57, 0.28);
}

.hero-cta:hover {
  transform: translateY(-1px);
  background: linear-gradient(90deg, #d5b35f, #f4d98f);
}

@media (max-width: 720px) {
  .brand-hero img { width: 92%; }
  .hero-tagline { font-size: 1rem; letter-spacing: 0.18em; }
}

.feature-card {
  padding: 26px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.feature-card i {
  color: var(--gold);
  font-size: 2.4rem;
  flex: 0 0 auto;
}

.feature-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.body-copy {
  margin: 0 0 18px;
  color: #313131;
  line-height: 1.85;
}

.page-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.page-flow a {
  color: #0a3d25;
  font-weight: 600;
}

.two-col-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 30px;
  align-items: start;
}

.info-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fffdf8, #f7f2e8);
  box-shadow: var(--shadow);
}

.category-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 38px;
}

.category-summary-card {
  display: flex;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fffdf8;
}

.category-summary-card i {
  color: var(--gold);
  font-size: 1.6rem;
  margin-top: 4px;
}

.category-summary-card strong {
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.category-summary-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.variety-card {
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, #fffefb, #f8f3ea);
  box-shadow: 0 10px 30px rgba(9, 24, 37, 0.04);
}

.variety-card.featured {
  background: linear-gradient(180deg, #093621, #0b4429);
  color: var(--white);
  border-color: rgba(202, 160, 79, 0.35);
}

.variety-badge {
  display: inline-block;
  padding: 7px 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(221, 181, 103, 0.18);
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.variety-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.variety-card p {
  margin: 0 0 14px;
  color: inherit;
  line-height: 1.7;
}

.variety-card:not(.featured) p {
  color: var(--muted);
}

.variety-card ul {
  margin: 0 0 16px;
  padding-left: 18px;
  line-height: 1.8;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  margin-bottom: 34px;
}

.product-hero-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, #fffefb, #f7f2e8);
  box-shadow: var(--shadow);
}

.product-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #fffefb, #f7f2e8);
  border: 1px solid rgba(202, 160, 79, 0.15);
}

.product-visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: none;
}

.product-visual img.loaded {
  display: block;
}

.product-visual-fallback {
  width: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 40%, rgba(221, 181, 103, 0.35), rgba(9, 54, 33, 0.95));
}

.product-visual-fallback i {
  color: var(--white);
  font-size: 5rem;
}

.detail-kicker {
  margin: 0 0 8px;
  color: #0a3d25;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.product-detail-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
}

.product-detail-copy p {
  margin: 0;
  color: #353535;
  line-height: 1.85;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tag-row span {
  padding: 9px 14px;
  border-radius: 999px;
  background: #0a3d25;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

.form-option {
  padding: 22px 18px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fffdf8;
}

.form-photo {
  width: 100%;
  height: 170px;
  margin: 0 auto 18px;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(180deg, #f6f1e7, #ebe1cd);
}

.form-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-icon {
  width: 92px;
  height: 92px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #0a3d25, #0f5a36);
}

.form-icon i {
  color: var(--gold-bright);
  font-size: 2rem;
}

.form-option h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  text-transform: uppercase;
}

.pack-section {
  margin-top: 34px;
  border-radius: 20px;
}

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

.pack-card {
  padding: 20px 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, #0a3d25, #0e5e39);
  color: var(--gold-bright);
  text-align: center;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.bagasse-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 34px;
}

.bagasse-feature-pill {
  padding: 18px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, #fffefb, #f7f2e8);
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  color: #0a3d25;
  line-height: 1.5;
}

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

.bagasse-spec-card {
  padding: 16px 16px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fffdf8;
  text-align: center;
}

.bagasse-spec-photo {
  width: 100%;
  height: 220px;
  margin: 0 0 16px;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(180deg, #f6f1e7, #ebe1cd);
}

.bagasse-spec-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bagasse-spec-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 35%, rgba(221, 181, 103, 0.42), rgba(10, 61, 37, 0.94));
}

.bagasse-spec-fallback i {
  color: var(--white);
  font-size: 3.2rem;
}

.bagasse-spec-card h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  line-height: 1.45;
  text-transform: uppercase;
}

.bagasse-spec-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.bagasse-use-card {
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #08311f, #0a3d25);
  color: var(--white);
  text-align: center;
}

.bagasse-use-card i {
  color: var(--gold-bright);
  font-size: 2rem;
}

.bagasse-use-card h3 {
  margin: 14px 0 0;
  font-size: 1rem;
  line-height: 1.45;
  text-transform: uppercase;
}

.mini-stat + .mini-stat {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(202, 160, 79, 0.22);
}

.mini-stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.15rem;
  text-transform: uppercase;
}

.mini-stat span {
  color: var(--muted);
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  padding: 18px 12px 12px;
  text-align: center;
}

.service-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20px;
  right: -9px;
  width: 1px;
  height: 70px;
  background: rgba(202, 160, 79, 0.28);
}

.service-card i {
  color: var(--gold);
  font-size: 2.5rem;
}

.service-card h3 {
  margin: 16px 0 0;
  font-size: 1rem;
  line-height: 1.45;
  text-transform: uppercase;
}

.enquiry-section {
  padding-bottom: 56px;
}

.enquiry-panel {
  max-width: 860px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: 30px;
  align-items: start;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail + .contact-detail {
  margin-top: 22px;
}

.contact-detail i {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 4px;
}

.contact-detail strong {
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.contact-detail p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.enquiry-form input,
.enquiry-form textarea,
.newsletter-form input {
  width: 100%;
  padding: 14px 14px;
  border: 1px solid #e3ddd1;
  background: #fffdf9;
  color: var(--text);
}

.enquiry-form textarea {
  resize: vertical;
  min-height: 140px;
}

.footer {
  background: linear-gradient(180deg, #07131e, #050f18);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 0.9fr 1fr 1.1fr;
  gap: 28px;
  padding: 52px 0 26px;
}

.footer h3 {
  margin: 0 0 18px;
  font-size: 1rem;
  color: var(--gold-bright);
  text-transform: uppercase;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer li,
.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.footer-brand-mark {
  margin-bottom: 22px;
  width: clamp(180px, 16vw, 250px);
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(202, 160, 79, 0.5);
  border-radius: 50%;
  color: var(--gold-bright);
}

.contact-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.contact-list i {
  color: var(--gold);
  margin-top: 6px;
}

.newsletter-text {
  margin: 0 0 18px;
}

.newsletter-form {
  display: flex;
  align-items: stretch;
}

.newsletter-form input {
  background: transparent;
  color: var(--white);
  border-right: none;
}

.newsletter-form button {
  width: 58px;
  border: 1px solid rgba(202, 160, 79, 0.5);
  background: linear-gradient(90deg, #bf9341, #ddb567);
  color: var(--white);
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 14px 0 20px;
}

.footer-bottom-row p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 20px;
}

@media (max-width: 1160px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .service-card:nth-child(3)::after {
    display: none;
  }

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

  .division-strip,
  .category-summary,
  .form-options-grid,
  .pack-grid,
  .bagasse-feature-grid,
  .bagasse-spec-grid,
  .bagasse-use-grid,
  .home-details-grid,
  .category-highlights-grid,
  .category-items-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 920px) {
  .nav-burger {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    margin-left: auto;
  }

  .nav-burger span {
    width: 26px;
    height: 2px;
    background: var(--white);
  }

  .nav-menu {
    position: absolute;
    top: 88px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    background: rgba(6, 17, 27, 0.96);
    border: 1px solid rgba(202, 160, 79, 0.25);
    border-radius: 12px;
  }

  .nav-toggle:checked ~ .nav-menu {
    display: flex;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    min-height: auto;
    padding: 56px 0 74px;
  }

  .subhero {
    min-height: auto;
  }

  .subhero-content {
    padding: 40px 0 70px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .two-col-grid,
  .contact-grid,
  .product-detail-grid,
  .product-hero-panel,
  .category-summary,
  .category-hero-card {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .product-grid,
  .service-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .division-strip,
  .variety-grid,
  .form-options-grid,
  .pack-grid,
  .bagasse-feature-grid,
  .bagasse-spec-grid,
  .bagasse-use-grid,
  .home-details-grid,
  .category-highlights-grid,
  .category-items-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .navbar {
    align-items: flex-start;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .subhero-content h1 {
    font-size: 2.3rem;
  }

  .experience {
    flex-wrap: wrap;
  }

  .hero-actions,
  .footer-bottom-row,
  .footer-links,
  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .product-grid,
  .feature-grid,
  .service-grid,
  .footer-grid,
  .division-strip,
  .variety-grid,
  .form-options-grid,
  .pack-grid,
  .bagasse-feature-grid,
  .bagasse-spec-grid,
  .bagasse-use-grid,
  .home-details-grid,
  .category-highlights-grid,
  .category-items-grid {
    grid-template-columns: 1fr;
  }

  .service-card::after,
  .service-card:not(:last-child)::after {
    display: none;
  }
}
