/* ==========================================================================
   SBK Trading Corporation — Premium Corporate Stylesheet
   Palette: forest green #0F2E1D / #123524 · gold #C9A227 · ivory #F7F4EC
   ========================================================================== */

:root {
  --green-deep: #0F2E1D;
  --green: #123524;
  --green-mid: #1A4A32;
  --green-soft: #245C3F;
  --green-line: #3FA35A;
  --gold: #C9A227;
  --gold-light: #E0C35A;
  --gold-dark: #A3841A;
  --ivory: #F7F4EC;
  --ivory-dark: #EDE7D6;
  --cream: #FBF9F3;
  --charcoal: #1F1F1F;
  --ink: #2A2A2A;
  --muted: #5C6158;
  --line: rgba(15, 46, 29, 0.12);
  --white: #FFFFFF;
  --overlay: rgba(15, 46, 29, 0.72);
  --header-h: 82px;
  --util-h: 38px;
  --radius: 10px;
  --shadow: 0 18px 40px rgba(15, 46, 29, 0.12);
  --shadow-lift: 0 28px 56px rgba(15, 46, 29, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1200px;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
}

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

img.is-lazy {
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}

img.is-lazy.is-loaded {
  opacity: 1;
}

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

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

address {
  font-style: normal;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 2000;
  background: var(--gold);
  color: var(--green-deep);
  padding: 10px 16px;
  font-weight: 600;
  border-radius: 4px;
}

.skip-link:focus {
  top: 8px;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 104px 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: 56px;
}

.section-head.centered {
  margin-inline: auto;
  text-align: center;
}

.kicker {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 3.4vw, 3.15rem);
  line-height: 1.12;
  color: var(--green-deep);
  letter-spacing: -0.02em;
}

.section-lead {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
  background: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(14);
    opacity: 0;
  }
}

.btn:hover {
  transform: scale(1.03);
}

.btn-gold {
  background: var(--gold);
  color: var(--green-deep);
  box-shadow: 0 10px 24px rgba(201, 162, 39, 0.28);
}

.btn-gold:hover {
  background: var(--gold-light);
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--green-deep);
  border-color: var(--white);
}

.btn-outline-dark {
  border: 1.5px solid var(--green-deep);
  color: var(--green-deep);
}

.btn-outline-dark:hover {
  background: var(--green-deep);
  color: var(--white);
}

.btn-sm {
  min-height: 44px;
  padding: 0 20px;
  font-size: 13px;
}

/* --------------------------------------------------------------------------
   Utility bar
   -------------------------------------------------------------------------- */
.utility-bar {
  background: #0A1F14;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  height: var(--util-h);
  display: flex;
  align-items: center;
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.utility-left,
.utility-right {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}

.utility-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.utility-item i {
  color: var(--gold);
  font-size: 12px;
}

.utility-item a:hover {
  color: var(--gold-light);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 11px;
  transition: background 0.2s ease, color 0.2s ease;
}

.social-links a:hover {
  background: var(--gold);
  color: var(--green-deep);
}

/* --------------------------------------------------------------------------
   Header / Nav
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, height 0.3s ease;
}

.page-home .site-header {
  position: fixed;
  top: var(--util-h);
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(10, 31, 20, 0.55), transparent);
}

.page-home .site-header.is-scrolled,
.page-inner .site-header {
  background: var(--green-deep);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.page-home .site-header.is-scrolled {
  top: 0;
  height: 70px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

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

.brand-mark {
  width: 52px;
  height: 52px;
  background: var(--ivory);
  border-radius: 8px;
  padding: 5px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
}

.brand-sub {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-list a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 10px 14px;
  position: relative;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--white);
}

.nav-list a:hover::after,
.nav-list a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-cta {
  flex-shrink: 0;
}

.mobile-quote {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  font-size: 22px;
}

.nav-overlay {
  display: none;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: clamp(640px, 100svh, 920px);
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

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

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 22, 15, 0.82) 0%, rgba(15, 46, 29, 0.58) 52%, rgba(15, 46, 29, 0.28) 100%),
    linear-gradient(180deg, rgba(10, 22, 15, 0.25) 0%, rgba(10, 22, 15, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 160px 0 120px;
  max-width: 760px;
}

.hero-kicker {
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 18px;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.7rem, 6vw, 5.1rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.hero-sub {
  margin-top: 22px;
  max-width: 540px;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.86);
}

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

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-hint span {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 20px;
  position: relative;
}

.scroll-hint span::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 4px;
  background: var(--gold);
  animation: scrollDot 1.6s infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(12px); opacity: 0; }
  100% { opacity: 0; }
}

/* Inner page hero */
.page-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

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

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 46, 29, 0.35) 0%, rgba(10, 22, 15, 0.82) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 140px 0 52px;
}

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.05;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin-top: 12px;
}

.breadcrumb a:hover {
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   Stats
   -------------------------------------------------------------------------- */
.stats {
  background: var(--green);
  color: var(--white);
  padding: 0;
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -48px;
  background: var(--green-deep);
  border: 1px solid rgba(201, 162, 39, 0.18);
  box-shadow: var(--shadow);
}

.stat {
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat:last-child {
  border-right: 0;
}

.stat-value {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 4px;
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  z-index: -1;
}

.about-badge {
  position: absolute;
  left: -18px;
  bottom: 36px;
  background: var(--gold);
  color: var(--green-deep);
  padding: 22px 22px 18px;
  min-width: 148px;
  box-shadow: var(--shadow);
}

.about-badge strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1;
}

.about-badge span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.value-list {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.value-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink);
  font-weight: 500;
}

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

.about-actions {
  margin-top: 32px;
}

/* --------------------------------------------------------------------------
   Products
   -------------------------------------------------------------------------- */
.products-section {
  background: var(--ivory);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.product-card {
  background: var(--white);
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(15, 46, 29, 0.06);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lift);
}

.product-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ivory-dark);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.product-card:hover .product-media img {
  transform: scale(1.1);
}

.product-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 46, 29, 0.55) 100%);
  opacity: 0.55;
  transition: opacity 0.4s ease, background 0.4s ease;
}

.product-card:hover .product-wash {
  opacity: 1;
  background: linear-gradient(180deg, rgba(15, 46, 29, 0.08) 0%, rgba(15, 46, 29, 0.62) 100%);
}

.product-body {
  padding: 24px 24px 28px;
}

.product-body h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--green-deep);
}

.product-body p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.98rem;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card:hover .product-link {
  color: var(--green);
}

/* --------------------------------------------------------------------------
   Why choose us
   -------------------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.why-visual img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 4px;
}

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

.why-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 18px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: border-color 0.25s ease, transform 0.25s var(--ease);
}

.why-item:hover {
  border-color: var(--gold);
  transform: translateX(6px);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ivory);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 20px;
}

.why-item h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--green-deep);
}

.why-item p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   Process timeline
   -------------------------------------------------------------------------- */
.process {
  background: var(--green-deep);
  color: var(--white);
}

.process .section-title {
  color: var(--white);
}

.process .section-lead {
  color: rgba(255, 255, 255, 0.7);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 12px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: rgba(201, 162, 39, 0.28);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s var(--ease);
}

.timeline.is-inview::before {
  transform: scaleX(1);
}

.step {
  text-align: center;
  position: relative;
}

.js .timeline.is-inview .step {
  animation: stepIn 0.7s var(--ease) both;
}

.timeline.is-inview .step:nth-child(1) { animation-delay: 0.1s; }
.timeline.is-inview .step:nth-child(2) { animation-delay: 0.28s; }
.timeline.is-inview .step:nth-child(3) { animation-delay: 0.46s; }
.timeline.is-inview .step:nth-child(4) { animation-delay: 0.64s; }

@keyframes stepIn {
  to {
    opacity: 1;
    transform: none;
  }
}

.step-num {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.45);
  background: var(--green);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1.6rem;
  position: relative;
  z-index: 1;
}

.step h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.step p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
  max-width: 240px;
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: 4px;
  cursor: zoom-in;
  aspect-ratio: 1;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gallery-item::after {
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 22px;
  background: rgba(15, 46, 29, 0.38);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover::after {
  opacity: 1;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 18, 12, 0.92);
  z-index: 1400;
  display: none;
  place-items: center;
  padding: 40px 20px;
}

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

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 84vh;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  color: var(--white);
  width: 48px;
  height: 48px;
  font-size: 22px;
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonials {
  background: var(--ivory);
}

.slider {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.55s var(--ease);
}

.slide {
  min-width: 100%;
  padding: 8px 8px 24px;
}

.quote-card {
  background: var(--white);
  padding: 44px 40px 36px;
  border-radius: 4px;
  box-shadow: var(--shadow);
  text-align: center;
}

.quote-card i {
  color: var(--gold);
  font-size: 28px;
  margin-bottom: 16px;
}

.quote-card p {
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.45;
  color: var(--green-deep);
}

.quote-meta {
  margin-top: 22px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.quote-note {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #9a8f6a;
  text-transform: none;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d4cdb8;
}

.slider-dots button.is-active {
  background: var(--gold);
  transform: scale(1.2);
}

/* --------------------------------------------------------------------------
   CTA banner
   -------------------------------------------------------------------------- */
.cta-banner {
  position: relative;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  padding: 92px 0;
}

.cta-banner-media {
  position: absolute;
  inset: 0;
}

.cta-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 46, 29, 0.88), rgba(18, 53, 36, 0.82));
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 600;
  max-width: 760px;
  margin: 0 auto 28px;
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-card,
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 36px 32px;
  border-radius: 4px;
}

.contact-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row:last-of-type {
  border-bottom: 0;
}

.contact-row dt {
  color: var(--green-line);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-row dd {
  color: var(--ink);
}

.contact-row a:hover {
  color: var(--gold-dark);
}

.map-wrap {
  margin-top: 24px;
  border-radius: 4px;
  overflow: hidden;
  min-height: 260px;
  background: var(--ivory-dark);
}

.map-wrap iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

.form-row {
  margin-bottom: 16px;
}

.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--green);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid #d9d3c2;
  background: var(--cream);
  padding: 13px 14px;
  border-radius: 4px;
  color: var(--charcoal);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.18);
}

.form-status {
  margin-top: 14px;
  font-size: 0.95rem;
  min-height: 1.4em;
}

.form-status.success { color: #1b6b3a; }
.form-status.error { color: #9b2c2c; }

.locations-stack {
  display: grid;
  gap: 22px;
}

.locations-stack .section-title {
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  margin-bottom: 8px;
}

.maps-section {
  padding-top: 0;
}

.maps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.map-block h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--green-deep);
  margin-bottom: 12px;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.cert-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0 0 24px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(15, 46, 29, 0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.cert-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
}

.cert-preview {
  height: 160px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(15, 46, 29, 0.04), rgba(15, 46, 29, 0.1)),
    repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(201, 162, 39, 0.06) 10px, rgba(201, 162, 39, 0.06) 11px);
  color: var(--gold);
  font-size: 42px;
  border-bottom: 1px solid var(--line);
}

.cert-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--green-deep);
  margin: 18px 16px 8px;
}

.cert-card p {
  color: var(--muted);
  font-size: 0.92rem;
  padding: 0 16px;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  position: relative;
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.86);
  overflow: hidden;
  border-top: 3px solid var(--green-line);
}

.footer-bg {
  position: absolute;
  inset: 0;
}

.footer-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}

.footer-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 46, 29, 0.88) 0%, rgba(10, 22, 15, 0.94) 100%);
}

.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.2fr;
  gap: 48px;
  padding: 72px 0 48px;
}

.footer-logo {
  max-width: 180px;      /* Set a proper maximum width for a wide logo */
  height: auto;          /* Let the height adjust naturally to prevent squishing */
  background: var(--ivory);
  border-radius: 8px;
  padding: 8px 12px;     /* Give extra breathing room to the left and right sides */
  margin-bottom: 18px;
  display: inline-block; /* Ensure the box wraps exactly around your logo dimensions */
}

.footer-logo img {
  width: 100%;           /* Scale fluidly to fill the maximum container bounds */
  height: auto;          /* Maintain correct structural aspect ratio */
  display: block;
}


.footer-blurb {
  max-width: 340px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
}

.footer-col h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links li + li {
  margin-top: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-row:last-child {
  border-bottom: 0;
}

.footer-contact-row dt {
  color: var(--green-line);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.footer-contact-row dd,
.footer-contact-row a {
  color: var(--white);
}

.footer-contact-row a:hover {
  color: var(--gold);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0 22px;
  text-align: center;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom .credit {
  color: var(--gold);
  font-weight: 500;
}

.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-line);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 900;
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.to-top:hover {
  background: var(--gold);
  color: var(--green-deep);
}

/* --------------------------------------------------------------------------
   Scroll reveal
   -------------------------------------------------------------------------- */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   Products page extras
   -------------------------------------------------------------------------- */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 96px;
}

.product-detail:last-child {
  border-bottom: 0;
}

.product-detail:nth-child(even) {
  direction: rtl;
}

.product-detail:nth-child(even) > * {
  direction: ltr;
}

.product-detail img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 4px;
}

.product-detail h2 {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--green-deep);
}

.product-detail p {
  margin-top: 12px;
  color: var(--muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag-list li {
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 6px 12px;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green);
}

/* About page extras */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.value-card {
  background: var(--white);
  padding: 28px 24px;
  border-top: 3px solid var(--gold);
  box-shadow: 0 10px 24px rgba(15, 46, 29, 0.06);
}

.value-card i {
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 12px;
}

.value-card h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--green-deep);
  margin-bottom: 8px;
}

.value-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .about-grid,
  .why-grid,
  .contact-grid,
  .product-detail,
  .product-detail:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 36px;
  }

  .about-visual img,
  .why-visual img,
  .product-detail img {
    height: 380px;
  }

  .timeline,
  .product-grid,
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .timeline::before {
    display: none;
  }

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

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    grid-column: auto;
    aspect-ratio: 1;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .maps-grid,
  .cert-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  :root { --header-h: 70px; }

  .utility-item.hours,
  .utility-item.direct-line,
  .utility-right,
  .brand-sub {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .header-cta {
    display: none;
  }

  .primary-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 86vw);
    height: 100vh;
    height: 100dvh;
    background: var(--green-deep);
    padding: 88px 28px 32px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    z-index: 1100;
    box-shadow: -16px 0 40px rgba(0, 0, 0, 0.25);
  }

  .primary-nav.is-open {
    transform: none;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .nav-list a {
    font-size: 1.2rem;
    padding: 12px 0;
  }

  .mobile-quote {
    display: inline-flex;
    margin-top: 28px;
    width: auto;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1050;
  }

  .nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 0;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero {
    min-height: 78svh;
  }

  .hero-content {
    padding: 140px 0 100px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max), calc(100% - 32px));
  }

  .section {
    padding: 72px 0;
  }

  .utility-right,
  .utility-item:nth-child(2) {
    display: none;
  }

  .utility-left {
    gap: 12px;
  }

  .product-grid,
  .timeline,
  .values-grid,
  .stats-grid,
  .footer-main,
  .gallery-grid,
  .maps-grid,
  .cert-grid {
    grid-template-columns: 1fr;
  }

  .about-visual::before,
  .about-badge {
    display: none;
  }

  .quote-card {
    padding: 28px 20px;
  }

  .quote-card p {
    font-size: 1.2rem;
  }

  .contact-row,
  .footer-contact-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .page-hero {
    min-height: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
