/* ═══════════════════════════════════════════════════════════════════════════
   Brentford Capital — Main Stylesheet
   Brand: Midnight Navy · Metallic Champagne · Slate Grey · Cream
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Reset & Variables ─────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Core Brand */
  --navy:           #0D1F3C;
  --navy-dark:      #071429;
  --navy-mid:       #122844;
  --navy-light:     #1C3560;
  --champagne:      #C8A96A;
  --champagne-dark: #B8924E;
  --champagne-light:#D9BF8E;
  --champagne-pale: #F0E6D0;
  --slate:          #5D6B82;
  --slate-light:    #8696AD;
  --cream:          #F8F3EC;
  --cream-dark:     #EFE7D8;
  --white:          #FFFFFF;
  --border:         #E2D8CC;
  --text-dark:      #1C2433;
  --text-mid:       #4A5568;
  --text-light:     #718096;

  /* Typography */
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --container:  1200px;
  --section-py: 6rem;
  --nav-h:      80px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ─── Typography Scale ──────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.8rem, 5.5vw, 5.2rem); }
h2 { font-size: clamp(2rem,   3.5vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2vw,   1.55rem); }

p  { font-size: 1rem; line-height: 1.72; color: var(--text-mid); }

/* ─── Container ─────────────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── Eyebrow Label ─────────────────────────────────────────────────────── */
.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 1rem;
}
.eyebrow-light { color: rgba(200,169,106,.75); }

/* ─── Section Header ────────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}
.section-header h2 { color: var(--navy); margin-bottom: 1rem; }
.section-sub { font-size: 1.05rem; }

.section-header-light h2 { color: var(--white); }
.section-header-light .section-sub { color: rgba(255,255,255,.68); }

/* ─── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 1px;
  transition: background .28s ease, border-color .28s ease, color .28s ease,
              box-shadow .28s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-champagne {
  background: var(--champagne);
  color: var(--navy);
  border-color: var(--champagne);
}
.btn-champagne:hover {
  background: var(--champagne-dark);
  border-color: var(--champagne-dark);
  box-shadow: 0 6px 24px rgba(200,169,106,.35);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.07);
}

.btn-ghost-champagne {
  background: transparent;
  color: var(--white);
  border-color: rgba(200,169,106,.45);
}
.btn-ghost-champagne:hover {
  border-color: var(--champagne);
  color: var(--champagne);
}

/* ═══════════════════════════════════════════════════════════════ NAVIGATION */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background .4s ease, box-shadow .4s ease;
}

#nav.scrolled {
  background: rgba(7,20,41,.97);
  box-shadow: 0 1px 0 rgba(200,169,106,.18), 0 4px 32px rgba(0,0,0,.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-inner {
  max-width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 0;
}
.logo-v { color: var(--champagne); }

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .15rem;
}
.nav-private-mobile { display: none; }

.nav-links li { position: relative; }

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: .28rem;
  padding: .5rem .85rem;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .07em;
  color: rgba(255,255,255,.78);
  transition: color .2s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--white); }


/* Nav CTA */
.nav-cta {
  display: inline-block;
  padding: .52rem 1.35rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--champagne);
  border: 1px solid rgba(200,169,106,.5);
  transition: background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--champagne);
  color: var(--navy);
  border-color: var(--champagne);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px; height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}
.hamburger span {
  display: block;
  width: 100%; height: 1.5px;
  background: var(--white);
  transition: all .3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════════════ HERO */
#hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
}

/* Slideshow */
.hero-slideshow { position: absolute; inset: 0; z-index: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease;
  will-change: opacity, transform;
}
.hero-slide.active {
  opacity: 1;
  animation: kenBurns 10s ease-out forwards;
}

@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}

/* Overlays */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Base darkening layer across the whole image */
  background: rgba(7,20,41,.45);
}
.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Left-to-right: deep shadow behind text, fades to transparent on right */
  background: linear-gradient(
    100deg,
    rgba(7,20,41,.82) 0%,
    rgba(7,20,41,.65) 38%,
    rgba(7,20,41,.18) 68%,
    transparent 100%
  );
}
.hero-overlay-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 38%;
  z-index: 1;
  background: linear-gradient(to top, rgba(7,20,41,.75), transparent);
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding-top: var(--nav-h);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 1.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--champagne);
  flex-shrink: 0;
}

.hero-content h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.08;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--champagne-light);
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.68;
  color: rgba(255,255,255,.78);
  max-width: 560px;
  margin-bottom: 2.75rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.scroll-label {
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
  font-weight: 500;
}
.scroll-line {
  width: 44px; height: 1px;
  background: rgba(200,169,106,.3);
  overflow: hidden;
  position: relative;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--champagne);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse { to { left: 100%; } }

/* Slideshow dots */
.hero-dots {
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
  z-index: 2;
  display: flex;
  gap: .5rem;
}
.hero-dot {
  width: 28px; height: 2px;
  background: rgba(255,255,255,.28);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .3s, width .3s;
}
.hero-dot.active {
  background: var(--champagne);
  width: 44px;
}

/* ════════════════════════════════════════════════════════ PHILOSOPHY STRIP */
#philosophy {
  background: var(--cream);
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--border);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.5rem;
}

.pillar {
  text-align: center;
  padding: 2.25rem 1.5rem;
  border: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.pillar:hover {
  border-color: var(--champagne-pale);
  background: rgba(200,169,106,.04);
}

.pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  border: 1px solid var(--champagne-pale);
  color: var(--champagne);
  margin: 0 auto 1.35rem;
}

.pillar h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--navy);
  margin-bottom: .55rem;
}
.pillar p {
  font-size: .875rem;
  color: var(--text-mid);
  line-height: 1.62;
}

/* ═══════════════════════════════════════════════════════════════ SERVICES */
#services {
  padding: var(--section-py) 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--champagne);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  transition: box-shadow .3s ease, transform .3s ease;
}
.service-card:hover {
  box-shadow: 0 14px 52px rgba(13,31,60,.1);
  transform: translateY(-4px);
}

.sc-icon {
  width: 54px; height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  color: var(--champagne);
  flex-shrink: 0;
}

.sc-body { flex: 1; }
.sc-body h3 {
  font-size: 1.45rem;
  color: var(--navy);
  margin-bottom: .7rem;
}
.sc-body p {
  font-size: .92rem;
  color: var(--text-mid);
  margin-bottom: 1.15rem;
  line-height: 1.65;
}

.sc-list { display: flex; flex-direction: column; gap: .38rem; }
.sc-list li {
  font-size: .82rem;
  color: var(--text-light);
  padding-left: 1.1rem;
  position: relative;
}
.sc-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--champagne);
  font-size: .65rem;
  top: .1rem;
}

.sc-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color .2s, gap .25s;
  margin-top: auto;
}
.sc-link:hover {
  color: var(--champagne-dark);
  gap: .65rem;
}

/* ═════════════════════════════════════════════════════════════ LIFESTYLE */
#lifestyle {
  background: var(--navy-dark);
  padding: var(--section-py) 0 0;
}

.lifestyle-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 3.5rem;
}
.lifestyle-header h2 {
  font-size: clamp(2rem,3.5vw,3rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.lifestyle-header p { color: rgba(255,255,255,.55); font-size: 1rem; }

/* Mosaic grid — 3 cols × 2 rows, item 1 tall, item 4 wide */
.lifestyle-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 300px 280px;
  gap: 4px;
}

.mosaic-item {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
}
.mosaic-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(7,20,41,.82) 0%,
    rgba(7,20,41,.15) 55%,
    transparent 100%);
  transition: opacity .4s;
}
.mosaic-item:hover::after { opacity: .6; }

.mosaic-item img-inner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .7s ease;
}
.mosaic-item:hover { overflow: hidden; }
.mosaic-item:hover .mosaic-item-bg { transform: scale(1.04); }

/* explicit placement */
.mosaic-item:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.mosaic-item:nth-child(2) { grid-column: 2; grid-row: 1; }
.mosaic-item:nth-child(3) { grid-column: 3; grid-row: 1; }
.mosaic-item:nth-child(4) { grid-column: 2 / 4; grid-row: 2; }

.mosaic-caption {
  position: absolute;
  bottom: 1.3rem;
  left: 1.4rem;
  z-index: 2;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  transition: color .3s, bottom .3s;
  pointer-events: none;
}
.mosaic-item:hover .mosaic-caption {
  color: var(--champagne-light);
  bottom: 1.6rem;
}

/* ══════════════════════════════════════════════════════ SERVICE DETAILS */
.service-detail {
  padding: var(--section-py) 0;
  background: var(--white);
}
.service-detail-alt { background: var(--cream); }

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
  align-items: center;
}

/* image */
.detail-img-wrap {
  position: relative;
}
.detail-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.detail-img-accent {
  position: absolute;
  bottom: -1.75rem;
  right: -1.75rem;
  width: 110px; height: 110px;
  border: 2px solid var(--champagne);
  pointer-events: none;
}
.detail-img-accent-left {
  position: absolute;
  top: -1.75rem;
  left: -1.75rem;
  width: 110px; height: 110px;
  border: 2px solid var(--champagne);
  pointer-events: none;
}

/* content */
.detail-content .eyebrow { margin-bottom: .8rem; }
.detail-content h2 { color: var(--navy); margin-bottom: 1.5rem; }

.detail-lead {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--text-dark);
  line-height: 1.68;
  margin-bottom: 1rem;
}
.detail-body {
  font-size: .95rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
}

.detail-features { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 2.5rem; }

.detail-feature { display: flex; align-items: flex-start; gap: .9rem; }
.df-icon {
  width: 26px; height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--champagne);
  flex-shrink: 0;
  margin-top: .1rem;
}
.detail-feature strong {
  display: block;
  font-size: .87rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .2rem;
}
.detail-feature span {
  font-size: .84rem;
  color: var(--text-mid);
  line-height: 1.52;
}

/* ═══════════════════════════════════════════════════════════════ APPROACH */
.approach-section {
  background: var(--navy);
  padding: var(--section-py) 0;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
  margin-top: 4.5rem;
}

.approach-card {
  padding: 2.75rem 2.25rem;
  border: 1px solid rgba(200,169,106,.18);
  transition: border-color .3s, background .3s;
}
.approach-card:hover {
  border-color: rgba(200,169,106,.45);
  background: rgba(200,169,106,.04);
}

.approach-num {
  font-family: var(--serif);
  font-size: 3.8rem;
  font-weight: 300;
  color: rgba(200,169,106,.2);
  line-height: 1;
  margin-bottom: 1.75rem;
}

.approach-card h3 {
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 1rem;
}
.approach-card p {
  font-size: .92rem;
  color: rgba(255,255,255,.6);
  line-height: 1.72;
}

.approach-quote {
  text-align: center;
  max-width: 660px;
  margin: 5rem auto 0;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(200,169,106,.18);
}
.approach-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  color: rgba(255,255,255,.88);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}
.approach-quote cite {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--champagne);
  font-style: normal;
}

/* ═══════════════════════════════════════════════════════════════ INSIGHTS */
#insights {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.75rem;
}

.insight-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s, transform .3s;
}
.insight-card:hover {
  box-shadow: 0 14px 44px rgba(13,31,60,.1);
  transform: translateY(-4px);
}

.insight-img {
  height: 210px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.insight-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(7,20,41,.28);
}

.insight-cat {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--champagne);
  padding: .28rem .7rem;
}

.insight-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.insight-date {
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 500;
}

.insight-body h3 {
  font-size: 1.12rem;
  color: var(--navy);
  line-height: 1.35;
}
.insight-body p {
  font-size: .87rem;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
}
.insight-link {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--champagne-dark);
  transition: color .2s;
  margin-top: auto;
}
.insight-link:hover { color: var(--navy); }

/* ═══════════════════════════════════════════════════════════════ CONNECT */
.connect-section {
  background: var(--navy-mid);
  padding: var(--section-py) 0;
  text-align: center;
}
.connect-inner { max-width: 620px; margin: 0 auto; }
.connect-inner h2 {
  font-size: clamp(2rem,3.5vw,3rem);
  color: var(--white);
  margin-bottom: 1.5rem;
}
.connect-inner > p {
  color: rgba(255,255,255,.68);
  font-size: 1.02rem;
  margin-bottom: 2.75rem;
}
.connect-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.connect-note {
  font-size: .73rem;
  color: rgba(255,255,255,.32);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════ FOOTER */
#footer {
  background: var(--navy-dark);
  padding: 5rem 0 2.5rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5rem;
  padding-bottom: 4rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--champagne);
  display: block;
  margin-bottom: 1.1rem;
}
.footer-brand p {
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  line-height: 1.72;
  margin-bottom: 1.6rem;
}
.footer-social { display: flex; gap: .65rem; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.45);
  transition: border-color .2s, color .2s;
}
.footer-social a:hover {
  border-color: var(--champagne);
  color: var(--champagne);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2rem;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
  margin-bottom: 1.3rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col a {
  font-size: .83rem;
  color: rgba(255,255,255,.38);
  transition: color .2s;
}
.footer-col a:hover { color: var(--champagne); }

.footer-bottom { display: flex; flex-direction: column; gap: 1.25rem; }
.footer-legal {
  font-size: .7rem;
  color: rgba(255,255,255,.25);
  line-height: 1.72;
  max-width: 920px;
}
.footer-copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .72rem;
  color: rgba(255,255,255,.28);
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-copy span + span { color: var(--champagne); opacity: .6; }

/* ══════════════════════════════════════════════════════ REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .85s ease, transform .85s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero text animated in by JS body.loaded class */
.hero-eyebrow, .hero-content h1, .hero-sub, .hero-actions {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1s ease, transform 1s ease;
}
.hero-content h1   { transition-delay: .2s; }
.hero-sub          { transition-delay: .42s; }
.hero-actions      { transition-delay: .62s; }

body.loaded .hero-eyebrow,
body.loaded .hero-content h1,
body.loaded .hero-sub,
body.loaded .hero-actions {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger helper — applied via JS */
.stagger-1  { transition-delay: .08s !important; }
.stagger-2  { transition-delay: .16s !important; }
.stagger-3  { transition-delay: .24s !important; }
.stagger-4  { transition-delay: .32s !important; }

/* ════════════════════════════════════════════════════════════ RESPONSIVE */
@media (max-width: 1100px) {
  .detail-grid    { gap: 3.5rem; }
  .footer-main    { gap: 3rem; }
}

@media (max-width: 960px) {
  :root { --section-py: 4.5rem; }

  .services-grid    { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
  .pillars-grid     { grid-template-columns: repeat(2,1fr); }

  .detail-grid      { grid-template-columns: 1fr; gap: 3rem; }
  /* For reversed grids (.detail-grid-reverse), content comes first in DOM already */
  .detail-img-wrap img { height: 380px; }
  .lifestyle-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 250px 250px 250px;
  }
  .mosaic-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
  .mosaic-item:nth-child(2) { grid-column: 1; grid-row: 2; }
  .mosaic-item:nth-child(3) { grid-column: 2; grid-row: 2; }
  .mosaic-item:nth-child(4) { grid-column: 1 / 3; grid-row: 3; }
  .approach-grid    { grid-template-columns: 1fr; max-width: 560px; margin: 3.5rem auto 0; }
  .insights-grid    { grid-template-columns: 1fr 1fr; }
  .footer-main      { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-nav       { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  :root { --section-py: 3.5rem; --nav-h: 68px; }

  .pillars-grid { grid-template-columns: 1fr; }

  /* Mobile nav */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--navy-dark);
    padding: 1rem 2rem 2rem;
    gap: 0;
    border-top: 1px solid rgba(200,169,106,.2);
    box-shadow: 0 8px 32px rgba(0,0,0,.4);
  }
  .nav-links.is-open .nav-link {
    padding: .9rem 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    color: rgba(255,255,255,.82);
    font-size: .88rem;
  }
  .nav-links.is-open .nav-private-mobile {
    display: block;
    border-top: 1px solid rgba(200,169,106,.25);
    margin-top: .5rem;
    padding-top: .5rem;
  }
  .nav-link--private {
    color: var(--champagne) !important;
    font-weight: 600;
    letter-spacing: .1em;
  }

  .hero-content h1 { font-size: 2.6rem; }
  .hero-sub        { font-size: .95rem; }

  .detail-img-wrap img { height: 280px; }
  .detail-img-accent, .detail-img-accent-left { display: none; }
  .insights-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-nav    { grid-template-columns: 1fr 1fr; }
  .footer-copy   { flex-direction: column; gap: .5rem; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions    { flex-direction: column; }
  .connect-actions { flex-direction: column; align-items: center; }
  .footer-nav      { grid-template-columns: 1fr; }
  .lifestyle-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 220px);
  }
  .mosaic-item:nth-child(1) { grid-column: 1; grid-row: 1; }
  .mosaic-item:nth-child(2) { grid-column: 1; grid-row: 2; }
  .mosaic-item:nth-child(3) { grid-column: 1; grid-row: 3; }
  .mosaic-item:nth-child(4) { grid-column: 1; grid-row: 4; }
}
