*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Light canvas */
  --white: #ffffff;
  --off-white: #f7f6f4;
  --light: #f0eee9;
  --light-2: #e8e5df;

  /* Structure */
  --border: #d8d4cc;
  --border-dark: #b8b2a8;

  /* Typography */
  --ink: #0e0e0e;
  --ink-2: #2a2a2a;
  --muted: #787570;
  --muted-light: #a8a49e;

  /* Accent */
  --gold: #8a6f1e;
  --gold-light: #b8952a;
  --gold-dim: rgba(138,111,30,0.08);

  /* Fonts */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Barlow', sans-serif;
  --condensed: 'Barlow Condensed', sans-serif;
  --display: 'Barlow Condensed', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--ink-2);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 4rem;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--condensed);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: var(--condensed);
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-cta {
  font-family: var(--condensed);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white); background: var(--ink);
  padding: 0.65rem 1.6rem; text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--ink-2); }

/* ── SHARED ── */
section { padding: 7rem 4rem; }

.section-label {
  font-family: var(--condensed);
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.section-label::after {
  content: ''; flex: 1; max-width: 2.5rem;
  height: 1px; background: var(--border-dark);
}

h2 {
  font-family: var(--condensed);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
h2 em {
  font-style: normal;
  color: var(--gold);
}

.divider {
  width: 2.5rem; height: 2px;
  background: var(--ink); margin-bottom: 2.5rem;
}

.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.btn-primary {
  font-family: var(--condensed);
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white); background: var(--ink);
  border: none; padding: 1rem 2.5rem;
  cursor: pointer; text-decoration: none;
  display: inline-block; transition: background 0.2s;
}
.btn-primary:hover { background: var(--ink-2); }

.btn-secondary {
  font-family: var(--condensed);
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink); background: transparent;
  border: 1px solid var(--border-dark);
  padding: 1rem 2.5rem;
  cursor: pointer; text-decoration: none;
  display: inline-block; transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--ink); }

.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 4rem;
  padding-top: 5rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.hero-text { padding-right: 5rem; }
.hero-eyebrow {
  font-family: var(--condensed);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 2rem;
  display: flex; align-items: center; gap: 1rem;
}
.hero-eyebrow::before {
  content: ''; display: inline-block;
  width: 2rem; height: 1px; background: var(--border-dark);
}
h1 {
  font-family: var(--condensed);
  font-size: clamp(3rem, 5.5vw, 5.8rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
h1 .h1-italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  text-transform: none;
  font-size: 0.85em;
  display: block;
  color: var(--muted);
  letter-spacing: 0;
}

h1 .h1-sp {
  // font-family: var(--serif);
 //  font-style: italic;
  font-weight: 300;
  text-transform: none;
  font-size: 0.85em;
  display: block;
  color: var(--muted);
  letter-spacing: 0;
}

.hero-sub {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.hero-authority {
  font-family: var(--condensed);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-2);
  border-left: 2px solid var(--ink);
  padding-left: 1rem;
  margin-bottom: 3rem;
  line-height: 1.7;
}
.hero-image {
  position: relative;
  height: 88vh;
  background: var(--light);
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  filter: grayscale(100%) contrast(1.1);
  mix-blend-mode: multiply;
}
.hero-image::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(to top, var(--white) 0%, transparent 100%);
}

/* ── POSITIONING ── */
#positioning {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.positioning-inner { max-width: 820px; }
.positioning-statement {
  font-family: var(--condensed);
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
}
.positioning-body {
  font-size: 1rem; color: var(--muted);
  line-height: 1.9; margin-bottom: 1.5rem;
  max-width: 640px;
}
.signals {
  list-style: none;
  margin: 2rem 0 2.5rem;
  border-top: 1px solid var(--border);
}
.signals li {
  font-family: var(--condensed);
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-2);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 1.25rem;
}
.signals li::before {
  content: '';
  display: inline-block;
  width: 0.35rem; height: 0.35rem;
  background: var(--ink); flex-shrink: 0;
}
.control-gap-callout {
  font-family: var(--condensed);
  font-size: 1.1rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
  border-left: 3px solid var(--ink);
  padding: 1.25rem 1.75rem;
  background: var(--white);
  margin: 2.5rem 0;
  display: inline-block;
}
.positioning-close {
  font-size: 0.95rem; color: var(--ink-2);
  line-height: 1.85; max-width: 560px;
  font-style: italic; font-family: var(--serif);
  font-weight: 300; font-size: 1.1rem;
}

/* ── WHEN I'M BROUGHT IN ── */
#when {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.when-inner {
//  display: grid;
 //  grid-template-columns: 1fr 1fr;
//   gap: 6rem; align-items: start;
    max-width: 820px;
}
.when-intro {
  font-family: var(--condensed);
  font-size: 1rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 2.5rem;
}
.when-list { list-style: none; }
.when-list li {
  font-size: 0.95rem; color: var(--ink-2);
  line-height: 1.7;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 1.25rem;
}
.when-list li:first-child { border-top: 1px solid var(--border); }
.when-list li::before {
  content: '';
  display: inline-block;
  width: 0.35rem; height: 0.35rem;
  background: var(--ink); flex-shrink: 0;
  margin-top: 0.55rem;
}
.when-close-block {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--ink);
  padding: 2.5rem;
  margin-top: 0;
}
.when-close-block p {
  font-size: 0.92rem; color: var(--muted);
  line-height: 1.85; margin-bottom: 1.25rem;
}
.when-close-block p:last-child { margin-bottom: 0; }
.when-close-block strong {
  font-weight: 600; color: var(--ink);
  font-family: var(--condensed);
  text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 0.85rem;
}

/* ── FRAMEWORK ── */
#framework {
  background: var(--ink);
  border-bottom: 1px solid #1e1e1e;
}
#framework .section-label { color: rgba(255,255,255,0.35); }
#framework .section-label::after { background: rgba(255,255,255,0.15); }
#framework h2 { color: var(--white); }
.framework-intro {
  font-size: 0.95rem; color: rgba(255,255,255,0.45);
  line-height: 1.85; max-width: 560px; margin-bottom: 4rem;
}
.framework-intro strong { color: rgba(255,255,255,0.75); font-weight: 400; }
.pillars-five {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0; border: 1px solid #2a2a2a;
}
.pillar {
  padding: 2.75rem 1.75rem;
  border-right: 1px solid #2a2a2a;
  position: relative; transition: background 0.3s;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: #181818; }
.pillar-bar {
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: #2a2a2a; transition: background 0.3s;
}
.pillar:hover .pillar-bar { background: rgba(255,255,255,0.4); }
.pillar-num {
  font-family: var(--condensed);
  font-size: 2.5rem; font-weight: 700;
  color: #2a2a2a; line-height: 1;
  margin-bottom: 1.25rem; transition: color 0.3s;
}
.pillar:hover .pillar-num { color: #3a3a3a; }
.pillar-title {
  font-family: var(--condensed);
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); margin-bottom: 0.85rem;
}
.pillar-desc { font-size: 0.82rem; color: rgba(255,255,255,0.35); line-height: 1.7; }
.framework-close {
  margin-top: 4rem;
  font-size: 0.92rem; color: rgba(255,255,255,0.45);
  line-height: 1.85; max-width: 560px;
  font-style: italic; font-family: var(--serif);
}

/* ── CASE EVIDENCE ── */
#cases {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 3rem;
}
.case-card {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--border);
  position: relative;
  background: var(--white);
  transition: background 0.3s;
}
.case-card:last-child { border-right: none; }
.case-card:hover { background: var(--off-white); }
.case-bar {
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--border);
  transition: background 0.3s;
}
.case-card:hover .case-bar { background: var(--ink); }
.case-num {
  font-family: var(--condensed);
  font-size: 2rem; font-weight: 700;
  color: var(--border); line-height: 1;
  margin-bottom: 1.25rem;
  transition: color 0.3s;
}
.case-card:hover .case-num { color: var(--border-dark); }
.case-title {
  font-family: var(--condensed);
  font-size: 1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--ink); margin-bottom: 2rem;
  line-height: 1.3;
}
.case-row { margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.case-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.case-row-label {
  font-family: var(--condensed);
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.case-row-label.env { color: var(--muted-light); }
.case-row-label.risk { color: #9e4a4a; }
.case-row-label.exposure { color: #8a6020; }
.case-row-label.outcome { color: #3a7a50; }
.case-row-text { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }
.case-row-text.outcome-text { color: var(--ink-2); font-weight: 500; }

/* ── SPEAKING ── */
#speaking {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.speaking-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: start;
}
.speaking-statement {
  font-family: var(--condensed);
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 2.5rem;
  line-height: 1.8;
}
.keynote-block {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--ink);
  padding: 2.5rem;
  margin-bottom: 2rem;
}
.keynote-label {
  font-family: var(--condensed);
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1rem;
}
.keynote-title {
  font-family: var(--condensed);
  font-size: 1.1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--ink); line-height: 1.3; margin-bottom: 1.5rem;
}
.speaking-audiences { list-style: none; margin-bottom: 2rem; }
.speaking-audiences li {
  font-family: var(--condensed);
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 1rem;
}
.speaking-audiences li::before {
  content: ''; display: inline-block;
  width: 0.3rem; height: 0.3rem;
  background: var(--ink); flex-shrink: 0;
}
.speaking-takeaways { list-style: none; }
.speaking-takeaways li {
  font-size: 0.88rem; color: var(--muted);
  padding: 0.65rem 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 0.75rem;
  line-height: 1.6;
}
.speaking-takeaways li:last-child { border-bottom: none; }
.speaking-takeaways li::before { content: '→'; color: var(--ink); flex-shrink: 0; font-size: 0.75rem; }
.speaking-availability {
  font-family: var(--condensed);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-top: 2rem;
  padding-top: 1.5rem; border-top: 1px solid var(--border);
}

/* ── ADVISORY ── */
#advisory {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.advisory-inner { max-width: 820px; }
.advisory-statement {
  font-family: var(--condensed);
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 3rem;
}
.advisory-conditions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  margin-bottom: 3rem;
}
.advisory-condition {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  background: var(--white);
}
.advisory-condition:last-child { border-right: none; }
.advisory-condition-num {
  font-family: var(--condensed);
  font-size: 2rem; font-weight: 700;
  color: var(--border); line-height: 1; margin-bottom: 1.25rem;
}
.advisory-condition-text {
  font-size: 0.9rem; color: var(--muted); line-height: 1.75;
}
.advisory-close {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}
.advisory-close p {
  font-family: var(--serif);
  font-size: 1.05rem; font-weight: 300; font-style: italic;
  color: var(--ink-2); line-height: 1.8;
}

/* ── MEDIA / SHORTS ── */
#media {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.shorts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem; margin-top: 3rem;
}
.short-embed {
  position: relative; width: 100%;
  padding-bottom: 177.78%;
  background: var(--light);
  border: 1px solid var(--border);
  overflow: hidden; transition: border-color 0.3s;
}
.short-embed:hover { border-color: var(--ink); }
.short-embed iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: none;
}

/* ── GALLERY ── */
#gallery {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 4rem;
}
.gallery-label {
  font-family: var(--condensed);
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 2rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 420px; gap: 0.75rem;
}
.gallery-item { overflow: hidden; position: relative; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  filter: grayscale(100%) contrast(1.1);
  transition: filter 0.4s, transform 0.4s;
}
.gallery-item:nth-child(2) img,
.gallery-item:nth-child(3) img { object-position: center 30%; }
.gallery-item:hover img { filter: grayscale(60%) contrast(1.05); transform: scale(1.02); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(255,255,255,0.3) 0%, transparent 60%);
}

/* ── PRESS ── */
#press {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.press-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 2rem; text-decoration: none;
  display: block; transition: border-color 0.3s;
}
.press-card:hover { border-color: var(--ink); }
.press-outlet {
  font-family: var(--condensed);
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1rem;
}
.press-headline {
  font-family: var(--condensed);
  font-size: 1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--ink); line-height: 1.3; margin-bottom: 0.85rem;
}
.press-excerpt { font-size: 0.84rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.25rem; }
.press-link {
  font-family: var(--condensed);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink);
}
.press-as-seen {
  display: flex; align-items: center; gap: 2.5rem;
  margin-top: 3.5rem; padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.as-seen-label {
  font-family: var(--condensed);
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap; flex-shrink: 0;
}
.as-seen-logos { display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.as-seen-logo {
  font-family: var(--condensed);
  font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--border-dark); transition: color 0.2s;
}
.as-seen-logo:hover { color: var(--ink); }

/* ── CEO INSIGHTS ── */
#insights {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.insight-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem 2.25rem;
  text-decoration: none; display: block;
  transition: border-color 0.3s;
}
.insight-card:hover { border-color: var(--ink); }
.insight-tag {
  font-family: var(--condensed);
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.85rem;
}
.insight-title {
  font-family: var(--condensed);
  font-size: 1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--ink); line-height: 1.3; margin-bottom: 0.85rem;
}
.insight-excerpt { font-size: 0.84rem; color: var(--muted); line-height: 1.75; }

/* ── CLOSING CTA ── */
#closing {
  background: var(--ink);
  border-bottom: 1px solid #1e1e1e;
}
.closing-inner { max-width: 760px; }
#closing .section-label { color: rgba(255,255,255,0.3); }
#closing .section-label::after { background: rgba(255,255,255,0.15); }
.closing-headline {
  font-family: var(--condensed);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 700; text-transform: uppercase;
  color: var(--white); line-height: 1.0;
  letter-spacing: -0.01em; margin-bottom: 2rem;
}
.closing-body {
  font-size: 0.95rem; color: rgba(255,255,255,0.45);
  line-height: 1.9; max-width: 540px; margin-bottom: 3rem;
}
.closing-body strong { color: rgba(255,255,255,0.75); font-weight: 400; }

/* ── BOOKING ── */
#booking {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem; align-items: start;
}
.booking-info p { font-size: 0.92rem; color: var(--muted); line-height: 1.85; margin-bottom: 1.5rem; }
.booking-contact { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem; }
.contact-item {
  display: flex; align-items: center; gap: 1rem;
  font-family: var(--condensed);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.2s;
}
.contact-item:hover { color: var(--ink); }
.contact-icon {
  width: 2.25rem; height: 2.25rem;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); font-size: 0.85rem; flex-shrink: 0;
}
form { background: var(--off-white); border: 1px solid var(--border); padding: 3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
label {
  display: block;
  font-family: var(--condensed);
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.5rem;
}
input, select, textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-bottom: 1px solid var(--border-dark);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.9rem; font-weight: 400;
  padding: 0.875rem 1rem; outline: none;
  transition: border-color 0.2s; -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--ink); }
input::placeholder, textarea::placeholder { color: var(--border-dark); }
select option { background: var(--white); color: var(--ink); }
textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  background: var(--ink); color: var(--white);
  border: none;
  font-family: var(--condensed);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 1.1rem; cursor: pointer; margin-top: 0.5rem;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--ink-2); }

/* ── FOOTER ── */
footer {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: 2.5rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo {
  font-family: var(--condensed);
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink);
}
.footer-copy { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.05em; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a {
  font-family: var(--condensed);
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--ink); }

/* ── MOBILE NAV ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.2rem; height: 2.2rem;
  cursor: pointer; background: none;
  border: none; padding: 0;
  z-index: 200; position: relative;
}
.nav-hamburger span {
  display: block; width: 100%; height: 1px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding-top: 5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 3rem;
  overflow-y: auto;
}
.nav-mobile-drawer.open { display: flex; }
.nav-mobile-drawer a {
  font-family: var(--condensed);
  font-size: 1.1rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  padding: 1.1rem 0; width: 100%; text-align: center;
  border-bottom: 1px solid var(--border); transition: color 0.2s;
}
.nav-mobile-drawer a:first-of-type { border-top: 1px solid var(--border); }
.nav-mobile-drawer a:hover,
.nav-mobile-drawer a.active { color: var(--ink); }
.nav-mobile-cta {
  margin-top: 2rem;
  font-family: var(--condensed);
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white) !important;
  background: var(--ink);
  padding: 1rem 2.5rem;
  border: none !important; text-align: center;
  transition: background 0.2s;
}
.nav-mobile-cta:hover { background: var(--ink-2); }

.nav-drawer-close {
  position: absolute; top: 1.25rem; right: 1.5rem;
  width: 2.2rem; height: 2.2rem;
  background: none; border: none; cursor: pointer;
  display: none; align-items: center; justify-content: center; padding: 0;
}
.nav-drawer-close span {
  position: absolute; width: 1.4rem; height: 1px; background: var(--ink);
}
.nav-drawer-close span:nth-child(1) { transform: rotate(45deg); }
.nav-drawer-close span:nth-child(2) { transform: rotate(-45deg); }
.nav-mobile-drawer.open .nav-drawer-close { display: flex; }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .pillars-five { grid-template-columns: repeat(3, 1fr); }
  .pillar { border-bottom: 1px solid #2a2a2a; }
  .advisory-conditions { grid-template-columns: 1fr; }
  .advisory-condition { border-right: none; border-bottom: 1px solid var(--border); }
  .advisory-condition:last-child { border-bottom: none; }
}
@media (max-width: 1100px) {
  nav { padding: 1.1rem 2rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  #hero { grid-template-columns: 1fr; padding: 6rem 2rem 3rem; gap: 3rem; }
  .hero-text { padding-right: 0; }
  .hero-image { height: 55vh; }
  section { padding: 4rem 2rem; }
  #gallery { padding: 3rem 2rem; }
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
  .when-inner { grid-template-columns: 1fr; gap: 3rem; }
  .cases-grid { grid-template-columns: 1fr; }
  .case-card { border-right: none; border-bottom: 1px solid var(--border); }
  .speaking-inner { grid-template-columns: 1fr; gap: 3rem; }
  .pillars-five { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 280px 280px; }
  .gallery-grid .gallery-item:first-child { grid-column: span 2; }
  .shorts-grid { grid-template-columns: repeat(2, 1fr); }
  .insights-grid { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr; }
  .press-as-seen { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .booking-inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 1.5rem; text-align: center; }
}
@media (max-width: 600px) {
  h1 { font-size: 2.4rem; }
  .shorts-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .closing-headline { font-size: 2rem; }
}

/* ============================================================
   FIX 1 — CLOSING SECTION: Remove max-width constraint so
   content fills the full width on desktop. Find .closing-inner
   in style.css and replace with this:
   ============================================================ */

.closing-inner {
  align-items: center;
  width: 90%;
}



/* Responsive — stack on mobile */
@media (max-width: 1100px) {
  .closing-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}


/* ============================================================
   FIX 2 — CLOSING BUTTON: The dark section needs a white/light
   button so it's visible. Find .btn-primary in style.css —
   that rule stays as is for all other sections.
   Add this NEW rule specifically for the closing section:
   ============================================================ */

#closing .btn-primary {
  background: var(--white);
  color: var(--ink);
  border: none;
}
#closing .btn-primary:hover {
  background: var(--off-white);
}

#closing .btn-secondary {
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.25);
}
#closing .btn-secondary:hover {
  border-color: rgba(255,255,255,0.6);
  background: transparent;
  color: var(--white);
}

