:root {
  --green-ink: #071910;
  --green-deep: #0e2a1c;
  --green-forest: #163c28;
  --green-mid: #2f6d46;
  --green-leaf: #4ea05f;
  --green-bright: #7dca78;
  --green-mist: #e7f2e8;
  --cream: #f6f1e7;
  --cream-deep: #efe6d6;
  --ivory: #fcfaf5;
  --gold: #c4a15a;
  --gold-soft: #e4d2a4;
  --grape: #6a3d72;
  --mango: #e08a32;
  --berry: #3c4d8a;
  --citrus: #d86a2f;
  --avocado: #6e8f3a;
  --apple: #c24b45;
  --cherry: #a52a3a;
  --pear: #9aaa4a;
  --text: #15231b;
  --text-muted: #5b6a60;
  --white: #ffffff;
  --shadow-sm: 0 8px 24px rgba(7, 25, 16, 0.08);
  --shadow-md: 0 18px 48px rgba(7, 25, 16, 0.12);
  --shadow-lg: 0 30px 70px rgba(7, 25, 16, 0.16);
  --radius: 22px;
  --radius-sm: 14px;
  --header-h: 88px;
  --container: 1180px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--ivory);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 0.55em;
  color: var(--green-deep);
}

p {
  margin: 0 0 1rem;
}

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--green-deep);
  color: var(--white);
  padding: 0.7rem 1rem;
  border-radius: 10px;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.section {
  padding: 6.5rem 0;
}

.section-kicker {
  display: inline-block;
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-head {
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-head h2,
.about-copy h2,
.operations-copy h2,
.contact-details h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.lead {
  font-size: 1.08rem;
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

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

.btn-primary {
  background: linear-gradient(180deg, #4ea05f 0%, #2f6d46 100%);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(47, 109, 70, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #5cb06c 0%, #357a4e 100%);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-line {
  min-height: 44px;
  padding: 0.55rem 1rem;
  border: 1px solid var(--green-mid);
  color: var(--green-forest);
  background: transparent;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  transition: height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  background: transparent;
}

.site-header.is-scrolled,
.site-header.nav-open {
  --header-h: 70px;
  background: rgba(252, 250, 245, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(7, 25, 16, 0.08);
}

.site-header.nav-open .logo,
.site-header.nav-open .site-nav a {
  color: var(--green-deep);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
}

.site-header.is-scrolled .logo {
  color: var(--green-deep);
}

.logo-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 60;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header.is-scrolled .nav-toggle span,
.nav-open .nav-toggle span {
  background: var(--green-deep);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.site-nav ul {
  display: flex;
  gap: 1.35rem;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
  font-weight: 600;
}

.site-header.is-scrolled .site-nav a,
.site-header.nav-open .site-nav a {
  color: var(--green-deep);
}

.site-nav .nav-cta,
.site-header.is-scrolled .nav-cta,
.site-header.nav-open .nav-cta,
.site-header.nav-open .site-nav a.nav-cta {
  color: var(--white);
}

.nav-backdrop {
  display: none;
}

.site-nav ul a {
  position: relative;
}

.site-nav ul a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.site-nav ul a:hover::after,
.site-nav ul a:focus-visible::after {
  width: 100%;
}

.nav-cta {
  min-height: 44px;
  padding: 0.55rem 1.15rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 8rem 0 5.5rem;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 25, 16, 0.88) 0%, rgba(7, 25, 16, 0.55) 48%, rgba(7, 25, 16, 0.22) 100%),
    linear-gradient(180deg, rgba(7, 25, 16, 0.28) 0%, rgba(7, 25, 16, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  width: min(calc(100% - 2rem), var(--container));
}

.hero .eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(196, 161, 90, 0.55);
  border-radius: 999px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.7rem, 7vw, 5.4rem);
  max-width: 12ch;
  margin-bottom: 1rem;
}

.hero-lead {
  max-width: 36rem;
  font-size: 1.12rem;
  color: rgba(247, 243, 235, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.8rem 0 1.6rem;
}

.hero-trust {
  margin: 0;
  color: var(--gold-soft);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-leaf,
.hero-orb {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.hero-leaf {
  width: 90px;
  height: 140px;
  background: #7dca78;
  border-radius: 0 70% 20% 70%;
  opacity: 0.22;
  filter: blur(0.2px);
  animation: floaty 8s ease-in-out infinite;
}

.hero-leaf-1 {
  right: 12%;
  top: 18%;
  transform: rotate(18deg);
}

.hero-leaf-2 {
  right: 22%;
  bottom: 16%;
  width: 60px;
  height: 96px;
  background: #c4a15a;
  animation-name: floaty-alt;
  animation-delay: -2.5s;
}

@keyframes floaty-alt {
  0%, 100% { transform: translateY(0) rotate(-12deg); }
  50% { transform: translateY(-14px) rotate(-6deg); }
}

.hero-orb {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 202, 120, 0.35), transparent 70%);
  animation: pulse 7s ease-in-out infinite;
}

.hero-orb-1 {
  right: 6%;
  top: 28%;
}

.hero-orb-2 {
  left: 8%;
  bottom: 10%;
  width: 140px;
  height: 140px;
  animation-delay: -3s;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(18deg); }
  50% { transform: translateY(-16px) rotate(24deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.12); opacity: 1; }
}

.about {
  background:
    radial-gradient(circle at 12% 20%, rgba(125, 202, 120, 0.12), transparent 28%),
    var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-frame {
  border-radius: 36px 36px 80px 36px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-frame img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.about-visual:hover img {
  transform: scale(1.05);
}

.about-float {
  position: absolute;
  left: -18px;
  bottom: 42px;
  background: var(--green-deep);
  color: var(--white);
  padding: 1.1rem 1.3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  min-width: 110px;
}

.about-float span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.about-float strong {
  font-family: var(--font-display);
  font-size: 2rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.info-card {
  background: var(--ivory);
  border: 1px solid rgba(14, 42, 28, 0.08);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-sm);
}

.info-card span {
  display: block;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.info-card strong {
  font-size: 1.02rem;
  color: var(--green-deep);
}

.products {
  background: var(--ivory);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.product-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}

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

.product-media {
  overflow: hidden;
  height: 230px;
}

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

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

.product-body {
  padding: 1.25rem 1.3rem 1.4rem;
  border-top: 4px solid var(--green-leaf);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.product-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.15rem;
}

.product-body p {
  color: var(--text-muted);
  flex: 1;
}

.product-card[data-fruit="mixed"] .product-body { border-color: var(--green-leaf); }
.product-card[data-fruit="grapes"] .product-body { border-color: var(--grape); }
.product-card[data-fruit="mangoes"] .product-body { border-color: var(--mango); }
.product-card[data-fruit="blueberries"] .product-body { border-color: var(--berry); }
.product-card[data-fruit="citrus"] .product-body { border-color: var(--citrus); }
.product-card[data-fruit="avocados"] .product-body { border-color: var(--avocado); }
.product-card[data-fruit="apples"] .product-body { border-color: var(--apple); }
.product-card[data-fruit="cherries"] .product-body { border-color: var(--cherry); }
.product-card[data-fruit="pears"] .product-body { border-color: var(--pear); }

.gallery {
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 210px;
  gap: 1rem;
}

.detail-list a {
  overflow-wrap: anywhere;
}

.gallery-item {
  position: relative;
  margin: 0;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

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

.gallery-item figcaption {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(7, 25, 16, 0.72);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
}

.span-2 {
  grid-column: span 2;
  grid-row: span 2;
}

.why {
  background:
    linear-gradient(180deg, var(--ivory), #f3eee4);
}

.usp-line {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--green-mid);
  letter-spacing: 0.08em;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.why-card {
  background: var(--white);
  border-radius: 24px;
  padding: 1.6rem 1.4rem 1.7rem;
  box-shadow: var(--shadow-sm);
  min-height: 260px;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--green-mist);
}

.why-index {
  display: block;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1.4rem;
}

.why-es {
  font-family: var(--font-display);
  color: var(--green-mid);
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
}

.certs {
  background: var(--green-deep);
  color: var(--white);
}

.certs h2,
.certs .section-kicker {
  color: var(--white);
}

.certs .section-head p {
  color: rgba(247, 243, 235, 0.78);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.cert-badge {
  text-align: center;
  border: 1px solid rgba(196, 161, 90, 0.35);
  border-radius: 28px;
  padding: 2.2rem 1.2rem;
  background: rgba(255, 255, 255, 0.03);
}

.cert-seal {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.28rem 0.7rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold-soft);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cert-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 0.45rem;
}

.cert-badge p {
  margin: 0;
  color: rgba(247, 243, 235, 0.72);
}

.operations {
  background: var(--cream);
}

.operations-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.ops-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.6rem;
}

.ops-panels article {
  background: var(--ivory);
  border-radius: 18px;
  padding: 1.15rem 1.2rem;
  box-shadow: var(--shadow-sm);
}

.ops-panels h3 {
  font-size: 1rem;
  margin-bottom: 0.7rem;
}

.ops-panels li {
  padding: 0.35rem 0;
  font-weight: 700;
  color: var(--green-forest);
}

.world-visual {
  width: 100%;
  height: auto;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.route-line {
  stroke-dasharray: 8 8;
  animation: dash 12s linear infinite;
}

@keyframes dash {
  to { stroke-dashoffset: -160; }
}

.clients {
  background: var(--ivory);
}

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

.client-card {
  min-height: 110px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(14, 42, 28, 0.1);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.client-card span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--green-deep);
}

.stats {
  background:
    linear-gradient(90deg, rgba(7, 25, 16, 0.88), rgba(14, 42, 28, 0.82)),
    url("../assets/images/hero.jpg") center/cover no-repeat;
  color: var(--white);
  padding: 4.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  color: var(--gold-soft);
  margin-bottom: 0.3rem;
}

.stat-label {
  color: rgba(247, 243, 235, 0.8);
  font-size: 0.92rem;
}

.commercial {
  background: var(--cream);
}

.commercial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.commercial-card {
  background: var(--white);
  border-radius: 28px;
  padding: 2.2rem 2rem;
  box-shadow: var(--shadow-md);
  border-left: 6px solid var(--gold);
}

.commercial-card p {
  margin-bottom: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.commercial-card strong {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--green-deep);
}

.contact {
  background: var(--ivory);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.detail-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.6rem 0 0;
}

.detail-list div {
  background: var(--cream);
  border-radius: 16px;
  padding: 0.9rem 1rem;
}

.detail-list dt {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.detail-list dd {
  margin: 0;
  font-weight: 700;
  color: var(--green-deep);
}

.detail-list a {
  color: var(--green-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.enquiry {
  background: var(--white);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.enquiry h3 {
  font-size: 2rem;
}

.enquiry-form {
  display: grid;
  gap: 0.9rem;
}

.form-row {
  display: grid;
  gap: 0.35rem;
}

.form-row label {
  font-size: 0.86rem;
  font-weight: 700;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(14, 42, 28, 0.14);
  background: var(--ivory);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  color: var(--text);
  outline: none;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 4px rgba(47, 109, 70, 0.12);
}

.form-row.invalid input,
.form-row.invalid select,
.form-row.invalid textarea {
  border-color: #b42318;
}

.field-error {
  min-height: 1.1em;
  color: #b42318;
  font-size: 0.8rem;
}

.form-success {
  margin: 0.4rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: var(--green-mist);
  color: var(--green-forest);
  font-weight: 600;
}

.site-footer {
  background: #000000;
  color: #ffffff;
  padding: 18px 0;
}

.site-footer .footer-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 32px;
  width: min(calc(100% - 48px), 1280px);
}

.footer-copy {
  margin: 0;
  justify-self: start;
  text-align: left;
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff;
}

.footer-copy a,
.footer-credit {
  color: #c5a059;
  font-weight: 700;
  text-decoration: none;
}

.footer-copy a:hover,
.footer-copy a:focus-visible {
  color: #e0c07a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-divider {
  margin: 0 6px;
  color: #ffffff;
  font-weight: 400;
}

.footer-brand {
  justify-self: end;
  display: block;
  line-height: 0;
  background: #000000;
}

.footer-brand img {
  width: 148px;
  height: auto;
  display: block;
  mix-blend-mode: lighten;
}

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

.reveal.is-visible {
  animation: rise 0.8s var(--ease) forwards;
}

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

.product-grid .reveal:nth-child(2) { animation-delay: 0.08s; }
.product-grid .reveal:nth-child(3) { animation-delay: 0.16s; }
.why-grid .reveal:nth-child(2) { animation-delay: 0.08s; }
.why-grid .reveal:nth-child(3) { animation-delay: 0.16s; }
.why-grid .reveal:nth-child(4) { animation-delay: 0.24s; }

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

@media (max-width: 1024px) {
  .about-grid,
  .operations-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-frame img {
    height: 460px;
  }

  .product-grid,
  .why-grid,
  .cert-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 190px;
  }

  .span-2 {
    grid-column: span 2;
    grid-row: span 1;
  }
}

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

  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 55;
    display: block;
    background: rgba(7, 25, 16, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  body.nav-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-backdrop[hidden] {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: 0 0 auto auto;
    z-index: 58;
    width: min(86vw, 360px);
    height: 100vh;
    background: var(--ivory);
    flex-direction: column;
    align-items: stretch;
    padding: 6rem 1.5rem 2rem;
    transform: translateX(110%);
    transition: transform 0.35s var(--ease);
    box-shadow: var(--shadow-lg);
  }

  .nav-open .site-nav {
    transform: translateX(0);
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0.4rem;
  }

  .site-nav a,
  .site-header.is-scrolled .site-nav a {
    color: var(--green-deep);
    display: block;
    padding: 0.75rem 0.2rem;
    font-size: 1.1rem;
  }

  .site-nav a.nav-cta,
  .site-header.is-scrolled .site-nav a.nav-cta {
    color: var(--white);
    display: inline-flex;
    margin-top: 1rem;
    width: 100%;
    padding: 0.55rem 1.15rem;
    font-size: 0.95rem;
  }

  .nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  body.nav-open {
    overflow: hidden;
  }

  .hero {
    align-items: center;
    padding-top: 7rem;
  }

  .hero h1 {
    max-width: none;
  }

  .commercial-grid,
  .ops-panels,
  .detail-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4.2rem 0;
  }

  .product-grid,
  .why-grid,
  .cert-grid,
  .stats-grid,
  .client-grid,
  .info-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .span-2 {
    grid-column: span 1;
  }

  .gallery-grid {
    grid-auto-rows: 220px;
  }

  .about-float {
    left: 12px;
    bottom: 16px;
  }

  .about-frame {
    border-radius: 24px;
  }

  .enquiry {
    padding: 1.3rem;
  }

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

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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

@media (max-width: 720px) {
  .site-footer {
    padding: 16px 0;
  }

  .site-footer .footer-bar {
    grid-template-columns: 1fr auto;
    column-gap: 16px;
  }

  .footer-copy {
    text-align: left;
    font-size: 12px;
  }

  .footer-brand img {
    width: 110px;
  }
}
