:root {
  --bg: #f3f5f1;
  --paper: #ffffff;
  --ink: #111816;
  --muted: #65736c;
  --line: #d6ded8;
  --green: #1f6a4f;
  --green-dark: #102d24;
  --amber: #f0b83f;
  --amber-dark: #c9851d;
  --blue: #1f5d8f;
  --copper: #b45d37;
  --steel: #27353c;
  --shadow: 0 20px 60px rgba(17, 24, 22, .12);
  --shadow-strong: 0 30px 80px rgba(17, 24, 22, .22);
  --radius: 8px;
  --radius-soft: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(115deg, rgba(31, 106, 79, .08), transparent 34%),
    repeating-linear-gradient(90deg, rgba(39, 53, 60, .035) 0 1px, transparent 1px 56px),
    var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(135deg, transparent 0 58%, rgba(240, 184, 63, .08) 58% 66%, transparent 66%),
    linear-gradient(25deg, transparent 0 72%, rgba(31, 93, 143, .07) 72% 82%, transparent 82%);
  pointer-events: none;
}

.page-grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .38;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(31, 106, 79, .18), transparent 22%),
    radial-gradient(circle at 80% 10%, rgba(240, 184, 63, .16), transparent 18%),
    linear-gradient(90deg, rgba(17, 24, 22, .025) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 24, 22, .025) 1px, transparent 1px);
  background-size: auto, auto, 42px 42px, 42px 42px;
  pointer-events: none;
}

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

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(280px, auto) 1fr auto;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  padding: 10px clamp(18px, 4vw, 58px);
  background: rgba(249, 250, 247, .9);
  border-bottom: 1px solid rgba(214, 222, 216, .88);
  box-shadow: 0 12px 36px rgba(17, 24, 22, .07);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  color: var(--ink);
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 56px;
  height: 48px;
  place-items: center;
  overflow: hidden;
  flex: 0 0 auto;
  background:
    linear-gradient(135deg, #18382e, #0d2019),
    var(--green-dark);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(17, 24, 22, .16);
}

.brand-mark::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, transparent 0 46%, rgba(240, 184, 63, .9) 46% 51%, transparent 51%),
    repeating-linear-gradient(90deg, transparent 0 8px, rgba(255, 255, 255, .13) 8px 10px);
}

.brand-mark::before {
  position: absolute;
  inset: 8px;
  content: "";
  border: 1px solid rgba(255, 255, 255, .22);
}

.brand-monogram {
  position: relative;
  z-index: 1;
  font-size: 17px;
  line-height: 1;
  letter-spacing: .04em;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: lowercase;
}

.brand small {
  color: var(--muted);
  margin-top: 4px;
  font-size: clamp(11px, .9vw, 13px);
  white-space: nowrap;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
  color: var(--steel);
  font-size: 15px;
}

.main-nav a {
  position: relative;
  padding: 12px 0;
  transition: color .25s ease;
}

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

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--green-dark);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header-phone,
.header-cta {
  min-height: 46px;
  padding: 12px 15px;
  border: 1px solid rgba(31, 106, 79, .22);
  color: var(--green-dark);
  font-weight: 900;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.header-cta {
  background: linear-gradient(135deg, var(--amber), #ffd66b);
  border-color: var(--amber);
  color: #17140d;
  box-shadow: 0 12px 26px rgba(240, 184, 63, .24);
}

.header-phone:hover,
.header-cta:hover {
  background: var(--green-dark);
  color: #fff;
  transform: translateY(-1px);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, .92fr) minmax(340px, 1.08fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  padding: clamp(28px, 5vw, 66px) clamp(18px, 4vw, 58px) clamp(42px, 6vw, 82px);
  overflow: hidden;
}

.hero-kicker {
  position: absolute;
  top: 20px;
  right: clamp(18px, 4vw, 58px);
  left: clamp(18px, 4vw, 58px);
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  pointer-events: none;
}

.hero-kicker span {
  padding: 7px 10px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .22);
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.hero::before {
  position: absolute;
  inset: 0 0 auto;
  height: 74%;
  content: "";
  background:
    linear-gradient(120deg, rgba(16, 45, 36, .95), rgba(39, 53, 60, .88)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 42px);
  clip-path: polygon(0 0, 100% 0, 100% 78%, 0 100%);
}

.hero-media {
  position: relative;
  display: grid;
  min-height: clamp(300px, 35vw, 500px);
  align-content: end;
  overflow: hidden;
  background: var(--steel);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  transform: translateZ(0);
}

.hero-media::before {
  position: absolute;
  inset: 16px;
  z-index: 2;
  content: "";
  border: 1px solid rgba(255, 255, 255, .34);
  pointer-events: none;
}

.hero-media-card {
  position: relative;
  z-index: 3;
  width: min(330px, calc(100% - 60px));
  margin: 0 30px 30px;
  padding: 18px;
  background: rgba(16, 24, 22, .72);
  border: 1px solid rgba(255, 255, 255, .22);
  color: #fff;
  backdrop-filter: blur(10px);
  text-shadow: 0 2px 18px rgba(0, 0, 0, .38);
}

.hero-media-card span,
.hero-media-card strong {
  display: block;
}

.hero-media-card span {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-media-card strong {
  margin-top: 4px;
  font-size: 30px;
  line-height: 1;
}

.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  animation: heroDrift 14s ease-in-out infinite alternate;
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, .62)),
    linear-gradient(110deg, rgba(31, 106, 79, .18), rgba(0, 0, 0, .08));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 36px;
  height: 2px;
  content: "";
  background: currentColor;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(40px, 5.7vw, 76px);
  line-height: .98;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4.8vw, 54px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.18;
}

.lead {
  max-width: 620px;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(18px, 1.65vw, 23px);
}

.hero-actions,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 26px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-soft);
  font-weight: 900;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.button::after {
  margin-left: 10px;
  content: "→";
  transition: transform .25s ease;
}

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

.button:hover::after {
  transform: translateX(4px);
}

.button.primary {
  background: linear-gradient(135deg, var(--amber), #ffd66b);
  color: #17140d;
  box-shadow: 0 14px 30px rgba(240, 184, 63, .25);
}

.button.ghost {
  border-color: rgba(255, 255, 255, .5);
  color: #fff;
}

.button.ghost:hover {
  background: rgba(255, 255, 255, .12);
}

.button:disabled {
  cursor: wait;
  opacity: .72;
}

.button.light {
  border-color: rgba(255, 255, 255, .58);
  color: #fff;
}

.hero-facts {
  display: grid;
  gap: 10px;
  max-width: 680px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 680px;
  margin-top: 24px;
  background: rgba(16, 24, 22, .9);
  border: 1px solid rgba(240, 184, 63, .25);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .22);
}

.hero-metrics div {
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02)),
    rgba(16, 24, 22, .72);
  backdrop-filter: blur(8px);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  color: #fff;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1;
}

.hero-metrics span {
  margin-top: 6px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.hero-facts li {
  position: relative;
  padding-left: 25px;
  color: rgba(255, 255, 255, .94);
  text-shadow: 0 1px 10px rgba(0, 0, 0, .42);
}

.hero-facts li::before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 12px;
  height: 3px;
  content: "";
  background: var(--amber);
}

.contact-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: -36px clamp(18px, 4vw, 58px) 0;
  background: rgba(214, 222, 216, .9);
  box-shadow: var(--shadow);
}

.contact-strip div {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background: rgba(255, 255, 255, .94);
}

.contact-strip div:first-child {
  border-top-left-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
}

.contact-strip div:last-child {
  border-top-right-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}

.contact-strip div::after {
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--green), var(--amber), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.contact-strip div:hover::after {
  transform: scaleX(1);
}

.contact-strip span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 13px;
}

.contact-strip a,
.contact-strip strong {
  color: var(--ink);
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 900;
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 4vw, 58px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, .34fr) minmax(280px, .66fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading .eyebrow {
  color: var(--green);
}

.benefit-grid,
.catalog-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.benefit-grid article,
.product-card,
.delivery-list article {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(214, 222, 216, .9);
  box-shadow: 0 14px 34px rgba(17, 24, 22, .07);
  border-radius: var(--radius);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.benefit-grid article:hover,
.product-card:hover,
.delivery-list article:hover {
  border-color: rgba(31, 106, 79, .35);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.benefit-grid article {
  min-height: 230px;
  padding: 26px;
}

.benefit-grid article::after {
  position: absolute;
  right: -26px;
  bottom: -26px;
  width: 120px;
  height: 120px;
  content: "";
  background: repeating-linear-gradient(90deg, rgba(31, 106, 79, .11) 0 8px, transparent 8px 18px);
  transform: rotate(-14deg);
}

.benefit-grid span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 900;
}

.benefit-grid p,
.product-card p,
.delivery-list p,
.site-footer p {
  color: var(--muted);
}

.catalog {
  background:
    linear-gradient(180deg, rgba(16, 45, 36, .06), rgba(31, 93, 143, .05)),
    #eef2ee;
}

.catalog-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.product-card {
  display: flex;
  min-height: 500px;
  flex-direction: column;
}

.product-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--green), var(--amber), var(--blue));
}

.product-photo {
  display: block;
  width: 100%;
  height: clamp(205px, 15vw, 255px);
  padding: 12px;
  object-fit: contain;
  background:
    linear-gradient(135deg, rgba(31, 106, 79, .06), rgba(31, 93, 143, .08)),
    #f8faf8;
  border-bottom: 1px solid var(--line);
  transition: transform .35s ease;
}

.product-card:hover .product-photo {
  transform: scale(1.025);
}

.price-ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 8px 10px;
  background: var(--amber);
  color: #17140d;
  font-size: 13px;
  font-weight: 900;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(201, 133, 29, .22);
}

.price-ribbon.muted {
  background: var(--green-dark);
  color: #fff;
}

.product-card h3,
.product-card p,
.product-card dl,
.product-card a,
.product-tags {
  margin-left: 24px;
  margin-right: 24px;
}

.product-card h3 {
  margin-top: 24px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.product-tags span {
  padding: 6px 9px;
  background: rgba(31, 106, 79, .08);
  border: 1px solid rgba(31, 106, 79, .14);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  border-radius: 999px;
}

.product-card dl {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 8px 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.route-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 20px;
  background: rgba(214, 222, 216, .9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.route-strip div {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  padding: 22px;
  background: #fff;
}

.route-strip div::after {
  position: absolute;
  right: -18px;
  bottom: -32px;
  color: rgba(31, 106, 79, .07);
  content: attr(data-step);
  font-size: 92px;
  font-weight: 900;
  line-height: 1;
}

.route-strip span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 900;
}

.route-strip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 21px;
}

.route-strip p {
  margin: 0;
  color: var(--muted);
}

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

.product-card dd {
  margin: 0;
  font-weight: 900;
}

.product-card a {
  position: relative;
  margin-top: 18px;
  margin-bottom: 24px;
  color: var(--green-dark);
  font-weight: 900;
}

.product-card a:hover {
  color: var(--amber-dark);
}

.product-card a::after {
  margin-left: 8px;
  content: "→";
  transition: margin-left .25s ease;
}

.product-card a:hover::after {
  margin-left: 14px;
}

.request-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, .88fr) minmax(320px, .72fr);
  gap: 32px;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(16, 45, 36, .96), rgba(39, 53, 60, .94)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 44px);
  color: #fff;
}

.request-band::after {
  position: absolute;
  right: -8%;
  bottom: -18%;
  width: 48%;
  height: 70%;
  content: "";
  background: repeating-linear-gradient(90deg, rgba(240, 184, 63, .18) 0 12px, transparent 12px 28px);
  transform: rotate(-18deg);
}

.request-band > * {
  position: relative;
  z-index: 1;
}

.request-band .eyebrow,
.request-band p {
  color: #dce9df;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--steel);
  font-size: 14px;
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  background: #fbfcfb;
  color: var(--ink);
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(31, 106, 79, .12);
}

.lead-form textarea {
  min-height: 104px;
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.delivery-layout {
  display: grid;
  grid-template-columns: minmax(280px, .6fr) minmax(320px, .4fr);
  gap: 20px;
}

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

.delivery-list article {
  padding: 24px;
}

.delivery-list strong {
  color: var(--copper);
  font-size: 20px;
}

.map-panel {
  position: relative;
  display: grid;
  min-height: 430px;
  align-content: center;
  overflow: hidden;
  padding: 30px;
  background:
    linear-gradient(120deg, rgba(16, 45, 36, .92), rgba(31, 93, 143, .72)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, .16) 0 2px, transparent 2px 28px);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-panel::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, .22), transparent);
}

.map-panel span,
.map-panel p {
  position: relative;
  z-index: 1;
}

.map-panel span {
  margin-bottom: 10px;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.05;
}

.map-panel p {
  max-width: 380px;
  margin: 0;
  color: #dce9df;
}

.size-table-wrap {
  overflow-x: auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(17, 24, 22, .06);
}

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

th,
td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  background: var(--steel);
  color: #fff;
}

tbody tr {
  transition: background .2s ease;
}

tbody tr:hover {
  background: rgba(31, 106, 79, .06);
}

.photo-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .55), rgba(16, 45, 36, .06)),
    #eef2ee;
}

.gallery-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 18px;
}

.gallery-feature,
.gallery-side figure,
.photo-rail figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #101816;
  border: 1px solid rgba(214, 222, 216, .95);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(17, 24, 22, .12);
}

.gallery-open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-open img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.gallery-feature .gallery-open {
  height: clamp(360px, 42vw, 620px);
}

.gallery-side {
  display: grid;
  gap: 18px;
}

.gallery-side .gallery-open {
  height: calc((clamp(360px, 42vw, 620px) - 18px) / 2);
}

.gallery-feature:hover img,
.gallery-side figure:hover img,
.photo-rail figure:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.045);
}

.gallery-feature figcaption,
.gallery-side figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  padding: 16px;
  background: rgba(16, 24, 22, .78);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  backdrop-filter: blur(10px);
}

.gallery-feature::after,
.gallery-side figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, .58));
  pointer-events: none;
}

.gallery-feature span,
.gallery-side span {
  display: block;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-feature strong,
.gallery-side strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(20px, 2.2vw, 34px);
  line-height: 1.08;
}

.gallery-side strong {
  font-size: 22px;
}

.photo-rail {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.photo-rail .gallery-open {
  height: 150px;
}

.photo-rail figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 8px 9px;
  background: rgba(255, 255, 255, .9);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8, 14, 12, .9);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  display: block;
  max-width: min(1120px, 94vw);
  max-height: 88vh;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: clamp(40px, 7vw, 76px) clamp(18px, 4vw, 58px);
  background:
    linear-gradient(120deg, #1c2930, #101816),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 48px);
  color: #fff;
}

.site-footer h2 {
  margin-bottom: 14px;
}

.site-footer a:hover {
  color: var(--amber);
}

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: grid;
  min-width: 160px;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--amber), #ffd66b);
  border-radius: var(--radius);
  color: #17140d;
  box-shadow: 0 18px 44px rgba(17, 24, 22, .28);
  transition: transform .25s ease, box-shadow .25s ease;
}

.floating-cta:hover {
  box-shadow: var(--shadow-strong);
  transform: translateY(-4px);
}

.floating-cta span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.floating-cta strong {
  font-size: 18px;
}

.legal {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
}

.reveal.is-visible {
  animation: revealUp .75s ease forwards;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.03) translateX(-1.2%);
  }
  to {
    transform: scale(1.08) translateX(1.2%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .menu-button {
    display: grid;
    justify-self: end;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 1px solid var(--line);
    background: #fff;
  }

  .menu-button span {
    display: block;
    height: 2px;
    background: var(--ink);
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .main-nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open a {
    padding: 14px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav.is-open a::after {
    display: none;
  }

  .hero,
  .request-band,
  .delivery-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero::before {
    height: 88%;
  }

  .hero-media {
    min-height: 340px;
  }

  .contact-strip,
  .section-heading,
  .benefit-grid,
  .catalog-grid,
  .route-strip,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-shell {
    grid-template-columns: 1fr;
  }

  .gallery-side {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-side .gallery-open {
    height: 260px;
  }

  .photo-rail {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand-mark {
    width: 48px;
    height: 42px;
  }

  .brand-monogram {
    font-size: 15px;
  }

  .brand strong {
    font-size: clamp(16px, 5vw, 20px);
    overflow-wrap: anywhere;
  }

  .brand small {
    display: none;
  }

  .hero {
    padding-top: 22px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-media {
    min-height: 250px;
  }

  .contact-strip {
    margin: 0;
    box-shadow: none;
  }

  .contact-strip,
  .section-heading,
  .benefit-grid,
  .catalog-grid,
  .route-strip,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .gallery-feature .gallery-open {
    height: 300px;
  }

  .gallery-side {
    grid-template-columns: 1fr;
  }

  .gallery-side .gallery-open,
  .photo-rail .gallery-open {
    height: 220px;
  }

  .photo-rail {
    grid-template-columns: 1fr;
  }

  .hero-kicker {
    display: none;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .floating-cta {
    right: 12px;
    bottom: 12px;
    min-width: 138px;
    padding: 12px;
  }

  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .product-photo {
    height: 220px;
  }
}
