/* ============================================================
   SOVEREIGN AGRICULTURAL GROUP: Shared Site Stylesheet
   Institutional Editorial: Deep field green + cream + harvest gold.
   Serif display, sans body. Extracted and generalized from the
   winning option-1 homepage mockup, extended with interior-page
   patterns (page hero band, prose, two-column blocks, CTA band).
   ============================================================ */

:root{
  --green-deep:   #1d3a12;
  --green-mid:    #2a4d1a;
  --green-field:  #325C00;
  --gold:         #C3921C;
  --gold-light:   #d9ac3f;
  --cream:        #f7f3ea;
  --cream-2:      #efe8d8;
  --ink:          #1F2124;
  --ink-soft:     #3A3A3A;
  --white:        #ffffff;
  --rule:         rgba(195,146,28,0.55);

  --serif: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --maxw: 1240px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
.wrap{ max-width:var(--maxw); margin:0 auto; padding:0 32px; }

h1,h2,h3,h4{ font-family:var(--serif); font-weight:400; margin:0; letter-spacing:0.01em; }

/* small-caps section label */
.kicker{
  display:flex; align-items:center; gap:14px;
  font-family:var(--sans);
  font-size:12.5px;
  letter-spacing:0.28em;
  text-transform:uppercase;
  font-weight:600;
  color:var(--gold);
  margin-bottom:22px;
}
.kicker::before{
  content:"";
  width:34px; height:1px;
  background:var(--gold);
  display:block;
}
.kicker.center{ justify-content:center; }
.kicker .num{ font-family:var(--serif); font-style:italic; margin-right:2px; }

.rule{
  width:64px; height:1px;
  background:var(--gold);
  margin:26px 0;
  border:0;
}
.rule.center{ margin-left:auto; margin-right:auto; }

/* ============================= HEADER ============================= */
header.site{
  position:sticky; top:0; z-index:500;
  background:rgba(29,58,18,0.97);
  border-bottom:1px solid rgba(195,146,28,0.35);
  transition:padding .25s ease;
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 32px;
  max-width:var(--maxw); margin:0 auto;
  gap:20px;
}
.brand{ display:flex; align-items:center; gap:14px; flex-shrink:0; }
.brand img{ height:80px; width:auto; }
.brand-text{ font-family:var(--serif); color:var(--cream); line-height:1.05; }
.brand-text .line1{ font-size:22px; letter-spacing:0.06em; }
.brand-text .line2{ font-size:11px; letter-spacing:0.22em; text-transform:uppercase; color:var(--gold-light); margin-top:4px; }

nav.primary{ display:flex; align-items:center; gap:26px; flex-wrap:nowrap; }
nav.primary a{
  font-size:13px; letter-spacing:0.05em; text-transform:uppercase;
  color:var(--cream); opacity:0.86;
  position:relative;
  padding:6px 0;
  white-space:nowrap;
}
nav.primary a:hover{ opacity:1; }
nav.primary a::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:1px;
  background:var(--gold); transform:scaleX(0); transform-origin:left;
  transition:transform .25s ease;
}
nav.primary a:hover::after{ transform:scaleX(1); }
nav.primary a.active{ opacity:1; }
nav.primary a.active::after{ transform:scaleX(1); }

.btn-cta{
  display:inline-block;
  font-size:12.5px; letter-spacing:0.12em; text-transform:uppercase;
  color:var(--green-deep) !important;
  background:var(--gold);
  padding:12px 22px;
  border:1px solid var(--gold);
  white-space:nowrap;
  transition:background .2s ease, color .2s ease;
}
.btn-cta:hover{ background:transparent; color:var(--cream) !important; }

.btn-outline{
  display:inline-block;
  font-size:12.5px; letter-spacing:0.12em; text-transform:uppercase;
  color:var(--cream);
  background:transparent;
  padding:12px 26px;
  border:1px solid var(--gold);
  transition:background .2s ease, color .2s ease;
}
.btn-outline:hover{ background:var(--gold); color:var(--green-deep); }

.btn-outline-dark{
  display:inline-block;
  font-size:12.5px; letter-spacing:0.12em; text-transform:uppercase;
  color:var(--green-deep);
  background:transparent;
  padding:12px 26px;
  border:1px solid var(--green-deep);
  transition:background .2s ease, color .2s ease;
}
.btn-outline-dark:hover{ background:var(--green-deep); color:var(--cream); }

.menu-toggle{
  display:none;
  flex-direction:column; gap:5px;
  background:none; border:0; cursor:pointer; padding:6px;
}
.menu-toggle span{ width:24px; height:1.5px; background:var(--cream); display:block; }

/* ============================= HERO (home) ============================= */
.hero{
  position:relative;
  min-height:74vh;
  display:flex; align-items:flex-end;
  background:
    linear-gradient(180deg, rgba(20,36,12,0.55) 0%, rgba(18,30,10,0.72) 55%, rgba(13,22,8,0.93) 100%),
    url('/assets/hero-wheat.jpg') center 45% / cover no-repeat;
}
.hero-inner{
  width:100%;
  max-width:var(--maxw); margin:0 auto;
  padding:0 32px 96px;
  color:var(--cream);
}
.hero .kicker{ color:var(--gold-light); }
.hero .kicker::before{ background:var(--gold-light); }
.hero h1{
  font-size:clamp(40px, 6.4vw, 84px);
  line-height:1.04;
  color:var(--cream);
  max-width:16ch;
}
.hero h1 em{
  font-style:italic; color:var(--gold-light);
}
.hero .dek{
  margin-top:26px;
  max-width:44ch;
  font-size:18px;
  line-height:1.65;
  color:rgba(247,243,234,0.86);
  font-weight:300;
}
.hero .actions{
  margin-top:40px;
  display:flex; gap:18px; flex-wrap:wrap;
}
.hero .scroll-cue{
  position:absolute; right:32px; bottom:38px;
  writing-mode:vertical-rl;
  font-size:11px; letter-spacing:0.3em; text-transform:uppercase;
  color:rgba(247,243,234,0.55);
  display:flex; align-items:center; gap:12px;
}
.hero .scroll-cue::after{
  content:""; width:1px; height:52px; background:rgba(247,243,234,0.4);
}

/* ============================= MISSION / WHO WE ARE (home) ============================= */
section.mission{
  background:var(--cream);
  padding:120px 0 100px;
}
.mission-grid{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:80px;
  align-items:start;
}
.mission-head h2{
  font-size:clamp(32px, 3.6vw, 46px);
  line-height:1.14;
  color:var(--green-deep);
  max-width:14ch;
}
.mission-copy{
  columns:1;
  font-size:16.5px;
  line-height:1.85;
  color:var(--ink-soft);
  font-weight:400;
}
.mission-copy p + p{ margin-top:18px; }
.mission-copy p:first-child::first-letter{
  font-family:var(--serif);
  font-size:58px;
  line-height:0.78;
  float:left;
  padding:6px 10px 0 0;
  color:var(--gold);
}

.pull-figure{ position:relative; }
.pull-figure img{
  width:100%; height:520px; object-fit:cover;
  filter:saturate(0.92) contrast(1.03);
}
.pull-figure .cap{
  margin-top:14px;
  font-size:12px; letter-spacing:0.1em; text-transform:uppercase;
  color:var(--ink-soft);
  opacity:0.7;
}

.stat-row{ margin-top:96px; }

/* ============================= HOW WE OPERATE (home) ============================= */
section.operate{
  background:var(--cream-2);
  padding:120px 0;
}
.operate-grid{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:80px;
  align-items:center;
}
.operate-figure{ position:relative; }
.operate-figure img{
  width:100%; height:600px; object-fit:cover;
  filter:saturate(0.92) contrast(1.02);
}
.operate-figure .frame{
  position:absolute; top:22px; left:22px; right:-22px; bottom:-22px;
  border:1px solid var(--gold);
  z-index:-1;
}
.operate-figure-wrap{ position:relative; }

.operate-head h2{
  font-size:clamp(30px, 3.4vw, 42px);
  color:var(--green-deep);
  max-width:16ch;
  line-height:1.16;
}
.operate-copy{
  margin-top:26px;
  font-size:16px; line-height:1.85;
  color:var(--ink-soft);
  max-width:56ch;
}

/* ============================= CORE AREAS (home) ============================= */
section.areas{
  background:var(--green-deep);
  color:var(--cream);
  padding:120px 0;
}
.areas .kicker{ color:var(--gold-light); justify-content:center; }
.areas .kicker::before{ background:var(--gold-light); }
.areas-head{ text-align:center; max-width:760px; margin:0 auto 76px; }
.areas-head h2{
  font-size:clamp(30px, 3.6vw, 44px);
  color:var(--cream);
  line-height:1.18;
}

.areas-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-top:1px solid rgba(195,146,28,0.3);
  border-left:1px solid rgba(195,146,28,0.3);
}
.area-card{
  padding:44px 38px;
  border-right:1px solid rgba(195,146,28,0.3);
  border-bottom:1px solid rgba(195,146,28,0.3);
  transition:background .25s ease;
}
.area-card:hover{ background:rgba(195,146,28,0.08); }
.area-card .idx{
  font-family:var(--serif); font-style:italic;
  color:var(--gold);
  font-size:14px;
  display:block; margin-bottom:20px;
}
.area-card h3{
  font-size:21px; color:var(--cream);
  line-height:1.3;
}
.area-card p{
  margin:14px 0 0;
  font-size:14.5px; line-height:1.75;
  color:rgba(247,243,234,0.78);
}

/* ============================= INVESTOR STRIP (home) ============================= */
section.investor-strip{
  background:var(--cream);
  padding:110px 0;
}
.investor-inner{
  display:grid;
  grid-template-columns:1fr auto;
  gap:60px;
  align-items:center;
  border-top:1px solid var(--rule);
  border-bottom:1px solid var(--rule);
  padding:56px 0;
}
.investor-inner h2{
  font-size:clamp(26px, 3vw, 36px);
  color:var(--green-deep);
  max-width:20ch;
  line-height:1.22;
}
.investor-inner p{
  margin-top:16px;
  font-size:15.5px; line-height:1.75;
  color:var(--ink-soft);
  max-width:56ch;
}

/* ============================= SELL YOUR BUSINESS CTA BAND (home) ============================= */
section.sell-cta{
  position:relative;
  padding:150px 0;
  background:
    linear-gradient(120deg, rgba(29,58,18,0.93) 0%, rgba(29,58,18,0.8) 45%, rgba(29,58,18,0.93) 100%),
    url('/assets/grain-silo.webp') center 60% / cover no-repeat;
  color:var(--cream);
  text-align:center;
}
.sell-cta .kicker{ justify-content:center; color:var(--gold-light); }
.sell-cta .kicker::before{ background:var(--gold-light); }
.sell-cta h2{
  font-size:clamp(32px, 4.6vw, 58px);
  max-width:18ch;
  margin:0 auto;
  line-height:1.14;
  color:var(--cream);
}
.sell-cta p{
  margin:26px auto 0;
  max-width:52ch;
  font-size:17px; line-height:1.75;
  color:rgba(247,243,234,0.85);
}
.sell-cta .actions{
  margin-top:44px;
  display:flex; gap:18px; justify-content:center; flex-wrap:wrap;
}

/* ============================= PAGE HERO (interior pages) ============================= */
.page-hero{
  position:relative;
  padding:180px 0 90px;
  background:
    linear-gradient(150deg, rgba(20,36,12,0.86) 0%, rgba(18,30,10,0.82) 60%, rgba(13,22,8,0.92) 100%),
    var(--green-deep);
  background-size:cover;
  background-position:center;
  color:var(--cream);
}
.page-hero.has-image{
  background-image:
    linear-gradient(150deg, rgba(20,36,12,0.86) 0%, rgba(18,30,10,0.82) 60%, rgba(13,22,8,0.92) 100%),
    var(--hero-img);
}
.page-hero .kicker{ color:var(--gold-light); }
.page-hero .kicker::before{ background:var(--gold-light); }
.page-hero h1{
  font-size:clamp(36px, 5.2vw, 64px);
  line-height:1.08;
  color:var(--cream);
  max-width:20ch;
}
.page-hero .dek{
  margin-top:22px;
  max-width:56ch;
  font-size:17px;
  line-height:1.7;
  color:rgba(247,243,234,0.86);
  font-weight:300;
}

/* ============================= PROSE SECTIONS ============================= */
section.prose-section{
  background:var(--cream);
  padding:100px 0;
}
section.prose-section.alt{ background:var(--cream-2); }
.prose-head{ max-width:820px; }
.prose-head h2{
  font-size:clamp(28px, 3.4vw, 42px);
  line-height:1.16;
  color:var(--green-deep);
  max-width:20ch;
}
.prose-body{
  margin-top:30px;
  font-size:16.5px;
  line-height:1.85;
  color:var(--ink-soft);
  max-width:74ch;
}
.prose-body p + p{ margin-top:18px; }
.prose-body p:first-child::first-letter{
  font-family:var(--serif);
  font-size:52px;
  line-height:0.78;
  float:left;
  padding:6px 10px 0 0;
  color:var(--gold);
}
.prose-body.no-dropcap p:first-child::first-letter{
  font-family:inherit; font-size:inherit; line-height:inherit; float:none; padding:0; color:inherit;
}
.prose-body ul{ margin:18px 0 0; padding-left:22px; }
.prose-body li{ margin-bottom:10px; }
.prose-body h3, .prose-body h4{
  color:var(--green-deep);
  margin-top:30px;
  margin-bottom:10px;
}

/* ============================= TWO-COLUMN BLOCKS ============================= */
.two-col{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:80px;
  align-items:start;
}
.two-col.reverse{ grid-template-columns:0.95fr 1.05fr; }
.two-col.reverse .two-col-figure{ order:-1; }
.two-col.center{ align-items:center; }
.two-col-figure{ position:relative; }
.two-col-figure img{
  width:100%; height:480px; object-fit:cover;
  filter:saturate(0.92) contrast(1.03);
}
.two-col-figure.framed{ padding:0 22px 22px 0; }
.two-col-figure.framed::before{
  content:"";
  position:absolute; top:22px; left:22px; right:-22px; bottom:-22px;
  border:1px solid var(--gold);
  z-index:-1;
}
.two-col-figure .cap{
  margin-top:14px;
  font-size:12px; letter-spacing:0.1em; text-transform:uppercase;
  color:var(--ink-soft);
  opacity:0.7;
}

/* Pull quote */
.pull-quote{
  margin-top:44px;
  border-left:2px solid var(--gold);
  padding:6px 0 6px 30px;
}
.pull-quote p{
  font-family:var(--serif); font-style:italic;
  font-size:21px; line-height:1.5;
  color:var(--green-deep);
  max-width:38ch;
}

/* Stat row */
.stat-row{
  background:var(--green-deep);
  color:var(--cream);
  position:relative;
}
.stat-row::before{
  content:"";
  position:absolute; inset:0 0 auto 0; height:1px; background:var(--gold);
}
.stat-row-inner{
  max-width:var(--maxw); margin:0 auto; padding:0 32px;
  display:grid; grid-template-columns:repeat(3,1fr);
}
.stat-row-inner.cols-4{ grid-template-columns:repeat(4,1fr); }
.stat{
  padding:64px 24px;
  text-align:center;
  border-left:1px solid rgba(195,146,28,0.3);
}
.stat:first-child{ border-left:0; }
.stat .num{
  font-family:var(--serif);
  font-size:clamp(34px, 4.4vw, 56px);
  color:var(--gold-light);
  line-height:1;
}
.stat .label{
  margin-top:16px;
  font-size:12px; letter-spacing:0.18em; text-transform:uppercase;
  color:rgba(247,243,234,0.78);
}

/* Principles / numbered list row */
.principles{
  margin-top:48px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  border-top:1px solid var(--rule);
}
.principles.cols-2{ grid-template-columns:repeat(2,1fr); }
.principle{
  padding:26px 26px 0 0;
  border-right:1px solid var(--rule);
}
.principle:last-child{ border-right:0; }
.principle .roman{
  font-family:var(--serif); font-style:italic;
  color:var(--gold);
  font-size:14px;
  margin-bottom:10px;
  display:block;
}
.principle h4{
  font-size:17px; color:var(--green-deep);
  line-height:1.3;
}
.principle p{
  margin:10px 0 0;
  font-size:13.5px; line-height:1.6;
  color:var(--ink-soft);
}

/* ============================= CARD GRIDS ============================= */
section.card-section{
  background:var(--green-deep);
  color:var(--cream);
  padding:110px 0;
}
section.card-section.light{ background:var(--cream); color:var(--ink); }
section.card-section.light .kicker{ color:var(--gold); }
section.card-section.light .kicker::before{ background:var(--gold); }
section.card-section.light .cards-head h2{ color:var(--green-deep); }
section.card-section .kicker{ color:var(--gold-light); justify-content:center; }
section.card-section .kicker::before{ background:var(--gold-light); }
.cards-head{ text-align:center; max-width:760px; margin:0 auto 76px; }
.cards-head h2{
  font-size:clamp(28px, 3.6vw, 44px);
  color:var(--cream);
  line-height:1.18;
}
section.card-section.light .cards-head h2{ color:var(--green-deep); }

.cards-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-top:1px solid rgba(195,146,28,0.3);
  border-left:1px solid rgba(195,146,28,0.3);
}
.cards-grid.cols-2{ grid-template-columns:repeat(2,1fr); }
.cards-grid.cols-4{ grid-template-columns:repeat(4,1fr); }
section.card-section.light .cards-grid{
  border-top:1px solid var(--rule);
  border-left:1px solid var(--rule);
}
.card{
  padding:44px 38px;
  border-right:1px solid rgba(195,146,28,0.3);
  border-bottom:1px solid rgba(195,146,28,0.3);
  transition:background .25s ease;
}
section.card-section.light .card{
  border-right:1px solid var(--rule);
  border-bottom:1px solid var(--rule);
}
.card:hover{ background:rgba(195,146,28,0.08); }
.card .idx{
  font-family:var(--serif); font-style:italic;
  color:var(--gold);
  font-size:14px;
  display:block; margin-bottom:20px;
}
.card h3{
  font-size:21px; color:var(--cream);
  line-height:1.3;
}
section.card-section.light .card h3{ color:var(--green-deep); }
.card p{
  margin:14px 0 0;
  font-size:14.5px; line-height:1.75;
  color:rgba(247,243,234,0.78);
}
section.card-section.light .card p{ color:var(--ink-soft); }

/* ============================= INFO STRIP ============================= */
section.info-strip{
  background:var(--cream);
  padding:100px 0;
}
.info-strip-inner{
  display:grid;
  grid-template-columns:1fr auto;
  gap:60px;
  align-items:center;
  border-top:1px solid var(--rule);
  border-bottom:1px solid var(--rule);
  padding:56px 0;
}
.info-strip-inner h2{
  font-size:clamp(24px, 3vw, 34px);
  color:var(--green-deep);
  max-width:24ch;
  line-height:1.22;
}
.info-strip-inner p{
  margin-top:16px;
  font-size:15.5px; line-height:1.75;
  color:var(--ink-soft);
  max-width:60ch;
}

/* ============================= CTA BAND ============================= */
section.cta-band{
  position:relative;
  padding:150px 0;
  background:
    linear-gradient(120deg, rgba(29,58,18,0.93) 0%, rgba(29,58,18,0.8) 45%, rgba(29,58,18,0.93) 100%),
    var(--green-deep);
  background-size:cover;
  background-position:center 60%;
  color:var(--cream);
  text-align:center;
}
section.cta-band.has-image{
  background-image:
    linear-gradient(120deg, rgba(29,58,18,0.93) 0%, rgba(29,58,18,0.8) 45%, rgba(29,58,18,0.93) 100%),
    var(--cta-img);
}
.cta-band .kicker{ justify-content:center; color:var(--gold-light); }
.cta-band .kicker::before{ background:var(--gold-light); }
.cta-band h2{
  font-size:clamp(30px, 4.6vw, 54px);
  max-width:20ch;
  margin:0 auto;
  line-height:1.14;
  color:var(--cream);
}
.cta-band p{
  margin:26px auto 0;
  max-width:56ch;
  font-size:17px; line-height:1.75;
  color:rgba(247,243,234,0.85);
}
.cta-band .actions{
  margin-top:44px;
  display:flex; gap:18px; justify-content:center; flex-wrap:wrap;
}

/* ============================= FAQ ============================= */
.faq{ margin-top:20px; max-width:78ch; }
.faq-item{ border-bottom:1px solid var(--rule); padding:26px 0; }
.faq-item h4{ font-size:17px; color:var(--green-deep); line-height:1.4; }
.faq-item p{ margin:12px 0 0; font-size:15px; line-height:1.75; color:var(--ink-soft); }

/* ============================= CONTACT FORM ============================= */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:start;
}
.offices-list{ margin-top:36px; display:grid; gap:24px; }
.office{ border-left:2px solid var(--gold); padding:4px 0 4px 24px; }
.office h4{ color:var(--green-deep); font-size:16px; }
.office p{ margin:6px 0 0; font-size:14.5px; line-height:1.6; color:var(--ink-soft); }

form.contact-form{ display:grid; gap:22px; }
.form-field{ display:grid; gap:8px; }
.form-field label{
  font-size:11.5px; letter-spacing:0.16em; text-transform:uppercase;
  color:var(--green-deep); font-weight:600;
}
.form-field input, .form-field textarea{
  font-family:var(--sans);
  font-size:15px;
  padding:14px 16px;
  border:1px solid var(--rule);
  background:var(--white);
  color:var(--ink);
  border-radius:0;
}
.form-field input:focus, .form-field textarea:focus{
  outline:none;
  border-color:var(--gold);
}
.form-field textarea{ min-height:150px; resize:vertical; }
form.contact-form .btn-cta{
  border:1px solid var(--gold);
  cursor:pointer;
  font-family:var(--sans);
  justify-self:start;
}

/* ============================= LEGAL / PRIVACY PROSE ============================= */
section.legal{
  background:var(--cream);
  padding:90px 0 120px;
}
.legal-body{ max-width:78ch; font-size:15.5px; line-height:1.85; color:var(--ink-soft); }
.legal-body h4{
  color:var(--green-deep);
  font-size:13px; letter-spacing:0.14em; text-transform:uppercase;
  margin-top:40px; margin-bottom:14px;
}
.legal-body h4:first-child{ margin-top:0; }
.legal-body p{ margin:0 0 16px; }
.legal-body p:last-child{ margin-bottom:0; }
.legal-updated{
  font-size:13px; letter-spacing:0.1em; text-transform:uppercase;
  color:var(--gold); margin-bottom:36px;
}

/* ============================= FOOTER ============================= */
footer.site{
  background:var(--ink);
  color:rgba(247,243,234,0.82);
  padding:88px 0 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:50px;
  padding-bottom:64px;
  border-bottom:1px solid rgba(195,146,28,0.25);
}
.footer-brand{ display:flex; align-items:flex-start; gap:14px; }
.footer-brand img{ height:40px; width:auto; margin-top:2px; }
.footer-brand .line1{ font-family:var(--serif); font-size:19px; color:var(--cream); letter-spacing:0.05em; }
.footer-brand .line2{ font-size:10px; letter-spacing:0.22em; text-transform:uppercase; color:var(--gold-light); margin-top:4px; }
.footer-tag{
  margin-top:18px;
  font-size:14px; line-height:1.7;
  color:rgba(247,243,234,0.6);
  max-width:34ch;
}
.footer-col h5{
  font-family:var(--sans);
  font-size:11.5px; letter-spacing:0.2em; text-transform:uppercase;
  color:var(--gold-light);
  margin:0 0 20px;
}
.footer-col a, .footer-col p{
  display:block;
  font-size:14px; line-height:2.1;
  color:rgba(247,243,234,0.78);
}
.footer-col a:hover{ color:var(--gold-light); }
.footer-offices p{ line-height:1.7; margin-bottom:14px; font-size:13.5px; color:rgba(247,243,234,0.65); }

.footer-social{ display:flex; gap:14px; margin-top:22px; }
.footer-social a{
  width:34px; height:34px;
  border:1px solid rgba(195,146,28,0.4);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:13px;
  color:var(--gold-light);
  transition:background .2s ease, color .2s ease;
}
.footer-social a:hover{ background:var(--gold); color:var(--ink); }

.footer-bottom{
  max-width:var(--maxw); margin:0 auto; padding:26px 32px 30px;
  display:flex; justify-content:space-between; align-items:center;
  font-size:12.5px; color:rgba(247,243,234,0.5);
  flex-wrap:wrap; gap:12px;
}
.footer-bottom a{ color:rgba(247,243,234,0.6); }
.footer-bottom a:hover{ color:var(--gold-light); }

/* ============================= RESPONSIVE ============================= */
@media (max-width:1024px){
  .mission-grid, .operate-grid, .two-col, .contact-grid{ grid-template-columns:1fr; gap:52px; }
  .operate-grid{ direction:rtl; }
  .operate-grid > *{ direction:ltr; }
  .two-col.reverse .two-col-figure{ order:0; }
  .pull-figure img, .operate-figure img, .two-col-figure img{ height:380px; }
  .areas-grid, .cards-grid{ grid-template-columns:repeat(2,1fr); }
  .cards-grid.cols-4{ grid-template-columns:repeat(2,1fr); }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .investor-inner, .info-strip-inner{ grid-template-columns:1fr; text-align:left; }
}

@media (max-width:1160px){
  nav.primary{
    position:fixed; inset:0 0 0 auto;
    width:min(320px, 84vw); height:100vh;
    background:var(--green-deep);
    flex-direction:column; align-items:flex-start;
    gap:0;
    padding:100px 32px 40px;
    transform:translateX(100%);
    transition:transform .3s ease;
    border-left:1px solid rgba(195,146,28,0.35);
  }
  nav.primary.open{ transform:translateX(0); }
  nav.primary a{
    width:100%; padding:16px 0;
    border-bottom:1px solid rgba(195,146,28,0.18);
    font-size:14px;
  }
  nav.primary .btn-cta{ margin-top:20px; text-align:center; width:100%; }
  .menu-toggle{ display:flex; }
  .stat-row-inner{ grid-template-columns:1fr; }
  .stat-row-inner.cols-4{ grid-template-columns:1fr; }
  .stat{ border-left:0; border-top:1px solid rgba(195,146,28,0.3); }
  .stat:first-child{ border-top:0; }
  .principles, .principles.cols-2{ grid-template-columns:1fr; }
  .principle{ border-right:0; border-bottom:1px solid var(--rule); padding-bottom:22px; }
  .principle:first-child{ padding-top:26px; }
  .page-hero{ padding:150px 0 70px; }
}

@media (max-width:640px){
  .wrap, .header-inner, .hero-inner, .investor-inner, .info-strip-inner, .footer-bottom{ padding-left:20px; padding-right:20px; }
  .hero{ min-height:88vh; }
  .hero-inner{ padding-bottom:64px; }
  .hero .actions, .cta-band .actions{ flex-direction:column; }
  .hero .actions a, .cta-band .actions a{ text-align:center; }
  section.mission, section.operate, section.areas, section.investor-strip, .sell-cta,
  section.prose-section, section.card-section, section.info-strip, section.cta-band, section.legal{
    padding-top:70px; padding-bottom:70px;
  }
  .areas-grid, .cards-grid, .cards-grid.cols-2, .cards-grid.cols-4{ grid-template-columns:1fr; }
  .stat-row-inner, .stat-row-inner.cols-4{ padding:0 20px; }
  .footer-grid{ grid-template-columns:1fr; padding:0 20px 48px; gap:40px; }
  .footer-brand, .footer-tag{ padding-left:0; }
  header .header-inner{ padding:14px 20px; }
  .brand-text .line1{ font-size:16px; }
  .mission-copy p:first-child::first-letter, .prose-body p:first-child::first-letter{ font-size:40px; }
  .hero .scroll-cue{ display:none; }
  .page-hero{ padding:130px 0 60px; }
  .page-hero h1{ max-width:100%; }
}
