/* =============================================================
   LUMARA HOLDINGS — Main Stylesheet
   Version: 1.0.0
   Brand palette:
     Navy     #0B1F3A
     Forest   #0F3D2E
     Cream    #F5F5F3
     Charcoal #2E2E2E
     Gold     #B89B5E
   Fonts: Playfair Display (headings) · Crimson Pro (body)
============================================================= */

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --navy:     #0B1F3A;
  --forest:   #0F3D2E;
  --cream:    #F5F5F3;
  --charcoal: #2E2E2E;
  --gold:     #B89B5E;
  --gold-l:   #D4B87A;
  --gold-p:   #EDE0C4;
  --white:    #FAFAF8;
  --mid:      #6B6B68;
  --border:   rgba(184,155,94,0.18);
  --bd:       rgba(255,255,255,0.1);

  --fh: 'Playfair Display', Georgia, serif;
  --fb: 'Crimson Pro', Georgia, serif;

  --pad: 80px;
  --max: 1280px;
}

body {
  background: var(--white);
  color: var(--charcoal);
  font-family: var(--fb);
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
ul { list-style: none; }

/* ── Layout ─────────────────────────────────────────────────── */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.sec        { padding: 100px 0; }
.cream-bg   { background: var(--cream); }
.navy-bg    { background: var(--navy); }
.white-bg   { background: var(--white); }

/* ── Typography ─────────────────────────────────────────────── */
h1 { font-family: var(--fh); font-size: clamp(3rem,6vw,64px);   font-weight: 700; line-height: 1.05; }
h2 { font-family: var(--fh); font-size: clamp(2rem,4vw,48px);   font-weight: 700; line-height: 1.1;  }
h3 { font-family: var(--fh); font-size: clamp(1.4rem,2.5vw,30px); font-weight: 400; line-height: 1.2;  }

h2.navy     { color: var(--navy); }
h1 em, h2 em { font-style: italic; font-weight: 400; color: var(--gold-l); }
h2.navy em  { color: var(--forest); }

.navy       { color: var(--navy); }
.forest     { color: var(--forest); }
.cream-text { color: var(--cream); }
.dimmed     { color: rgba(245,245,243,0.3); }

/* ── Eyebrow ─────────────────────────────────────────────────── */
.ey {
  font-family: var(--fb);
  font-size: 0.67rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.ey::before {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.ey.forest { color: var(--forest); }
.ey.forest::before { background: var(--forest); }

/* Gold rule */
.gr { width: 52px; height: 2px; background: var(--gold); margin: 26px 0; }

/* ── Buttons ─────────────────────────────────────────────────── */
.bp {
  display: inline-block;
  padding: 14px 34px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--fb);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.25s, color 0.25s;
  text-decoration: none;
}
.bp:hover { background: var(--gold-l); color: var(--navy); }

.bo {
  display: inline-block;
  padding: 14px 34px;
  background: transparent;
  border: 1px solid currentColor;
  font-family: var(--fb);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}
.bo.navy-outline  { color: var(--navy);  border-color: var(--border); }
.bo.navy-outline:hover  { background: var(--navy); color: var(--cream); }
.bo.ghost-light   { color: rgba(245,245,243,0.55); border-color: rgba(245,245,243,0.18); }
.bo.ghost-light:hover { border-color: var(--gold); color: var(--gold); }

/* ── Fade-in animations ──────────────────────────────────────── */
.fi {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fi.v { opacity: 1; transform: none; }

/* ── NAV ─────────────────────────────────────────────────────── */
.snav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(11,31,58,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--bd);
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 var(--pad);
  transition: box-shadow 0.3s;
}
.snav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.2); }

.ni {
  width: 100%; max-width: var(--max);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}

.nlogo {
  display: flex; align-items: center; gap: 12px;
  cursor: pointer; text-decoration: none;
}
.nlogo-name {
  font-family: var(--fh);
  font-size: 1.1rem; font-weight: 700;
  color: var(--cream); letter-spacing: 0.02em;
}
.nlogo-name span {
  display: block;
  font-family: var(--fb);
  font-size: 0.58rem; font-weight: 400;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-top: 1px;
}

.nlinks {
  display: flex; gap: 28px; list-style: none;
}
.nlinks a {
  font-family: var(--fb);
  font-size: 0.75rem; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,245,243,0.55);
  transition: color 0.2s; cursor: pointer;
  text-decoration: none;
}
.nlinks a:hover,
.nlinks a.act,
.nlinks li.current-menu-item > a { color: var(--gold); }

.ncta {
  padding: 9px 22px;
  background: transparent; border: 1px solid var(--gold);
  font-family: var(--fb); font-size: 0.7rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); cursor: pointer;
  transition: all 0.25s; text-decoration: none;
}
.ncta:hover { background: var(--gold); color: var(--navy); }

.nhb {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
  background: none; border: none;
}
.nhb span {
  display: block; width: 24px; height: 1.5px;
  background: var(--cream); transition: all 0.3s;
}
.nhb.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nhb.open span:nth-child(2) { opacity: 0; }
.nhb.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.nlinks.mobile-open {
  display: flex; flex-direction: column; gap: 0;
  position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(11,31,58,0.99);
  padding: 18px 28px 36px;
  border-bottom: 1px solid rgba(184,155,94,0.12);
  z-index: 199;
}
.nlinks.mobile-open li { border-bottom: 1px solid rgba(184,155,94,0.07); }
.nlinks.mobile-open a  { display: block; padding: 14px 0; font-size: 0.95rem; }

/* ── PAGE HERO ───────────────────────────────────────────────── */
.ph {
  background: var(--navy);
  padding: 160px 0 96px;
  position: relative; overflow: hidden;
}
.ph::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 70% at 0% 100%, rgba(15,61,46,0.5) 0%, transparent 60%);
}
.phi { position: relative; }
.phl {
  font-size: 0.65rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.phl::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.ph h1 { color: var(--cream); margin-bottom: 20px; }
.phsub {
  font-size: 1.1rem; font-style: italic;
  color: rgba(245,245,243,0.5);
  max-width: 560px; line-height: 1.6;
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: grid;
  grid-template-columns: 55% 45%;
  padding-top: 72px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 0% 100%, rgba(15,61,46,0.6) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 100% 0%, rgba(184,155,94,0.08) 0%, transparent 50%);
}
.hero::after {
  content: '';
  position: absolute; top: 0; right: 44%;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent 5%, var(--gold) 50%, transparent 95%);
  opacity: 0.3;
}

.hl {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px var(--pad) 180px;
  position: relative; z-index: 1;
}
.hkicker {
  font-family: var(--fb);
  font-size: 0.67rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 16px;
}
.hkicker::before { content: ''; width: 40px; height: 1px; background: var(--gold); }

.hh {
  font-family: var(--fh);
  font-size: clamp(3.2rem, 6.5vw, 72px);
  font-weight: 700; line-height: 1.0;
  color: var(--cream); margin-bottom: 8px;
}
.hh em { font-style: italic; font-weight: 400; color: var(--gold-l); }

.hsub {
  font-family: var(--fh);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400; font-style: italic;
  color: rgba(245,245,243,0.5);
  margin-bottom: 32px; line-height: 1.3;
}
.hbody {
  font-size: 1rem; line-height: 1.8;
  color: rgba(245,245,243,0.55);
  max-width: 400px; margin-bottom: 40px;
}
.hacts { display: flex; gap: 14px; flex-wrap: wrap; }

.hr  { position: relative; overflow: hidden; }
.hrv { width: 100%; height: 100%; background: var(--forest); position: relative; overflow: hidden; }

.hstats {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(11,31,58,0.92);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--bd);
  display: grid; grid-template-columns: repeat(4,1fr);
  padding: 26px var(--pad); z-index: 10;
}
.hst { padding: 0 20px; border-right: 1px solid var(--bd); }
.hst:first-child { padding-left: 0; }
.hst:last-child  { border-right: none; }
.hstv {
  font-family: var(--fh);
  font-size: 2.2rem; font-weight: 700;
  color: var(--cream); line-height: 1;
}
.hstv sup { font-size: 0.9rem; color: var(--gold); }
.hstl {
  font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,245,243,0.38);
}

/* ── TICKER ──────────────────────────────────────────────────── */
.ticker {
  background: var(--forest);
  border-bottom: 1px solid rgba(184,155,94,0.12);
  height: 44px; overflow: hidden;
  display: flex; align-items: center;
}
.tlbl {
  padding: 0 22px;
  font-size: 0.6rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.08);
  height: 100%; display: flex; align-items: center; flex-shrink: 0;
}
.tscroll  { overflow: hidden; flex: 1; }
.tinner {
  display: flex; gap: 72px;
  animation: sticker 32s linear infinite;
  white-space: nowrap;
}
@keyframes sticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ti { font-size: 0.7rem; color: rgba(245,245,243,0.55); letter-spacing: 0.05em; flex-shrink: 0; }
.ti b { color: var(--gold-l); font-weight: 400; margin-right: 8px; }

/* ── MISSION ─────────────────────────────────────────────────── */
.mission { padding: 110px 0; background: var(--cream); }
.mg {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 100px; align-items: center;
}
.mbody { font-size: 1.05rem; line-height: 1.82; color: var(--mid); margin-bottom: 18px; }

.mlinks { display: flex; flex-direction: column; gap: 12px; margin-top: 34px; }
.mlink {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.76rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--navy);
  cursor: pointer; transition: color 0.2s; text-decoration: none;
}
.mlink::before {
  content: ''; width: 22px; height: 1px;
  background: var(--gold); flex-shrink: 0; transition: width 0.3s;
}
.mlink:hover { color: var(--gold); }
.mlink:hover::before { width: 38px; }

.mqc {
  background: var(--navy);
  padding: 52px 48px;
  position: relative; overflow: hidden;
}
.mqc::before {
  content: '\201C';
  position: absolute; top: -24px; left: 28px;
  font-family: var(--fh); font-size: 13rem; font-weight: 700;
  color: rgba(184,155,94,0.07); line-height: 1; pointer-events: none;
}
.mqt {
  font-family: var(--fh);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400; font-style: italic;
  line-height: 1.5; color: var(--cream);
  margin-bottom: 26px; position: relative;
}
.mqa {
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 12px;
}
.mqa::before { content: ''; width: 26px; height: 1px; background: var(--gold); }

/* ── FOCUS PREVIEW ───────────────────────────────────────────── */
.fp { padding: 110px 0; background: var(--white); }
.fph {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 52px;
}
.fgrid { display: grid; grid-template-columns: repeat(5,1fr); gap: 2px; }

.fc {
  background: var(--navy);
  padding: 46px 28px 34px;
  cursor: pointer; position: relative; overflow: hidden;
  transition: all 0.35s; min-height: 268px;
  display: flex; flex-direction: column; justify-content: flex-end;
  text-decoration: none;
}
.fc::before {
  content: ''; position: absolute; inset: 0;
  background: var(--forest); opacity: 0; transition: opacity 0.35s;
}
.fc::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s;
}
.fc:hover::before { opacity: 1; }
.fc:hover::after  { transform: scaleX(1); }
.fci { font-size: 2rem; margin-bottom: 18px; position: relative; z-index: 1; transition: transform 0.35s; }
.fc:hover .fci { transform: scale(1.1); }
.fcn {
  font-family: var(--fh); font-size: 1.15rem; font-weight: 400;
  color: var(--cream); margin-bottom: 8px; position: relative; z-index: 1;
}
.fct {
  font-size: 0.8rem; line-height: 1.6;
  color: rgba(245,245,243,0.4);
  position: relative; z-index: 1; transition: color 0.35s;
}
.fc:hover .fct { color: rgba(245,245,243,0.65); }

/* Portfolio preview (dynamic) */
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.portfolio-card { background: var(--cream); border: 1px solid var(--border); overflow: hidden; }
.portfolio-card-img img { width: 100%; height: 200px; object-fit: cover; }
.portfolio-card-body { padding: 28px; }
.portfolio-card-sector {
  font-size: 0.62rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.portfolio-card-title { font-size: 1.2rem; color: var(--navy); margin-bottom: 10px; }
.portfolio-card-excerpt { font-size: 0.88rem; color: var(--mid); line-height: 1.7; }

/* ── CTA BAND ────────────────────────────────────────────────── */
.ctab {
  background: var(--navy);
  padding: 78px 0; position: relative; overflow: hidden;
}
.ctab::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(15,61,46,0.5) 0%, transparent 60%),
    radial-gradient(ellipse 30% 50% at 10% 50%, rgba(184,155,94,0.07) 0%, transparent 60%);
}
.ctabi {
  position: relative;
  display: flex; justify-content: space-between; align-items: center; gap: 60px;
}
.ctabt h2 { font-size: clamp(1.5rem,3vw,2.4rem); color: var(--cream); margin-bottom: 10px; }
.ctabt p  { color: rgba(245,245,243,0.5); font-size: 0.95rem; }
.ctaba    { display: flex; gap: 14px; flex-shrink: 0; }
.newsletter-cta { align-items: center; }
.newsletter-input {
  padding: 13px 18px;
  background: rgba(245,245,243,0.08);
  border: 1px solid rgba(184,155,94,0.28);
  color: var(--cream);
  font-family: var(--fb); font-size: 0.88rem;
  outline: none; width: 240px;
}
.newsletter-input::placeholder { color: rgba(245,245,243,0.3); }

/* ── ABOUT ───────────────────────────────────────────────────── */
.agrid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start; padding: 100px 0;
}
.avis { aspect-ratio: 4/5; position: relative; overflow: hidden; background: var(--navy); }
.atext p { color: var(--mid); line-height: 1.82; margin-bottom: 18px; }

/* Founder letter */
.fl { background: var(--cream); padding: 100px 0; }
.lcard {
  background: var(--white); border: 1px solid var(--border);
  padding: 68px 76px; max-width: 860px; margin: 0 auto; position: relative;
}
.lcard::before {
  content: ''; position: absolute; top: 0; left: 72px; right: 72px;
  height: 3px; background: linear-gradient(to right, var(--gold), transparent);
}
.lh {
  font-family: var(--fh); font-size: 0.68rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 30px;
}
.lg { font-family: var(--fh); font-size: 1.2rem; font-weight: 400; color: var(--navy); margin-bottom: 26px; }
.lb { font-size: 1.05rem; line-height: 1.85; color: var(--mid); margin-bottom: 18px; }
.lsig { margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--border); }
.lsn  { font-family: var(--fh); font-size: 1.4rem; font-style: italic; font-weight: 400; color: var(--navy); margin-bottom: 4px; }
.lst  { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }

/* ── APPROACH ────────────────────────────────────────────────── */
.apgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 56px; }
.apc {
  background: var(--navy); padding: 52px 40px;
  position: relative; overflow: hidden;
}
.apc::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(to right, var(--gold), transparent);
}
.apn { font-family: var(--fh); font-size: 3.8rem; font-weight: 700; color: rgba(184,155,94,0.13); line-height: 1; margin-bottom: 18px; }
.apt { font-family: var(--fh); font-size: 1.5rem; font-weight: 700; color: var(--cream); margin-bottom: 14px; }
.apb { font-size: 0.92rem; line-height: 1.75; color: rgba(245,245,243,0.5); }

/* Steps */
.stepsec { padding: 100px 0; background: var(--cream); }
.slist   { max-width: 740px; margin: 56px auto 0; }
.si {
  display: grid; grid-template-columns: 68px 1fr;
  gap: 24px; padding: 38px 0;
  border-bottom: 1px solid var(--border); align-items: start;
}
.si:first-child { border-top: 1px solid var(--border); }
.snb {
  width: 46px; height: 46px; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh); font-size: 1rem; font-weight: 700;
  color: var(--gold); flex-shrink: 0;
}
.sc h3 { color: var(--navy); margin-bottom: 8px; font-size: 1.2rem; }
.sc p  { font-size: 0.92rem; line-height: 1.75; color: var(--mid); }

/* ── FOCUS AREAS / SECTOR BLOCKS ─────────────────────────────── */
.sector-sections { padding-bottom: 0; }
.sblock {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.sblock--flip { direction: rtl; }
.sblock--flip > * { direction: ltr; }

.svis { min-height: 420px; position: relative; overflow: hidden; }
.svis-inner {
  position: absolute; bottom: 32px; left: 40px;
  display: flex; flex-direction: column; gap: 4px;
}
.svis-label {
  font-family: var(--fh); font-size: 0.8rem; font-style: italic;
  color: rgba(245,245,243,0.2); letter-spacing: 0.12em;
}
.svis-num {
  font-family: var(--fh); font-size: 5rem; font-weight: 700;
  color: rgba(184,155,94,0.1); line-height: 1;
}

.scont {
  padding: 68px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
.scont h2 { color: var(--navy); margin-bottom: 18px; font-size: 2rem; }
.scont p  { color: var(--mid); line-height: 1.8; margin-bottom: 20px; }
.stags    { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 6px; }
.stag {
  padding: 4px 11px; border: 1px solid var(--border);
  font-size: 0.63rem; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--mid);
}

/* ── FOR BUSINESS OWNERS ─────────────────────────────────────── */
.vpsec { padding: 100px 0; background: var(--cream); }
.vpgrid { display: grid; grid-template-columns: repeat(5,1fr); gap: 2px; margin-top: 52px; }
.vpc {
  background: var(--white); border: 1px solid var(--border);
  padding: 42px 28px; position: relative; transition: all 0.3s;
}
.vpc::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.vpc:hover { box-shadow: 0 12px 44px rgba(11,31,58,0.08); }
.vpc:hover::before { transform: scaleX(1); }
.vpi  { font-size: 1.9rem; margin-bottom: 18px; }
.vpt  { font-family: var(--fh); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.vpb  { font-size: 0.86rem; line-height: 1.7; color: var(--mid); }

.ofsec { padding: 100px 0; background: var(--navy); position: relative; overflow: hidden; }
.ofsec::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(15,61,46,0.4) 0%, transparent 60%);
}
.ofinner {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 76px; align-items: start;
}
.ofl p      { color: rgba(245,245,243,0.5); line-height: 1.75; }
.ofl p + p  { margin-top: 14px; }

.owners-checklist { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.owners-checklist li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.87rem; color: rgba(245,245,243,0.45);
}
.owners-checklist li::before {
  content: '✓'; color: var(--gold); flex-shrink: 0;
}

/* ── INSIGHTS ────────────────────────────────────────────────── */
.igrid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; padding: 56px 0 100px; }
.icard {
  background: var(--white); border: 1px solid var(--border);
  overflow: hidden; cursor: pointer; transition: all 0.3s;
  display: flex; flex-direction: column;
}
.icard:hover { box-shadow: 0 12px 44px rgba(11,31,58,0.1); transform: translateY(-4px); }
.icard:hover { text-decoration: none; }

.ictop {
  background: var(--navy);
  height: 190px; display: flex;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.ictop img         { width: 100%; height: 100%; object-fit: cover; }
.ictop-placeholder { width: 100%; height: 100%; }

.icbody { padding: 34px; flex: 1; display: flex; flex-direction: column; }
.itag   { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.icard h3 { font-size: 1.35rem; color: var(--navy); margin-bottom: 12px; line-height: 1.3; }
.icard h3 a { color: inherit; text-decoration: none; }
.icard h3 a:hover { color: var(--forest); }
.icard p  { font-size: 0.9rem; color: var(--mid); line-height: 1.75; margin-bottom: 16px; }

.read-more-link {
  font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  text-decoration: none; margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
}
.read-more-link:hover { color: var(--gold-l); }

.ifaq  { margin-top: 18px; border-top: 1px solid var(--border); padding-top: 18px; }
.fq    { font-family: var(--fh); font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.fa    { font-size: 0.83rem; color: var(--mid); line-height: 1.65; margin-bottom: 14px; }

/* Single insight */
.single-insight-content { font-size: 1.05rem; line-height: 1.85; color: var(--mid); }
.single-insight-content h2 { color: var(--navy); margin: 40px 0 16px; }
.single-insight-content h3 { color: var(--navy); margin: 32px 0 12px; }
.single-insight-content p  { margin-bottom: 20px; }

/* ── CONTACT ─────────────────────────────────────────────────── */
.clayout {
  display: grid; grid-template-columns: 5fr 7fr;
  gap: 76px; padding: 80px 0 100px; align-items: start;
}
.cinfo h2 { color: var(--navy); margin-bottom: 18px; font-size: 1.9rem; }
.cinfo p  { color: var(--mid); line-height: 1.8; margin-bottom: 32px; }
.cd { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.cdi {
  width: 34px; height: 34px; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; flex-shrink: 0;
}
.cdt strong {
  display: block; font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 3px; font-weight: 400;
}
.cdt span, .cdt a { font-size: 0.9rem; color: var(--mid); text-decoration: none; }
.cdt a:hover { color: var(--gold); }

/* ── FORMS ───────────────────────────────────────────────────── */
.fcard {
  background: var(--white); border: 1px solid var(--border); padding: 48px;
}
.dark-card {
  background: rgba(245,245,243,0.05) !important;
  border-color: rgba(184,155,94,0.2) !important;
}
.ftitle {
  font-family: var(--fh); font-size: 1.4rem; font-weight: 700;
  color: var(--navy); margin-bottom: 28px;
  padding-bottom: 18px; border-bottom: 1px solid var(--border);
}
.dark-title { color: var(--cream) !important; border-color: rgba(184,155,94,0.15) !important; }

.ftabs {
  display: flex; margin-bottom: 36px;
  border-bottom: 2px solid var(--border);
}
.ftab {
  padding: 11px 24px;
  font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--mid);
  cursor: pointer; background: none; border: none;
  border-bottom: 2px solid transparent; margin-bottom: -2px;
  transition: all 0.2s;
}
.ftab.act { color: var(--navy); border-bottom-color: var(--gold); }

.fpanel     { display: none; }
.fpanel.act { display: block; }

.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.fg { margin-bottom: 18px; }
.fg label {
  display: block; font-size: 0.65rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 7px; font-weight: 400;
}
.fg input,
.fg select,
.fg textarea {
  width: 100%; padding: 11px 14px;
  background: var(--cream); border: 1px solid var(--border);
  color: var(--charcoal); font-family: var(--fb); font-size: 0.93rem;
  outline: none; transition: border-color 0.2s;
  appearance: none;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus { border-color: var(--gold); background: var(--white); }
.fg textarea { resize: vertical; min-height: 112px; }
.fg input[type="file"] { padding: 8px 14px; background: var(--cream); cursor: pointer; }

/* Dark form overrides */
.dark-card .fg label  { color: rgba(245,245,243,0.45); }
.dark-card .fg input,
.dark-card .fg select,
.dark-card .fg textarea {
  background: rgba(245,245,243,0.06);
  border-color: rgba(184,155,94,0.2);
  color: var(--cream);
}
.dark-card .fg input::placeholder,
.dark-card .fg textarea::placeholder { color: rgba(245,245,243,0.3); }
.dark-card .fg input:focus,
.dark-card .fg select:focus,
.dark-card .fg textarea:focus {
  border-color: var(--gold);
  background: rgba(245,245,243,0.1);
}

.fnote { font-size: 0.73rem; color: var(--mid); margin-top: 10px; font-style: italic; }

.form-msg {
  margin-top: 14px; font-size: 0.88rem; line-height: 1.5;
  min-height: 24px;
}
.form-msg.success { color: #4caf74; }
.form-msg.error   { color: #e05a5a; }

.submit-btn.loading { opacity: 0.7; cursor: not-allowed; }

/* Generic page */
.page-content-wrap { padding: 80px 0 100px; max-width: 860px; }
.page-content { font-size: 1.05rem; line-height: 1.85; color: var(--mid); }
.page-content h2 { color: var(--navy); margin: 36px 0 14px; }
.page-content p  { margin-bottom: 18px; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.sfooter { background: var(--navy); padding: 78px 0 38px; border-top: 1px solid var(--bd); }
.fgd {
  display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 56px; padding-bottom: 56px;
  border-bottom: 1px solid var(--bd); margin-bottom: 36px;
}
.footer-brand-col {}
.fbn { font-family: var(--fh); font-size: 1.5rem; font-weight: 700; color: var(--cream); margin-bottom: 4px; }
.fbn em { font-weight: 400; font-style: italic; color: var(--gold-l); }
.fbt { font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.fbd { font-size: 0.86rem; color: rgba(245,245,243,0.38); line-height: 1.7; margin-bottom: 24px; }
.footer-email-link { font-size: 0.76rem; color: var(--gold); letter-spacing: 0.11em; text-decoration: none; }
.footer-email-link:hover { color: var(--gold-l); }

.fct_  { font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.fll   { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.fll a { font-size: 0.83rem; color: rgba(245,245,243,0.42); transition: color 0.2s; cursor: pointer; text-decoration: none; }
.fll a:hover { color: var(--gold-l); }

.footer-offices li { margin-bottom: 16px; line-height: 1.7; }
.footer-offices strong { display: block; color: rgba(245,245,243,0.5); font-weight: 400; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 2px; }
.footer-offices span, .footer-offices a { font-size: 0.83rem; color: rgba(245,245,243,0.38); }

.fbot {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 14px;
}
.flegal  { font-size: 0.66rem; color: rgba(245,245,243,0.2); }
.flegal a { color: inherit; margin-left: 14px; text-decoration: none; }
.flegal a:hover { color: var(--gold); }
.fsoc { display: flex; gap: 9px; }
.sl {
  width: 33px; height: 33px;
  border: 1px solid rgba(184,155,94,0.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.73rem; color: rgba(245,245,243,0.38);
  cursor: pointer; transition: all 0.2s; text-decoration: none;
}
.sl:hover { border-color: var(--gold); color: var(--gold); }

/* ── WP ADMIN BAR OFFSET ─────────────────────────────────────── */
.admin-bar .snav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .snav { top: 46px; }
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  :root { --pad: 28px; }

  /* Nav */
  .nlinks:not(.mobile-open) { display: none; }
  .ncta  { display: none; }
  .nhb   { display: flex; }

  /* Hero */
  .hero  { grid-template-columns: 1fr; }
  .hr    { height: 45vh; }
  .hero::after { display: none; }
  .hstats { position: static; grid-template-columns: repeat(2,1fr); }
  .hl    { padding: 60px var(--pad) 40px; }

  /* Grids */
  .mg, .agrid, .ofinner, .clayout { grid-template-columns: 1fr; gap: 52px; }
  .fgrid  { grid-template-columns: repeat(2,1fr); }
  .apgrid { grid-template-columns: 1fr; }
  .vpgrid { grid-template-columns: repeat(2,1fr); }
  .fgd    { grid-template-columns: 1fr 1fr; }
  .igrid, .frow, .portfolio-grid { grid-template-columns: 1fr; }

  /* Focus areas */
  .fph { flex-direction: column; gap: 14px; align-items: flex-start; }

  /* Sectors */
  .sblock { grid-template-columns: 1fr; direction: ltr !important; }
  .sblock > * { direction: ltr; }
  .svis  { min-height: 240px; }
  .scont { padding: 48px var(--pad); }

  /* CTA band */
  .ctabi { flex-direction: column; gap: 28px; }
  .ctaba { flex-wrap: wrap; }

  /* Letter */
  .lcard { padding: 44px 32px; }

  /* About visual */
  .avis { aspect-ratio: 16/9; min-height: 280px; }
}

@media (max-width: 640px) {
  .hstats { grid-template-columns: 1fr 1fr; }
  .hst    { padding: 0 12px; }
  .fgrid  { grid-template-columns: 1fr; }
  .vpgrid { grid-template-columns: 1fr; }
  .fgd    { grid-template-columns: 1fr; }
  .ftabs  { flex-wrap: wrap; }
  .fcard  { padding: 28px; }
  .newsletter-input { width: 100%; }
  .ph     { padding: 130px 0 72px; }
}
