/* ==========================================================================
   PRATIK GLOBAL — Design System
   Deep forest green + cream + antique gold. Editorial B2B export identity.
   Signature motif: the "manifest" — grade codes, stamps, and dotted trade
   routes treated like shipping documentation, since the real content
   (W180/W240/W320...) already reads like a spec sheet.
   ========================================================================== */

:root {
  /* Color */
  --forest-dark: #12261E;
  --forest: #1B3A2F;
  --forest-light: #2E5745;
  --cream: #F6F1E6;
  --cream-deep: #EFE7D6;
  --beige: #E9DFC7;
  --white: #FFFFFF;
  --gold: #B08D57;
  --gold-light: #D4B98C;
  --ink: #1C2420;
  --ink-soft: #4A564E;
  --line: rgba(28, 36, 32, 0.12);
  --line-on-dark: rgba(246, 241, 230, 0.18);

  /* Type */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Scale */
  --container: 1200px;
  --radius-s: 2px;
  --radius-m: 3px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }
svg { display: block; }

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

section { position: relative; }

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--forest-dark);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 16px;
}
.section-head p {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 560px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head.center p { margin-left: auto; margin-right: auto; }

.on-dark h2, .on-dark h3, .on-dark h4 { color: var(--cream); }
.on-dark .section-head p { color: rgba(246,241,230,0.72); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: var(--radius-s);
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn svg { width: 14px; height: 14px; flex-shrink: 0; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--gold);
  color: var(--forest-dark);
}
.btn-primary:hover { background: var(--gold-light); }

.btn-outline {
  background: transparent;
  color: var(--forest-dark);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--forest-dark); }

.btn-outline-dark {
  background: transparent;
  color: var(--cream);
  border-color: var(--line-on-dark);
}
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold-light); }

.btn-whatsapp {
  background: var(--forest);
  color: var(--cream);
}
.btn-whatsapp:hover { background: var(--forest-light); }

.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(246, 241, 230, 0.88);
  backdrop-filter: blur(10px) saturate(1.1);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}
.brand .logo-img {
  height: 52px;
  width: auto;
  flex-shrink: 0;
}
.brand .brand-text {
  display: flex;
  flex-direction: column;
}
.brand .mark {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--forest-dark);
}
.brand .tagline {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 5px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s var(--ease);
}
.main-nav a:hover { color: var(--forest-dark); }
.main-nav a:hover::after { right: 0; }

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 600;
}
.hamburger span {
  width: 24px; height: 1.5px;
  background: var(--forest-dark);
  transition: transform 0.3s var(--ease), opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--forest-dark);
  z-index: 400;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  transform: translateY(-100%);
  transition: transform 0.45s var(--ease);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--cream);
  padding: 14px 0;
  border-bottom: 1px solid var(--line-on-dark);
}
.mobile-nav .mobile-cta { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }

/* ---------- Hero ---------- */

.hero {
  padding: 168px 0 96px;
  background:
    radial-gradient(circle at 82% 8%, rgba(176,141,87,0.10), transparent 45%),
    var(--cream);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(38px, 5.4vw, 64px);
  margin-bottom: 24px;
}
.hero-copy .lede {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-meta {
  display: flex;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-meta .item { font-family: var(--font-mono); font-size: 12px; color: var(--ink-soft); }
.hero-meta .item strong {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--forest-dark);
  margin-bottom: 4px;
}

.hero-visual { position: relative; }
.hero-visual .frame {
  position: relative;
  border: 1px solid var(--line);
  padding: 14px;
  background: var(--white);
}
.hero-visual .photo-box {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3.4;
  overflow: hidden;
}
.hero-visual .photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-visual .corner-mark {
  position: absolute;
  bottom: 14px; left: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--forest-dark);
  padding: 6px 12px;
  z-index: 2;
}
.hero-visual .stamp {
  position: absolute;
  top: -18px; right: -8px;
  z-index: 3;
  background: var(--cream);
  border-radius: 50%;
}

/* ---------- Trust bar ---------- */

.trust-bar {
  background: var(--forest-dark);
  padding: 40px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-on-dark);
  border: 1px solid var(--line-on-dark);
}
.trust-item {
  background: var(--forest-dark);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-item svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }
.trust-item span {
  font-size: 13.5px;
  color: var(--cream);
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ---------- About ---------- */

.about { padding: 120px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: start;
}
.about-visual {
  position: sticky;
  top: 120px;
}
.about-visual .photo-box {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 6;
  overflow: hidden;
  background: var(--forest-dark);
}
.about-visual .photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy p {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  max-width: 560px;
}
.about-copy p.lead {
  font-size: 19px;
  color: var(--ink);
  font-weight: 500;
}
.about-points {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
}
.about-points li {
  font-size: 14.5px;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.about-points li::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  transform: translateY(-3px);
}

/* ---------- Products ---------- */

.products { padding: 120px 0; background: var(--white); }

.manifest-strip {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 10px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.product-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: background 0.3s ease;
}
.product-card:hover { background: var(--cream); }

.product-card .photo-box {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.product-card .photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.product-card:hover .photo-box img { transform: scale(1.04); }
.product-card .photo-box .grade-tag {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--cream);
  background: rgba(18,38,30,0.82);
  padding: 5px 11px;
}

.product-card .card-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card .grade-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}
.product-card .grade {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 500;
  color: var(--forest-dark);
  letter-spacing: -0.02em;
}
.product-card .kernel-icon { width: 26px; height: 26px; color: var(--gold); opacity: 0.85; }

.product-card .cat {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.product-card .desc {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 20px;
  flex-grow: 1;
}
.product-card .usage {
  font-size: 12px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-bottom: 20px;
}
.product-card .usage strong { color: var(--ink); display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--font-mono); margin-bottom: 5px; font-weight: 500; }

.product-card .product-cta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}
.product-card .product-cta svg { width: 12px; height: 12px; transition: transform 0.3s var(--ease); }
.product-card:hover .product-cta svg { transform: translateX(3px); }

.product-note {
  margin-top: 48px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  padding: 26px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.product-note p { font-size: 15px; color: var(--ink); max-width: 560px; }

/* ---------- Quality ---------- */

.quality { padding: 120px 0; background: var(--forest-dark); }
.quality-body {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 56px;
  align-items: stretch;
}
.quality-visual .photo-box {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 360px;
  overflow: hidden;
}
.quality-visual .photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quality-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-on-dark);
}
.quality-item {
  background: var(--forest-dark);
  padding: 34px 28px;
}
.quality-item .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}
.quality-item h4 {
  color: var(--cream);
  font-size: 19px;
  margin-bottom: 10px;
}
.quality-item p {
  font-size: 14px;
  color: rgba(246,241,230,0.66);
}

/* ---------- Packaging ---------- */

.packaging { padding: 120px 0; }
.packaging-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.packaging-copy p { font-size: 16px; color: var(--ink-soft); margin-bottom: 20px; }
.packaging-options { margin-top: 32px; display: flex; flex-direction: column; gap: 0; }
.packaging-options .opt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
}
.packaging-options .opt:last-child { border-bottom: 1px solid var(--line); }
.packaging-options .opt span:first-child { color: var(--ink); font-weight: 500; }
.packaging-options .opt span:last-child {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-light);
  padding: 4px 10px;
  border-radius: 20px;
}
.packaging-visual { position: relative; }
.packaging-visual .photo-box {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 3.6;
  overflow: hidden;
  border: 1px solid var(--line);
}
.packaging-visual .photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.packaging-visual .accent-box {
  position: absolute;
  bottom: -28px; left: -28px;
  width: 44%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 4px solid var(--cream);
  box-shadow: 0 16px 34px rgba(18,38,30,0.22);
  z-index: 2;
}
.packaging-visual .accent-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Export Markets ---------- */

.markets { padding: 120px 0; background: var(--beige); }
.markets-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.market-list { display: flex; flex-direction: column; }
.market-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 4px;
  border-top: 1px solid var(--line);
}
.market-row:last-child { border-bottom: 1px solid var(--line); }
.market-row .name {
  font-family: var(--font-display);
  font-size: 21px;
  color: var(--forest-dark);
}
.market-row .code {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
}
.markets-note {
  margin-top: 36px;
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 480px;
}
.markets-note strong { color: var(--forest-dark); }

/* ---------- Why ---------- */

.why { padding: 120px 0; background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.why-card {
  background: var(--white);
  padding: 36px 30px;
  transition: background 0.3s ease;
}
.why-card:hover { background: var(--cream); }
.why-card svg { width: 26px; height: 26px; color: var(--gold); margin-bottom: 22px; }
.why-card h4 { font-size: 18px; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--ink-soft); }

/* ---------- Export Process ---------- */

.process { padding: 120px 0; background: var(--forest); }
.process-track { display: flex; flex-direction: column; }
.process-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 26px 0;
  border-top: 1px solid var(--line-on-dark);
  align-items: baseline;
}
.process-row:last-child { border-bottom: 1px solid var(--line-on-dark); }
.process-row .num {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--gold-light);
}
.process-row h4 { color: var(--cream); font-size: 18px; margin-bottom: 6px; font-family: var(--font-body); font-weight: 600; }
.process-row p { color: rgba(246,241,230,0.66); font-size: 14.5px; max-width: 620px; }

/* ---------- Contact ---------- */

.contact { padding: 120px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}
.contact-info .lede { font-size: 16px; color: var(--ink-soft); margin-bottom: 40px; max-width: 420px; }
.contact-detail {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.contact-detail:last-of-type { border-bottom: 1px solid var(--line); }
.contact-detail .label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-detail a, .contact-detail span.val { font-size: 16px; color: var(--forest-dark); font-weight: 500; }
.contact-detail a:hover { color: var(--gold); }

.contact-info .btn { margin-top: 32px; }

.enquiry-form {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.field label .req { color: var(--gold); }
.field input, .field select, .field textarea {
  border: 1px solid var(--line);
  background: var(--cream);
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink);
  border-radius: var(--radius-s);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  outline: none;
}
.field textarea { resize: vertical; min-height: 110px; }

.form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.form-note { font-size: 12.5px; color: var(--ink-soft); max-width: 320px; }

.form-success {
  text-align: center;
  padding: 56px 24px;
}
.form-success svg { width: 44px; height: 44px; color: var(--gold); margin: 0 auto 20px; }
.form-success h3 { font-size: 22px; margin-bottom: 10px; }
.form-success p { color: var(--ink-soft); font-size: 15px; }

.thanks-page {
  padding: 168px 0 100px;
  min-height: 60vh;
}
.thanks-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 12px;
  text-align: center;
}
.thanks-card .form-success { padding: 48px 32px; }
.thanks-card .detail-row {
  border-top: 1px solid var(--line);
  padding: 22px 32px 4px;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.thanks-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--forest-dark);
  padding: 80px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line-on-dark);
}
.footer-brand .logo-plate {
  display: inline-block;
  background: var(--cream);
  padding: 12px 16px;
  margin-bottom: 18px;
  line-height: 0;
}
.footer-brand .logo-img { height: 46px; width: auto; display: block; }
.footer-brand .mark { font-family: var(--font-display); font-size: 24px; color: var(--cream); margin-bottom: 10px; }
.footer-brand .tagline { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-brand p { font-size: 13.5px; color: rgba(246,241,230,0.55); max-width: 260px; }

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-col a, .footer-col span { font-size: 14px; color: rgba(246,241,230,0.72); }
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12.5px; color: rgba(246,241,230,0.5); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12.5px; color: rgba(246,241,230,0.5); }
.footer-legal a:hover { color: var(--gold-light); }

/* ---------- WhatsApp float ---------- */

.wa-float {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 300;
  width: 56px; height: 56px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(18,38,30,0.35);
  transition: transform 0.35s var(--ease), background 0.25s ease;
}
.wa-float:hover { transform: translateY(-3px) scale(1.05); background: var(--forest-light); }
.wa-float svg { width: 26px; height: 26px; color: var(--cream); }

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Legal pages ---------- */

.legal-page { padding: 160px 0 100px; max-width: 760px; margin: 0 auto; }
.legal-page h1 { font-size: 36px; margin-bottom: 8px; }
.legal-page .updated { font-family: var(--font-mono); font-size: 12px; color: var(--ink-soft); margin-bottom: 40px; }
.legal-page h2 { font-size: 20px; margin-top: 40px; margin-bottom: 14px; }
.legal-page p, .legal-page li { font-size: 15.5px; color: var(--ink-soft); margin-bottom: 14px; }
.legal-page ul { padding-left: 20px; list-style: disc; }
.legal-page a.back { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--forest); display: inline-block; margin-bottom: 40px; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-grid, .about-grid, .packaging-grid, .markets-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-visual { position: static; order: -1; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .quality-body { grid-template-columns: 1fr; }
  .quality-visual .photo-box { min-height: 260px; }
  .footer-top { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .packaging-visual { margin-top: 56px; max-width: 420px; }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .header-actions .btn-outline { display: none; }
  .hamburger { display: flex; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .hero { padding: 128px 0 64px; }
  .hero-copy h1 { font-size: 34px; }
  .trust-grid { grid-template-columns: 1fr; }
  .product-grid, .why-grid, .quality-list { grid-template-columns: 1fr; }
  .about-visual .photo-box { aspect-ratio: 4 / 3; }
  .packaging-visual .accent-box { width: 38%; bottom: -18px; left: -14px; }
  .brand .logo-img { height: 40px; }
  .about, .products, .quality, .packaging, .markets, .why, .process, .contact { padding: 76px 0; }
  .form-row { grid-template-columns: 1fr; }
  .enquiry-form { padding: 26px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .section-head { margin-bottom: 40px; }
  .process-row { grid-template-columns: 50px 1fr; }
  .hero-meta { gap: 24px; }
  .product-note { flex-direction: column; align-items: flex-start; }
  .wa-float { bottom: 18px; right: 18px; width: 52px; height: 52px; }
}
