/* ══════════════════════════════════════════════════
   Hatch — Main Stylesheet
   ══════════════════════════════════════════════════ */

/* ── Font Faces ── */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/Inter_18pt-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/Inter_18pt-Medium.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/Inter_18pt-SemiBold.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/Inter_18pt-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/Inter_18pt-ExtraBold.ttf') format('truetype');
}

/* ── CSS Variables ── */

:root {
  --cream:        #F6F0DC;
  --green-mid:    #166C53;
  --green-deep:   #004638;
  --cream-60:     #f9f4e9;
  --cream-20:     #fdfcf7;
  --green-mid-20: rgba(22, 108, 83, 0.12);
  --green-mid-60: rgba(22, 108, 83, 0.6);
  --charcoal:     #1a1a1a;
  --warm-grey:    #5a5a5a;
  --white:        #ffffff;
  --radius:       12px;
  --radius-lg:    18px;
  --radius-pill:  100px;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width:    1160px;
  --section-pad-y: 96px;
  --section-pad-x: 52px;
}

/* ── Reset ── */

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--cream-20);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.5;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }

/* Grain texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

/* ── Page Loader ── */

.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--cream-20);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: loaderExit 0.6s ease-in-out 1.8s forwards;
}

.loader-logo {
  height: 100px;
  width: auto;
  object-fit: contain;
  animation: loaderFadeIn 0.6s ease-out 0.2s forwards,
             loaderFadeOut 0.4s ease-in 1.3s forwards;
  opacity: 0;
}

@keyframes loaderFadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes loaderFadeOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-16px); }
}

@keyframes loaderExit {
  from { transform: translateY(0); }
  to   { transform: translateY(-100%); pointer-events: none; }
}

.loader.done {
  display: none;
}

/* ── Image Placeholder Fallback ── */

.img-placeholder {
  background: var(--green-mid-20);
  min-height: 200px;
  object-fit: cover;
}

.img-missing {
  position: relative;
  background: linear-gradient(135deg, var(--cream) 0%, var(--green-mid-20) 100%);
  color: var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-missing::after {
  content: 'H';
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 800;
  opacity: 0.15;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ── Custom Cursor ── */

.cursor-dot,
.cursor-circle {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  border-radius: 50%;
  mix-blend-mode: difference;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--cream);
}

.cursor-circle {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(246, 240, 220, 0.4);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}

.cursor-circle.hovering {
  width: 60px;
  height: 60px;
  border-color: rgba(246, 240, 220, 0.6);
}


/* ══════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════ */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--section-pad-x);
  height: 70px;
  background: var(--green-deep);
  transition: height var(--transition), background var(--transition), backdrop-filter var(--transition);
}

nav.nav--scrolled {
  height: 60px;
  background: rgba(0, 70, 56, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav-logo img {
  height: 36px;
  display: block;
  transition: height var(--transition);
}

nav.nav--scrolled .nav-logo img { height: 30px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: rgba(246, 240, 220, 0.75);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--cream); }

.nav-cta {
  background: var(--cream) !important;
  color: var(--green-deep) !important;
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700 !important;
  font-size: 14px !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
  background: var(--white) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 14px 10px;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ══════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  padding: 110px 32px 80px;
  gap: 40px;
  background: var(--cream-20);
  position: relative;
  overflow: hidden;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-mid-20);
  color: var(--green-mid);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green-mid);
  border-radius: 50%;
}

.hero-h1 {
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--green-deep);
  margin-bottom: 24px;
}

.hero-h1 .accent {
  color: var(--green-mid);
  position: relative;
  display: inline-block;
}

.hero-h1 .accent::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 3px;
  background: var(--cream);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-h1 .accent.drawn::after { transform: scaleX(1); }

.hero-tagline {
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 400;
  font-style: normal;
  color: var(--green-mid);
  margin-bottom: 20px;
  margin-top: -12px;
  letter-spacing: 0.5px;
}

.hero-sub {
  font-size: 17px;
  font-weight: 400;
  color: var(--warm-grey);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-tel {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 13px;
  color: var(--warm-grey);
}

.hero-tel a { color: var(--green-mid); font-weight: 600; }

/* Shared buttons */
.btn-primary {
  display: inline-block;
  background: var(--green-deep);
  color: var(--cream);
  padding: 15px 34px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.2px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(0, 70, 56, 0.2);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 70, 56, 0.3);
}

.btn-ghost-dark {
  color: var(--green-deep);
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 15px 4px;
  transition: gap var(--transition);
}

.btn-ghost-dark:hover { gap: 12px; }
.btn-ghost-dark::after { content: '\2192'; font-size: 17px; }

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-wrap { width: 100%; max-width: 600px; }

.hero-img-wrap--large { max-width: 720px; }

.hero-img-wrap img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 40px 100px rgba(0, 70, 56, 0.2);
  object-fit: cover;
}

/* Stat floaters */
.stat-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.stat-float-1 { bottom: -16px; left: -24px; }
.stat-float-2 { top: 18px; right: -28px; }

.stat-number {
  font-size: 20px;
  font-weight: 800;
  color: var(--green-deep);
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 11px;
  color: var(--warm-grey);
  font-weight: 500;
}


/* ══════════════════════════════════════════════════
   LOGOS STRIP
   ══════════════════════════════════════════════════ */

.logos-strip {
  background: var(--white);
  padding: 32px var(--section-pad-x);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logos-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #aaa;
  margin-bottom: 20px;
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.logo-chip {
  font-size: 14px;
  font-weight: 700;
  color: #bbb;
  letter-spacing: -0.3px;
  transition: color var(--transition);
}

.logo-chip:hover { color: var(--green-deep); }


/* ══════════════════════════════════════════════════
   SHARED SECTION STYLES
   ══════════════════════════════════════════════════ */

.section { padding: var(--section-pad-y) var(--section-pad-x); }
.section-inner { max-width: var(--max-width); margin: 0 auto; }

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green-mid);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--green-deep);
  margin-bottom: 14px;
}

.section-sub {
  font-size: 16px;
  color: var(--warm-grey);
  line-height: 1.7;
  max-width: 520px;
}

.section-sub a {
  color: var(--green-mid);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ══════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════ */

.how-section {
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}

.how-section::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(22, 108, 83, 0.3), transparent 70%);
  top: -100px; right: -50px;
  pointer-events: none;
}

.how-section .section-tag { color: rgba(246, 240, 220, 0.5); }
.how-section .section-title { color: var(--cream); }
.how-section .section-sub { color: rgba(246, 240, 220, 0.6); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.step-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 36px 28px;
  position: relative;
  transition: background var(--transition);
}

.step-card:hover { background: rgba(255, 255, 255, 0.09); }

.step-n {
  font-size: 56px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  position: absolute;
  top: 16px; right: 20px;
  letter-spacing: -2px;
}

.step-icon {
  width: 48px; height: 48px;
  background: var(--green-mid);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--cream);
}

.step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 13px;
  color: rgba(246, 240, 220, 0.55);
  line-height: 1.65;
}


/* ══════════════════════════════════════════════════
   BENEFITS
   ══════════════════════════════════════════════════ */

.benefits-section { background: var(--cream-20); }

.benefits-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: start;
  margin-top: 16px;
}

.benefit-list { list-style: none; }

.benefit-item {
  display: flex;
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(0, 70, 56, 0.08);
}

.benefit-item:last-child { border-bottom: none; }

.bcheck {
  width: 26px; height: 26px;
  background: var(--green-mid-20);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-mid);
  font-size: 12px;
  font-weight: 800;
}

.btext strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 4px;
}

.btext span {
  font-size: 13px;
  color: var(--warm-grey);
  line-height: 1.6;
}

.benefits-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.btile {
  background: var(--white);
  border-radius: 16px;
  padding: 26px 22px;
  border: 1px solid rgba(0, 70, 56, 0.07);
  transition: transform var(--transition), box-shadow var(--transition);
  min-height: 186px;
  display: flex;
  flex-direction: column;
}

.btile:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 70, 56, 0.08);
}

.btile-icon { font-size: 26px; margin-bottom: 12px; }
.btile-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--green-deep); }
.btile-desc { font-size: 12px; color: var(--warm-grey); line-height: 1.6; }


/* ══════════════════════════════════════════════════
   IMAGE BREAK
   ══════════════════════════════════════════════════ */

.image-break {
  padding: 0 var(--section-pad-x);
  background: var(--cream-20);
}

.image-break-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 70, 56, 0.12);
}

.image-break-inner img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}


/* ══════════════════════════════════════════════════
   VALUE DRIVERS — Parallax Scroll
   ══════════════════════════════════════════════════ */

.value-section {
  background: var(--cream);
  padding: var(--section-pad-y) var(--section-pad-x) 0;
  position: relative;
  overflow: hidden;
}

.value-section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-bottom: 40px;
}

.value-track {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  padding-bottom: 80px;
}

.value-driver {
  position: relative;
  width: 46%;
  left: var(--offset, 5%);
  margin-bottom: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid rgba(0, 70, 56, 0.06);
  box-shadow: 0 8px 40px rgba(0, 70, 56, 0.06);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.5s ease;
  will-change: transform;
  overflow: hidden;
}

/* Green accent line that draws in when active */
.value-driver::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green-mid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Active state: card is in the centre of the viewport */
.value-driver.vd-active {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 24px 64px rgba(0, 70, 56, 0.14);
  border-color: rgba(0, 70, 56, 0.12);
}

.value-driver.vd-active::before {
  transform: scaleX(1);
}

.value-driver.vd-active .vd-number {
  color: rgba(22, 108, 83, 0.1);
  transition: color 0.5s ease;
}

.value-driver:hover {
  box-shadow: 0 20px 60px rgba(0, 70, 56, 0.14);
}

.vd-number {
  font-size: 64px;
  font-weight: 900;
  color: rgba(0, 70, 56, 0.04);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 24px;
  letter-spacing: -3px;
}

.vd-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--green-deep);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.vd-desc {
  font-size: 14px;
  color: var(--warm-grey);
  line-height: 1.7;
}


/* ══════════════════════════════════════════════════
   SECTORS
   ══════════════════════════════════════════════════ */

.sectors-section { background: var(--cream); }

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.sector-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  cursor: default;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  position: relative;
  overflow: hidden;
}

.sector-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green-deep);
  opacity: 0;
  transition: opacity var(--transition);
}

.sector-card:hover::before { opacity: 1; }
.sector-card:hover .sector-name,
.sector-card:hover .sector-desc { color: var(--cream); }
.sector-card:hover .sector-icon-wrap { background: rgba(246, 240, 220, 0.15); color: var(--cream); }
.sector-card:hover .sector-icon-wrap svg { stroke: var(--cream); }
.sector-card:hover { transform: translateY(-5px); box-shadow: 0 20px 56px rgba(0, 70, 56, 0.22); }

.sector-icon-wrap {
  display: none;
}

.sector-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--green-deep);
  position: relative;
  z-index: 1;
  transition: color var(--transition);
}

.sector-desc {
  font-size: 13px;
  color: var(--warm-grey);
  line-height: 1.65;
  position: relative;
  z-index: 1;
  transition: color var(--transition);
}


/* ══════════════════════════════════════════════════
   FOOD
   ══════════════════════════════════════════════════ */

.food-section { background: var(--cream-20); }

.food-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
}

/* ── Flip Tile Grid ── */

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

.flip-tile {
  perspective: 800px;
  aspect-ratio: 1;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
}

.flip-tile.flipped .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.flip-front {
  background: var(--white);
  border: 1px solid rgba(0, 70, 56, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.flip-front img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.flip-back {
  background: var(--green-deep);
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.flip-back span {
  color: var(--cream);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.3px;
  line-height: 1.3;
}


/* ══════════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════════ */

.pricing-section { background: var(--cream); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 2px solid transparent;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.price-card:hover {
  border-color: var(--green-mid);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 70, 56, 0.1);
}

.price-card.featured {
  background: var(--green-deep);
  border-color: var(--green-deep);
}

.price-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--green-mid);
  color: var(--cream);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.price-tier {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #aaa;
  margin-bottom: 12px;
}

.price-card.featured .price-tier { color: rgba(246, 240, 220, 0.5); }

.price-headline {
  font-size: 22px;
  font-weight: 800;
  color: var(--green-deep);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.price-card.featured .price-headline { color: var(--cream); }

.price-desc {
  font-size: 13px;
  color: var(--warm-grey);
  line-height: 1.65;
  margin-bottom: 24px;
}

.price-card.featured .price-desc { color: rgba(246, 240, 220, 0.65); }

.price-feats { list-style: none; margin-bottom: 32px; }

.price-feats li {
  font-size: 13px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-card.featured .price-feats li { color: rgba(246, 240, 220, 0.8); border-color: rgba(255, 255, 255, 0.08); }

.price-feats li::before {
  content: '\2713';
  font-weight: 800;
  color: var(--green-mid);
  font-size: 12px;
  flex-shrink: 0;
}

.price-card.featured .price-feats li::before { color: rgba(246, 240, 220, 0.6); }

.price-btn {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  border: 2px solid var(--green-mid-20);
  color: var(--green-deep);
  transition: all var(--transition);
}

.price-btn:hover {
  background: var(--green-mid);
  color: var(--cream);
  border-color: var(--green-mid);
  transform: translateY(-1px);
}

.price-card.featured .price-btn {
  background: var(--cream);
  color: var(--green-deep);
  border-color: var(--cream);
}

.price-card.featured .price-btn:hover { background: var(--white); }


/* ══════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════ */

.testi-section { background: var(--cream-20); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(0, 70, 56, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.testi-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 70, 56, 0.08);
}

.testi-stars {
  color: #f5a623;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testi-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--charcoal);
  font-style: italic;
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-mid-20);
  color: var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.testi-name { font-size: 14px; font-weight: 700; color: var(--green-deep); }
.testi-role { font-size: 12px; color: var(--warm-grey); }


/* ══════════════════════════════════════════════════
   SUSTAINABILITY
   ══════════════════════════════════════════════════ */

.sustain-section {
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}

.sustain-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(22, 108, 83, 0.25), transparent 70%);
  bottom: -200px; left: -100px;
  pointer-events: none;
}

.sustain-section .section-tag { color: rgba(246, 240, 220, 0.45); }
.sustain-section .section-title { color: var(--cream); }
.sustain-section .section-sub { color: rgba(246, 240, 220, 0.6); }

.sustain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.sustain-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition), transform var(--transition);
}

.sustain-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.sustain-title { font-size: 15px; font-weight: 700; color: var(--cream); margin-bottom: 6px; }
.sustain-desc { font-size: 13px; color: rgba(246, 240, 220, 0.55); line-height: 1.65; }

/* Sustainability stats row */
.sustain-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 36px;
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.sustain-stat {
  background: rgba(255, 255, 255, 0.04);
  padding: 36px 28px;
  text-align: center;
  transition: background var(--transition);
}

.sustain-stat:hover { background: rgba(255, 255, 255, 0.08); }

.sustain-stat-num {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--cream);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
}

.sustain-stat-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
}

.sustain-stat-context {
  font-size: 12px;
  color: rgba(246, 240, 220, 0.45);
  line-height: 1.5;
}


/* ══════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════ */

.faq-section { background: var(--cream); }

.faq-layout {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 80px;
  align-items: start;
}

.faq-left { position: sticky; top: 100px; }

.faq-list { display: flex; flex-direction: column; }

.faq-item { border-bottom: 1px solid rgba(0, 70, 56, 0.08); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--green-deep);
  text-align: left;
  transition: color var(--transition);
}

.faq-q:hover { color: var(--green-mid); }
.faq-q-text { flex: 1; padding-right: 16px; }

.faq-icon {
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 300;
  color: var(--green-mid);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-ans {
  font-size: 14px;
  color: var(--warm-grey);
  line-height: 1.75;
  padding-bottom: 20px;
  overflow: hidden;
  height: 0;
  opacity: 0;
}


/* ══════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════ */

.contact-section {
  background: var(--green-deep);
  padding: var(--section-pad-y) var(--section-pad-x);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(22, 108, 83, 0.3), transparent);
  pointer-events: none;
}

.contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-left h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--cream);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.contact-left p {
  font-size: 16px;
  color: rgba(246, 240, 220, 0.65);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-detail a {
  color: rgba(246, 240, 220, 0.75);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}

.contact-detail a:hover { color: var(--cream); }
.contact-icon { display: flex; align-items: center; }

.contact-form-wrap {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 36px;
}

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

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

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(246, 240, 220, 0.6);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: var(--cream);
  font-size: 14px;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(246, 240, 220, 0.3); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  background: rgba(255, 255, 255, 0.1);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23F6F0DC' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option { background: var(--green-deep); color: var(--cream); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; margin-top: 8px; }

.form-success {
  text-align: center;
  padding: 40px 20px;
  color: var(--cream);
}

.form-success h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.form-success p { font-size: 14px; color: rgba(246, 240, 220, 0.65); }

/* Validation */
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
  border-color: #e74c3c;
}

.form-error {
  font-size: 11px;
  color: #e74c3c;
  margin-top: 4px;
}

.btn-primary.loading {
  opacity: 0.7;
  pointer-events: none;
}


/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */

footer {
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.5);
  padding: 64px var(--section-pad-x) 32px;
}

.footer-inner { max-width: var(--max-width); margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo img { height: 30px; margin-bottom: 16px; display: block; }

.footer-desc {
  font-size: 13px;
  line-height: 1.75;
  max-width: 240px;
  margin-bottom: 20px;
}

.footer-contact a {
  color: var(--green-mid);
  font-size: 13px;
  font-weight: 600;
  display: block;
  line-height: 2;
  transition: color var(--transition);
}

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

.footer-col-title {
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
}

.footer-links li { margin-bottom: 8px; }

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition);
}

.footer-bottom a:hover { color: rgba(255, 255, 255, 0.7); }

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