/* ==========================================================================
   PRO COMMODITIES — Main stylesheet
   Design system: editorial trading house · earth tones · golden hour
   ========================================================================== */

/* --------------------------------------------------------------------------
   Reset + base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
  /* Brand colours */
  --green: #2D3B2A;
  --green-deep: #1F2A1C;
  --green-mid: #3D4A37;
  --gold: #C9A35C;
  --gold-deep: #A88445;
  --cream: #F7F3EC;
  --cream-deep: #EDE7DA;
  --ink: #1F1F1F;
  --muted: #6B6B6B;
  --clay: #A88B6B;
  --line: rgba(45, 59, 42, 0.12);
  --line-dark: rgba(45, 59, 42, 0.20);

  /* Typography */
  --font-head: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(20px, 5vw, 48px);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--green);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
h1 { font-size: clamp(38px, 5.5vw, 68px); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(28px, 3.5vw, 44px); }
h3 { font-size: clamp(20px, 2vw, 26px); font-weight: 500; }
h4 { font-size: 16px; font-weight: 600; }

p { font-family: var(--font-body); }
.lead { font-size: clamp(17px, 1.5vw, 21px); line-height: 1.55; color: var(--ink); }
.eyebrow {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 16px;
}
.eyebrow.gold { color: var(--gold); }

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section { padding: clamp(60px, 9vw, 130px) 0; }
.section-tight { padding: clamp(40px, 6vw, 80px) 0; }

/* --------------------------------------------------------------------------
   Header / nav
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 0;
  transition: background 0.3s, padding 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(247, 243, 236, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 22px 0;
  border-bottom-color: var(--line);
}
.site-header.over-hero { background: transparent; }
.site-header.over-hero .nav-link,
.site-header.over-hero .nav-cta-text { color: var(--cream); }
.site-header.over-hero .lang-switch a { color: var(--cream); }
.site-header.over-hero .lang-switch a.active { color: var(--gold); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-logo { display: block; }
.site-logo img { height: 52px; width: auto; }
@media (max-width: 880px) {
  .site-logo img { height: 42px; }
}
@media (max-width: 600px) {
  .site-logo img { height: 34px; }
}
.site-header.over-hero .logo-color { display: none; }
.site-header.over-hero .logo-white { display: block; }
.logo-white { display: none; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-list {
  display: flex;
  list-style: none;
  gap: 28px;
}
.nav-link {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.2px;
  position: relative;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--green); }
.nav-link.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--gold);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}
.lang-switch a {
  color: var(--muted);
  padding: 4px 6px;
  transition: color 0.2s;
}
.lang-switch a.active { color: var(--green); }
.lang-switch span { color: var(--line-dark); }

.nav-cta {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
  background: var(--green);
  padding: 12px 24px;
  border-radius: 2px;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--green-deep); transform: translateY(-1px); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  width: 32px;
  height: 32px;
  padding: 0;
  position: relative;
  background: transparent;
  border: 0;
  cursor: pointer;
  z-index: 102;
}
.menu-toggle span {
  position: absolute; left: 4px; right: 4px;
  height: 2px; background: var(--ink);
  transition: 0.25s ease;
}
.menu-toggle span:nth-child(1) { top: 10px; }
.menu-toggle span:nth-child(2) { top: 16px; }
.menu-toggle span:nth-child(3) { top: 22px; }
.site-header.over-hero .menu-toggle span { background: var(--cream); }

/* Animate to "X" when open */
.mobile-open .menu-toggle span:nth-child(1) {
  top: 16px; transform: rotate(45deg);
}
.mobile-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}
.mobile-open .menu-toggle span:nth-child(3) {
  top: 16px; transform: rotate(-45deg);
}

@media (max-width: 880px) {
  .menu-toggle { display: block; }
  .site-nav { gap: 12px; }

  /* Slightly less padding on mobile since CTA is no longer in header */
  .site-header { padding: 16px 0; }
  .site-header.scrolled { padding: 12px 0; }

  /* Default state: hide nav-list, lang-switch and CTA on mobile (CTA moves to bottom bar) */
  .nav-list, .lang-switch, .nav-cta { display: none; }

  /* When mobile menu is open: full-screen overlay with deep green background */
  .site-header.mobile-open {
    background: var(--green-deep);
    border-bottom: 1px solid var(--green-mid);
  }
  .site-header.mobile-open .logo-color { display: none; }
  .site-header.mobile-open .logo-white { display: block; }
  .site-header.mobile-open .menu-toggle span { background: var(--cream); }

  .site-header.mobile-open .nav-list {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px; left: 0; right: 0; bottom: 64px;
    background: var(--green-deep);
    padding: 32px var(--gutter);
    gap: 0;
    z-index: 101;
    overflow-y: auto;
  }
  .site-header.mobile-open .nav-list li {
    border-bottom: 1px solid var(--green-mid);
  }
  .site-header.mobile-open .nav-list a {
    display: block;
    padding: 18px 0;
    font-size: 18px;
    color: var(--cream);
  }
  .site-header.mobile-open .nav-list a.active {
    color: var(--gold);
  }

  /* Larger logo on mobile (extra room since CTA moved to bottom) */
  .site-logo img { height: 56px; }

  /* Lock body scroll when menu open */
  body.menu-locked { overflow: hidden; }
}

/* Mobile bottom action bar — visible on mobile, contains lang switch + CTA */
.mobile-bottom-bar {
  display: none;
}
@media (max-width: 880px) {
  .mobile-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--green-deep);
    border-top: 1px solid var(--green-mid);
    padding: 12px 16px;
    gap: 12px;
    align-items: center;
    z-index: 99;
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.08);
  }
  .mobile-bottom-bar .lang-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 14px;
    background: transparent;
    border: 1px solid var(--green-mid);
    border-radius: 2px;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    flex-shrink: 0;
  }
  .mobile-bottom-bar .lang-pill a {
    color: var(--cream-deep);
    transition: color 0.2s;
    padding: 0 2px;
  }
  .mobile-bottom-bar .lang-pill a.active {
    color: var(--gold);
  }
  .mobile-bottom-bar .lang-pill span {
    color: var(--green-mid);
  }
  .mobile-bottom-bar .bottom-cta {
    flex: 1;
    text-align: center;
    background: var(--gold);
    color: var(--green-deep);
    padding: 14px 20px;
    border-radius: 2px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background 0.2s;
  }
  .mobile-bottom-bar .bottom-cta:hover,
  .mobile-bottom-bar .bottom-cta:active {
    background: var(--gold-deep);
  }

  /* Add bottom padding to body so bottom bar doesn't cover content */
  body { padding-bottom: 72px; }

  /* Push cookie banner up so it doesn't overlap with bottom bar */
  .cookie-banner {
    bottom: 80px !important;
  }

  /* Same for success toast on mobile */
  .success-toast {
    bottom: 88px !important;
  }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  padding-top: 120px;
  color: var(--cream);
  overflow: hidden;
  background-color: var(--green-deep);
}
.hero-page {
  min-height: 70vh;
  min-height: 70svh;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(31, 42, 28, 0.35) 0%,
    rgba(31, 42, 28, 0.1) 30%,
    rgba(31, 42, 28, 0.55) 75%,
    rgba(31, 42, 28, 0.85) 100%
  );
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 880px;
}
.hero h1 { color: var(--cream); margin-bottom: 24px; }
.hero .lead { color: var(--cream-deep); max-width: 720px; margin-bottom: 36px; }
.hero .eyebrow { color: var(--gold); }

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-size: 14px; font-weight: 600;
  padding: 16px 28px;
  border-radius: 2px;
  letter-spacing: 0.5px;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--green); }
.btn-primary:hover { background: var(--cream); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--cream); border: 1px solid rgba(247, 243, 236, 0.3); }
.btn-secondary:hover { background: var(--cream); color: var(--green); border-color: var(--cream); }
.btn-dark { background: var(--green); color: var(--cream); }
.btn-dark:hover { background: var(--green-deep); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--green); border: 1px solid var(--green); }
.btn-outline:hover { background: var(--green); color: var(--cream); }
.btn .arrow { transition: transform 0.25s; }
.btn:hover .arrow { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   Stats strip
   -------------------------------------------------------------------------- */
.stats {
  background: var(--green);
  color: var(--cream);
  padding: 64px 0;
  border-top: 1px solid var(--green-mid);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  text-align: left;
  padding: 0 16px;
  border-left: 1px solid rgba(247, 243, 236, 0.15);
}
.stat:first-child { border-left: none; padding-left: 0; }
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
}
.stat-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream-deep);
}
@media (max-width: 720px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .stat { border-left: none; padding-left: 0; }
}

/* --------------------------------------------------------------------------
   Generic section header
   -------------------------------------------------------------------------- */
.section-head {
  max-width: 760px;
  margin-bottom: 60px;
}
.section-head h2 { margin-bottom: 16px; }
.section-head .lead { color: var(--muted); }

.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* --------------------------------------------------------------------------
   Product cards (used on Home + Services)
   -------------------------------------------------------------------------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 720px) { .products-grid { grid-template-columns: 1fr; } }

.product-card {
  position: relative;
  background: var(--cream-deep);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}
.product-card:hover { transform: translateY(-3px); }
.product-card-image {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  position: relative;
}
.product-card-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(31,42,28,0.4));
}
.product-card-origin {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--green);
  padding: 6px 12px;
  border-radius: 2px;
  z-index: 1;
}
.product-card-body { padding: 28px; }
.product-card h3 {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 500;
}
.product-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.product-card-link::after { content: '→'; transition: transform 0.2s; }
.product-card:hover .product-card-link::after { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   Two-column layout (image + text)
   -------------------------------------------------------------------------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
.two-col.flip { direction: rtl; }
.two-col.flip > * { direction: ltr; }
@media (max-width: 880px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.flip { direction: ltr; }
}
.two-col-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   Feature list (3 columns)
   -------------------------------------------------------------------------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 60px;
}
@media (max-width: 880px) { .features { grid-template-columns: 1fr; gap: 28px; } }
.feature {
  border-top: 2px solid var(--gold);
  padding-top: 24px;
}
.feature h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--green);
}
.feature p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   Process steps
   -------------------------------------------------------------------------- */
.process-bg {
  position: relative;
  color: var(--cream);
  background: var(--green-deep);
  overflow: hidden;
}
.process-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--process-img);
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.process-bg .container { position: relative; z-index: 1; }
.process-bg h2 { color: var(--cream); }
.process-bg .section-head .lead { color: var(--cream-deep); }
.process-bg .eyebrow { color: var(--gold); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  counter-reset: step;
}
@media (max-width: 880px) { .steps { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

.step {
  counter-increment: step;
  border-top: 1px solid rgba(247, 243, 236, 0.2);
  padding-top: 24px;
  position: relative;
}
.step::before {
  content: '0' counter(step);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 16px;
}
.step h3 { color: var(--cream); font-size: 20px; margin-bottom: 10px; }
.step p { color: var(--cream-deep); font-size: 14px; line-height: 1.6; }

/* --------------------------------------------------------------------------
   Closing CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  background: var(--gold);
  color: var(--green-deep);
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 { color: var(--green-deep); margin-bottom: 16px; max-width: 700px; margin-left: auto; margin-right: auto; }
.cta-band p { max-width: 640px; margin: 0 auto 32px; font-size: 17px; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--green-deep);
  color: var(--cream);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(247, 243, 236, 0.1);
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.footer-brand img { height: 52px; margin: 0 0 12px; display: block; }
.footer-brand p {
  color: var(--cream-deep);
  font-style: italic;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li {
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--cream-deep);
  line-height: 1.5;
}
.footer-col a {
  color: var(--cream-deep);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--cream-deep);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a:hover { color: var(--gold); }

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  animation: fadeUp 0.8s ease-out forwards;
}
.reveal-delay-1 { animation-delay: 0.15s; }
.reveal-delay-2 { animation-delay: 0.3s; }
.reveal-delay-3 { animation-delay: 0.45s; }

/* When user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.gold-rule {
  width: 56px;
  height: 3px;
  background: var(--gold);
  border: none;
  margin: 0 0 24px;
}
.gold-rule.center { margin-left: auto; margin-right: auto; }

/* --------------------------------------------------------------------------
   FAQ accordion
   -------------------------------------------------------------------------- */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  border-top: 1px solid var(--line);
  padding: 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 500;
  color: var(--green);
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold-deep); }
.faq-num {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1.5px;
  flex-shrink: 0;
  width: 30px;
}
.faq-q-text { flex: 1; }
.faq-icon {
  width: 24px; height: 24px;
  border: 1px solid var(--green);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.2s;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--green);
  transition: opacity 0.2s;
}
.faq-icon::before {
  top: 50%; left: 6px; right: 6px;
  height: 1.5px; transform: translateY(-50%);
}
.faq-icon::after {
  left: 50%; top: 6px; bottom: 6px;
  width: 1.5px; transform: translateX(-50%);
}
.faq-item.open .faq-icon { transform: rotate(180deg); background: var(--green); }
.faq-item.open .faq-icon::before { background: var(--cream); }
.faq-item.open .faq-icon::after { opacity: 0; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding: 0 0 28px 30px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.75;
  max-width: 760px;
}

/* --------------------------------------------------------------------------
   Contact form
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}
.contact-form .full { grid-column: 1 / -1; }
@media (max-width: 600px) { .contact-form { grid-template-columns: 1fr; } }

.form-field { display: block; }
.form-field label {
  display: block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 8px;
}
.form-field label .req { color: var(--gold-deep); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green);
  background: white;
}
.form-field textarea {
  resize: vertical;
  min-height: 140px;
  font-family: var(--font-body);
}
.form-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%232D3B2A' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-submit {
  margin-top: 4px;
}
.form-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}

.form-checkbox {
  margin-top: 4px;
}

/* Override the .form-field label styling for our checkbox label */
.contact-form .form-field.form-checkbox label.checkbox-label {
  display: flex !important;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--ink) !important;
  margin-bottom: 0 !important;
  user-select: none;
}

/* Hide native checkbox but keep it accessible for screen readers and form submission */
.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
}

/* Custom checkbox visual */
.checkbox-label .checkbox-mark {
  flex-shrink: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--clay);
  border-radius: 3px;
  background: white;
  position: relative;
  transition: background 0.15s, border-color 0.15s;
}

/* The checkmark itself, hidden by default, shown when checkbox is checked */
.checkbox-label .checkbox-mark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.15s;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-mark {
  background: var(--green);
  border-color: var(--green);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-mark::after {
  opacity: 1;
}

/* Focus state for keyboard accessibility */
.checkbox-label input[type="checkbox"]:focus-visible + .checkbox-mark {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.checkbox-label .checkbox-text {
  flex: 1;
  line-height: 1.5;
}

/* Hover state */
.checkbox-label:hover .checkbox-mark {
  border-color: var(--green);
}

.contact-side {
  background: var(--green);
  color: var(--cream);
  padding: 36px 32px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.contact-side::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gold);
}
.contact-side h3 {
  color: var(--cream);
  font-size: 20px;
  margin-bottom: 8px;
}
.contact-side .eyebrow { color: var(--gold); margin-bottom: 12px; }
.contact-side .info-block {
  margin: 24px 0;
  padding-top: 24px;
  border-top: 1px solid rgba(247, 243, 236, 0.15);
}
.contact-side .info-block:first-of-type { border-top: none; padding-top: 0; }
.contact-side .info-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-side .info-value {
  font-size: 15px;
  color: var(--cream);
  line-height: 1.5;
}
.contact-side .info-value a { color: var(--cream); border-bottom: 1px solid rgba(247,243,236,0.3); }
.contact-side .info-value a:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* --------------------------------------------------------------------------
   Legal pages (privacy / terms) — minimal, text-focused
   -------------------------------------------------------------------------- */
.legal-header {
  background: var(--green-deep);
  color: var(--cream);
  padding: 180px 0 80px;
}
.legal-header .eyebrow { color: var(--gold); }
.legal-header h1 { color: var(--cream); }
.legal-header .lead { color: var(--cream-deep); margin-top: 16px; }
.legal-header .meta {
  font-size: 14px;
  color: var(--cream-deep);
  margin-top: 24px;
  opacity: 0.7;
}

.legal-content {
  max-width: 760px;
  padding: 80px var(--gutter) 100px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--green);
  margin: 48px 0 16px;
  letter-spacing: -0.2px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 17px;
  font-weight: 500;
  color: var(--green);
  margin: 28px 0 10px;
}
.legal-content p {
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.75;
}
.legal-content ul, .legal-content ol {
  margin: 12px 0 20px 24px;
  color: var(--ink);
}
.legal-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}
.legal-content a {
  color: var(--green);
  border-bottom: 1px solid var(--gold);
  transition: color 0.2s, border-color 0.2s;
}
.legal-content a:hover {
  color: var(--gold-deep);
  border-bottom-color: var(--gold-deep);
}
.legal-content strong { font-weight: 600; color: var(--green-deep); }
.legal-content hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 40px 0;
}

/* --------------------------------------------------------------------------
   Cookie banner — minimal info-style (option A)
   -------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 720px;
  margin: 0 auto;
  background: var(--green-deep);
  color: var(--cream);
  padding: 18px 20px;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner p {
  flex: 1;
  min-width: 240px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--cream-deep);
  margin: 0;
}
.cookie-banner a {
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  transition: opacity 0.2s;
}
.cookie-banner a:hover { opacity: 0.8; }
.cookie-banner button {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--green-deep);
  background: var(--gold);
  border: none;
  padding: 10px 22px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.cookie-banner button:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
}
@media (max-width: 600px) {
  .cookie-banner {
    bottom: 0; left: 0; right: 0;
    border-radius: 0;
    padding: 16px;
  }
  .cookie-banner p { min-width: 100%; }
  .cookie-banner button { width: 100%; padding: 12px; }
}

/* --------------------------------------------------------------------------
   Success toast — floating notification top-right after form submit
   -------------------------------------------------------------------------- */
.success-toast {
  position: fixed;
  top: 96px;
  right: 24px;
  max-width: 380px;
  background: var(--green);
  color: var(--cream);
  padding: 18px 20px;
  border-radius: 4px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  z-index: 250;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.success-toast.visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.success-toast-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
.success-toast-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.success-toast-body strong {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1px;
}
.success-toast-body span {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--cream-deep);
}
.success-toast-close {
  flex-shrink: 0;
  background: transparent;
  border: 0;
  color: var(--cream-deep);
  font-size: 24px;
  line-height: 1;
  width: 24px;
  height: 24px;
  cursor: pointer;
  padding: 0;
  margin: -2px -4px 0 0;
  transition: color 0.2s;
}
.success-toast-close:hover { color: var(--cream); }

@media (max-width: 600px) {
  .success-toast {
    top: auto;
    bottom: 16px;
    left: 16px;
    right: 16px;
    max-width: none;
  }
}
