/* =====================================================
   JAMIE GOODMAN EXECUTIVE COACHING
   Aesthetic: Monochrome Luxury Editorial
   Palette: Pure White / Near-Black / Layered Greys
   Fonts: Playfair Display (serif) + DM Sans (body)
   ===================================================== */

/* --- TOKENS --- */
:root {
  --white:      #ffffff;
  --off-white:  #f7f6f4;
  --grey-100:   #f0eeeb;
  --grey-200:   #e2dfda;
  --grey-300:   #c8c4be;
  --grey-400:   #9e9990;
  --grey-500:   #6b6660;
  --grey-600:   #4a4640;
  --grey-700:   #2e2b27;
  --grey-800:   #1c1a17;
  --black:      #0d0c0a;

  --ff-serif:   'Playfair Display', Georgia, serif;
  --ff-sans:    'DM Sans', system-ui, sans-serif;

  --navy:       #0a1f44;

  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:   cubic-bezier(0.0, 0.0, 0.2, 1);

  --max:        1160px;
  --pad:        clamp(24px, 5vw, 64px);
  --section:    clamp(32px, 3vw, 48px);
  --nav-h:      96px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}
body {
  background: var(--grey-200);
  color: var(--black);
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea, button { font-family: inherit; }

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* --- SHARED SECTION --- */
.section {
  scroll-snap-align: start;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + var(--section)) 0 var(--section);
}
.section .container { width: 100%; }

.label {
  display: block;
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-700);
  margin-bottom: 20px;
}

.section-heading {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--black);
  letter-spacing: -0.01em;
}
.section-heading em {
  font-style: italic;
  color: var(--grey-600);
}

/* --- REVEAL ANIMATIONS --- */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  animation: fadeUp 0.9s var(--ease-out) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   NAV
   ===================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: #0a1f44;
  transition: background 0.4s var(--ease);
}
.nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  justify-content: center;
  column-gap: 8px;
  align-items: center;
  width: 100%;
  padding: 0 var(--pad);
  height: 100%;
}
.nav__wordmark { margin: 0 0; }
.nav--scrolled {
  padding: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: rgba(0,0,0,0.08);
}

/* Nav light-text mode (over dark sections) */
.nav--light-text .nav__links a { color: rgba(255,255,255,0.7); }
.nav--light-text .nav__links a:hover { color: var(--white); }
.nav--light-text .nav__engage { border-color: rgba(255,255,255,0.5) !important; color: rgba(255,255,255,0.85) !important; }
.nav--light-text .nav__engage:hover { background: var(--white) !important; color: var(--black) !important; }
.nav--light-text .nav__wordmark { filter: none; }
.nav--light-text .nav__toggle span { background: var(--white); }
.nav--light-text { border-bottom-color: rgba(255,255,255,0.1) !important; }

.nav__wordmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  align-self: center;
}
.nav__wordmark .nav__logo {
  max-height: 110px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 44px;
}
.nav__links--left { justify-content: flex-end; }
.nav__links--right { justify-content: flex-start; }
.nav__links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.25s;
}
.nav__links a:hover { color: var(--white); }

.nav__engage {
  padding: 9px 22px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.5) !important;
  color: var(--white) !important;
  letter-spacing: 0.1em;
  transition: background 0.25s, color 0.25s !important;
}
.nav__engage:hover {
  background: var(--white) !important;
  color: #0a1f44 !important;
}

.nav__mobile-menu { display: none; }
.nav-spacer { display: none; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--black);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav__toggle.is-open span:first-child { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:last-child  { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  scroll-snap-align: start;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 16px) var(--pad) 60px;
  position: relative;
  background: var(--grey-300);
}
@media (max-width: 720px) {
  .nav-spacer { display: block; height: var(--nav-h); scroll-snap-align: none; }
  .hero { height: calc(100svh + 10px) !important; scroll-margin-top: 0; }
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__layout {
  position: relative;
  z-index: 1;
  margin-top: 0;
}

.hero__left {
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2.5px solid rgba(10,31,68,0.35);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-shrink: 0;
  width: 340px;
}

.hero__layout {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 48px;
}

.hero__profile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex-shrink: 0;
  width: 440px;
}

.hero__profile-photo-wrap {
  width: 75%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.hero__profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% center;
}

.hero__profile-credentials {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}

.hero__profile-cred {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--grey-600);
  padding-left: 12px;
  border-left: 1px solid var(--grey-400);
  line-height: 1.4;
}
.hero__profile-cred--header {
  font-weight: 700;
  color: var(--grey-800);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.72rem;
  border-left: none;
  padding-left: 0;
}

.hero__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero__overline {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey-200);
  margin-bottom: 28px;
  display: block;
}

.hero__headline {
  font-family: var(--ff-serif);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 0;
  text-align: center;
}
.hero__headline em {
  font-style: italic;
  color: var(--grey-600);
}

.hero__rule {
  width: 40px;
  height: 1px;
  background: var(--grey-400);
  margin-bottom: 0;
}

.hero__body {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--grey-600);
  text-align: center;
  max-width: 380px;
  line-height: 1.55;
  margin-bottom: 0;
}

.hero__cta {
  display: inline-block;
  padding: 10px 26px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.3s var(--ease);
}
.hero__cta:hover {
  background: #0d2a5c;
  transform: translateY(-2px);
}

/* Photo side */
.hero__photo-frame {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__photo-placeholder {
  width: 100%;
  height: 100%;
  background: var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-400);
}

.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 0;
}

.hero__stat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-left: 32px;
  border-left: 1px solid rgba(255,255,255,0.3);
  margin-bottom: 8px;
}
.hero__stat-num {
  font-family: var(--ff-serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--grey-200);
  line-height: 1.5;
  letter-spacing: 0.02em;
  padding-top: 12px;
}

/* Scroll indicator */
.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-600);
}
.hero__scroll svg {
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* =====================================================
   PULL QUOTE
   ===================================================== */
.pullquote {
  scroll-snap-align: start;
  background: #0a1f44;
  border-top: none;
  border-bottom: none;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + var(--section)) 0 var(--section);
}
.pullquote__text {
  font-family: var(--ff-serif);
  font-size: clamp(1.4rem, 3vw, 2.15rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
  max-width: 840px;
  margin: 0 auto 24px;
}
.pullquote__text em {
  font-style: italic;
  color: var(--white);
}
.pullquote__cite {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-style: normal;
}

/* =====================================================
   PHILOSOPHY
   ===================================================== */
.philosophy { background: var(--off-white); }
.philosophy .container { padding-left: var(--pad); }
.philosophy__left { padding-left: 0px; }

.philosophy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.philosophy__left {
  position: static;
}
.philosophy__left .section-heading {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 28px;
}
.philosophy__left .label {
  margin-bottom: 14px;
}

.philosophy__intro {
  font-size: 1rem;
  font-weight: 300;
  color: var(--grey-500);
  line-height: 1.8;
  margin-bottom: 0;
}

.philosophy__body {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--grey-500);
  line-height: 1.7;
  margin-bottom: 10px;
}
.philosophy__body strong {
  font-weight: 500;
  color: var(--grey-700);
}

.philosophy__pillars {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--grey-200);
}

.pillar {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid var(--grey-200);
}
.pillar__mark {
  font-family: var(--ff-serif);
  font-size: 0.78rem;
  font-style: italic;
  color: var(--grey-400);
  padding-top: 3px;
}
.pillar__content h3 {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.pillar__content p {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--grey-500);
  line-height: 1.7;
}

/* =====================================================
   DIVIDER BAND
   ===================================================== */
.divider-band {
  scroll-snap-align: start;
  background:
    radial-gradient(ellipse at center, rgba(255,255,255,0.04) 0%, rgba(0,0,0,0) 65%),
    #0a1f44;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + var(--section)) 0 var(--section);
  position: relative;
}
.divider-band .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
}
.divider-band__qualities {
  white-space: nowrap;
  font-size: clamp(0.85rem, 1.6vw, 1.2rem);
  margin: 0;
}
.divider-band__closer {
  margin: 2rem 0 0;
}
@media (max-width: 900px) {
  .divider-band__qualities { white-space: normal; }
}
.divider-band .container::before,
.divider-band .container::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  margin: 0 auto 2.25rem;
  background: rgba(226, 223, 218, 0.35);
}
.divider-band .container::after {
  margin: 2.25rem auto 0;
}
.divider-band__text {
  font-family: var(--ff-serif);
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
  font-weight: 400;
  color: var(--grey-400);
  line-height: 1.7;
  margin: 0 auto;
  letter-spacing: 0.01em;
}
.divider-band__text em {
  font-style: italic;
  color: var(--grey-200);
}

/* =====================================================
   APPROACH
   ===================================================== */
.approach { background: var(--grey-200); }

.approach__inner {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  align-items: center;
}

.approach__header {
  position: static;
  padding-top: 0;
  margin-top: -20px;
}
.approach__header .section-heading {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-top: 10px;
}

.approach__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.approach__item {
  background: var(--grey-100);
  border: 2.5px solid rgba(10,31,68,0.35);
  padding: 16px 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  transition-delay: calc(var(--i, 0) * 0.08s);
}
.approach__item:nth-child(1) { --i: 0; }
.approach__item:nth-child(2) { --i: 1; }
.approach__item:nth-child(3) { --i: 2; }
.approach__item:nth-child(4) { --i: 3; }

.approach__num {
  font-family: var(--ff-serif);
  font-size: 0.72rem;
  font-style: italic;
  color: var(--grey-400);
  flex-shrink: 0;
  padding-top: 4px;
}

.approach__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.approach__body h3 {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--grey-200);
  letter-spacing: -0.01em;
}
.approach__body p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--grey-600);
  line-height: 1.5;
}
.approach__bullets {
  list-style: disc;
  padding-left: 16px;
  margin: 0 0 auto;
  flex: 1;
}
.approach__bullets li {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--grey-600);
  line-height: 1.6;
  padding: 2px 0;
}
.approach__result {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--grey-700);
  font-style: italic;
  margin: 12px 0 0;
  padding-top: 8px;
  border-top: 1px solid var(--grey-200);
}

/* =====================================================
   OFFERINGS
   ===================================================== */
.offerings {
  background: var(--grey-200);
  align-items: flex-start;
  padding: calc(var(--nav-h) + 24px) 0 8px;
}
.offerings .container { align-self: center; max-width: 1400px; }

.offerings__header {
  margin-bottom: 10px;
  max-width: 720px;
}
.offerings__header .label { margin-bottom: 6px; }
.offerings__intro {
  font-family: var(--ff-serif);
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  font-weight: 400;
  color: var(--grey-700);
  line-height: 1.4;
  max-width: 680px;
  margin: 0;
}
.offerings__intro em {
  font-style: italic;
  color: var(--black);
}

.offerings__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 8px;
  justify-items: center;
}

.offering {
  background: var(--grey-100);
  border: 2.5px solid rgba(10,31,68,0.35);
  padding: 10px 14px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  transition-delay: calc(var(--i, 0) * 0.08s);
  width: 100%;
}
.offering:nth-child(1) { --i: 0; }
.offering:nth-child(2) { --i: 1; }
.offering:nth-child(3) { --i: 2; }
.offering:nth-child(4) { --i: 3; }

.offering h3 {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--black);
  letter-spacing: -0.01em;
  margin: 0 0 2px;
  line-height: 1.25;
}
.offering > p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--grey-600);
  line-height: 1.5;
  margin: 0;
}

.offering__details {
  list-style: none;
  padding: 4px 0 0;
  margin: auto 0 0;
  border-top: 1px solid rgba(158, 153, 144, 0.3);
}

.offering__bullets {
  list-style: disc;
  padding: 4px 0 0 16px;
  margin: 0;
}
.offering__bullets li {
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--grey-500);
  padding: 1px 0;
  letter-spacing: 0.015em;
  line-height: 1.4;
}
.offering__details li {
  font-family: var(--ff-sans);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--grey-500);
  padding: 2px 0;
  letter-spacing: 0.015em;
  line-height: 1.4;
}

.offerings__closer {
  text-align: center;
  padding-top: 4px;
}
.offerings__closer p {
  font-family: var(--ff-sans);
  font-style: normal;
  font-size: clamp(0.85rem, 1.1vw, 0.9rem);
  font-weight: 700;
  color: var(--grey-600);
  line-height: 1.45;
  margin: 0 auto 8px;
  max-width: 640px;
}
.offerings__cta {
  text-decoration: none;
  padding: 7px 18px;
  font-size: 0.6rem;
}

@media (max-width: 1100px) {
  .offerings__list { grid-template-columns: repeat(2, 1fr); }
}


/* =====================================================
   ABOUT
   ===================================================== */
.about { background: var(--grey-100); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.about__left {
  position: static;
}

.about__photo-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.about__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% center;
}

.about__photo-placeholder {
  width: 100%;
  height: 100%;
  background: var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-400);
}

.about__credentials {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about__cred {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--grey-400);
  padding-left: 14px;
  border-left: 1px solid var(--grey-200);
}

.about__body {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--grey-700);
  line-height: 1.48;
  margin-bottom: 4px;
}
.about__right .label {
  margin-top: -20px;
}
.about__right .section-heading {
  font-size: clamp(1.3rem, 2.6vw, 2.1rem);
  margin-bottom: 40px;
  margin-top: 8px;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--grey-200);
}
.about__stat { display: flex; flex-direction: column; gap: 2px; }
.about__stat-num {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1;
}
.about__stat-label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--grey-700);
  line-height: 1.4;
}

/* =====================================================
   IDEAL CLIENT
   ===================================================== */
.ideal {
  background: var(--grey-200);
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
}

.ideal__header { margin-bottom: 20px; }
.ideal__header .section-heading {
  font-size: clamp(1rem, 2.25vw, 1.6rem);
}

.ideal__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.ideal__item {
  background: var(--grey-100);
  border: 2.5px solid rgba(10,31,68,0.35);
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ideal__item p {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--grey-600);
  line-height: 1.65;
}
.ideal__item-header {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--grey-200);
  letter-spacing: -0.01em;
}
.ideal__bullets {
  list-style: disc;
  padding-left: 16px;
  margin: 0;
}
.ideal__bullets li {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--grey-600);
  line-height: 1.6;
  padding: 2px 0;
}

.ideal__note {
  margin-top: 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--grey-700);
}

/* =====================================================
   ENGAGE
   ===================================================== */
.engage { background: var(--grey-200); }

.engage__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.engage__body {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--grey-500);
  line-height: 1.7;
  margin-top: 14px;
  margin-bottom: 20px;
}

.engage__contact {
  padding-top: 16px;
  border-top: 1px solid var(--grey-200);
}
.engage__email {
  display: block;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.engage__email:hover { color: var(--grey-500); }
.engage__note {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--grey-400);
}

/* Form */
.engage__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-400);
}
.field input,
.field textarea {
  background: var(--off-white);
  border: 1px solid var(--grey-200);
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--black);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  resize: vertical;
  line-height: 1.6;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--grey-300); }
.field input:focus,
.field textarea:focus {
  border-color: var(--grey-600);
  background: var(--off-white);
  box-shadow: 0 0 0 3px rgba(74,70,64,0.06);
}

.engage__submit {
  padding: 15px 40px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  border: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s var(--ease);
  align-self: flex-start;
}
.engage__submit:hover {
  background: #0d2a5c;
  transform: translateY(-2px);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--black);
  padding: 48px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer__name {
  font-family: var(--ff-serif);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--grey-200);
  line-height: 1;
  margin-bottom: 4px;
}
.footer__sub {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-600);
}
.footer__nav {
  display: flex;
  gap: 36px;
}
.footer__nav a {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-500);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--grey-200); }
.footer__copy {
  width: 100%;
  padding-top: 28px;
  border-top: 1px solid var(--grey-800);
  font-size: 0.68rem;
  font-weight: 300;
  color: var(--grey-600);
  text-align: center;
  letter-spacing: 0.04em;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

/* --- Tablet --- */
@media (max-width: 960px) {
  .hero__profile { width: 300px; }
  .hero__left { width: 340px; padding: 28px 30px; }
  .approach__inner { grid-template-columns: 180px 1fr; gap: 32px; }
  .philosophy__grid { grid-template-columns: 1fr; gap: 24px; }
  .engage__inner { gap: 32px; }
  .offerings__list { grid-template-columns: repeat(2, 1fr); }
}

/* --- Mobile --- */
@media (max-width: 720px) {
  :root { --pad: 16px; --nav-h: 110px; }

  /* Nav */
  .nav { height: 110px; }
  .nav__inner { grid-template-columns: 1fr auto 1fr; padding: 0 var(--pad); }
  .nav__wordmark { grid-column: 2; justify-self: center; }
  .nav__wordmark .nav__logo { max-height: 75px; }
  .nav__toggle { display: flex; grid-column: 3; justify-self: end; }
  .nav__links { display: none; }
  .nav__mobile-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    position: fixed;
    top: var(--nav-h);
    left: 20px;
    right: 20px;
    background: var(--grey-300);
    border-radius: 12px;
    padding: 32px 24px;
    z-index: 199;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  }
  .nav__mobile-menu.is-open { display: flex; }
  .nav__mobile-menu a {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--black);
  }

  /* All sections: fixed height, scroll-snapped, no overflow */
  .hero, .section, .pullquote, .divider-band {
    height: calc(100svh + 10px) !important;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    scroll-margin-top: var(--nav-h);
  }
  .hero, .section, .pullquote, .divider-band {
    padding: 0 var(--pad) 0 !important;
    justify-content: center !important;
    align-items: center !important;
  }
  .hero { padding: var(--nav-h) var(--pad) 60px !important; }


  /* Shared */
  .section-heading { font-size: clamp(1.1rem, 4vw, 1.4rem); line-height: 1.2; }
  .label { font-size: 0.7rem; margin-bottom: 8px; }

  .hero__layout { transform: translateY(-40px); }

  /* Hero: stack card and portrait vertically */
  .hero__layout { flex-direction: row; align-items: center; gap: 14px; margin-top: 0; }
  .hero__left { width: 47%; padding: 14px 16px; }
  .hero__profile { width: 47%; gap: 8px; }
  .hero__profile-photo-wrap { aspect-ratio: 1/1; width: 100%; height: auto; }
  .hero__profile-cred { font-size: 0.65rem; }
  .hero__headline { font-size: clamp(1.1rem, 4vw, 1.5rem); margin-bottom: 10px; }
  .hero__rule { margin-bottom: 10px; }
  .hero__body { font-size: 0.85rem; line-height: 1.55; margin-bottom: 12px; }
  .hero__cta { padding: 10px 22px; font-size: 0.68rem; text-align: center; display: flex; align-items: center; justify-content: center; }
  .hero__scroll { display: none; }

  /* Who This Is For */
  .ideal__header { margin-bottom: 12px; }
  .ideal__header .section-heading { font-size: 0.85rem; }
  .ideal__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .ideal__item { padding: 14px 16px; }
  .ideal__item p { font-size: 0.82rem; line-height: 1.55; }
  .ideal__note { font-size: 0.65rem; margin-top: 10px; }

  /* Pull Quote */
  .pullquote__text { font-size: clamp(1rem, 3.5vw, 1.3rem); line-height: 1.5; }
  .pullquote__cite { font-size: 0.7rem; }

  /* Approach */
  .ideal .container { transform: translateY(-40px); }
  .pullquote .container { transform: translateY(-40px); }
  .approach .container { transform: translateY(-40px); }
  .divider-band .container { transform: translateY(-40px); }
  .philosophy .container { transform: translateY(-40px); }
  .offerings .container { transform: translateY(-20px); }
  .about { height: calc(100svh + 40px) !important; }
  .about .container { transform: translateY(-40px); }
  .engage .container { transform: translateY(-50px); }
  .engage { margin-top: 0; }
  .approach__inner { grid-template-columns: 1fr; gap: 10px; }
  .approach__header { padding-top: 0; }
  .approach__header .section-heading { font-size: 1.1rem; margin-top: 0; }
  .approach__list { grid-template-columns: 1fr 1fr; gap: 8px; }
  .approach__item { padding: 14px 16px; gap: 6px; }
  .approach__body h3 { font-size: 0.9rem; margin-bottom: 4px; }
  .approach__body p { font-size: 0.72rem; line-height: 1.45; }

  /* Divider band */
  .divider-band__qualities { font-size: 0.8rem; white-space: normal; }
  .divider-band__closer { font-size: 0.85rem; margin-top: 1rem; }

  /* Philosophy */
  .philosophy__grid { grid-template-columns: 1fr; gap: 12px; }
  .philosophy__left .section-heading { font-size: 1.1rem; margin-bottom: 6px; }
  .philosophy__intro { font-size: 0.75rem; line-height: 1.5; }
  .pillar { padding: 8px 0; }
  .pillar__content h3 { font-size: 0.85rem; margin-bottom: 3px; }
  .pillar__content p { font-size: 0.72rem; line-height: 1.45; }

  /* Offerings */
  .offerings { padding: var(--nav-h) var(--pad) 0; align-items: center; }
  .offerings__header { margin-bottom: 6px; }
  .offerings__intro { font-size: 0.67rem; line-height: 1.35; }
  .offerings__list { grid-template-columns: 1fr 1fr; gap: 4px; margin-bottom: 4px; }
  .offering { padding: 5px 6px; gap: 2px; }
  .offering h3 { font-size: 0.7rem; margin-bottom: 2px; }
  .offering > p { font-size: 0.58rem; line-height: 1.35; }
  .offering__details { padding: 3px 0 0; }
  .offering__details li { font-size: 0.54rem; padding: 1px 0; }
  .offerings__closer { padding-top: 4px; }
  .offerings__closer p { font-size: 0.65rem; margin-bottom: 4px; }
  .offerings__cta { padding: 5px 14px; font-size: 0.6rem; }

  /* About */
  .about__right .section-heading { font-size: 1rem; margin-bottom: 6px; }
  .about__body { font-size: 0.7rem; line-height: 1.45; margin-bottom: 4px; }
  .about__stats { grid-template-columns: repeat(3, 1fr); margin-top: 8px; padding-top: 8px; gap: 6px; }
  .about__stat-num { font-size: 1.1rem; }
  .about__stat-label { font-size: 0.56rem; }

  /* Engage */
  .engage { margin-top: -30px; height: calc(100svh + 60px) !important; }
  .engage__inner { grid-template-columns: 1fr; gap: 16px; }
  .engage__text .section-heading { font-size: 1.1rem; margin-bottom: 6px; }
  .engage__body { font-size: 0.75rem; margin-top: 6px; margin-bottom: 10px; }
  .engage__email { font-size: 0.82rem; }
  .engage__note { font-size: 0.65rem; }
  .engage__form { gap: 6px; }
  .field { gap: 3px; }
  .field label { font-size: 0.6rem; }
  .field input, .field textarea { font-size: 16px; padding: 7px 10px; }
  .field textarea { min-height: 44px; }
  .engage__submit { width: 100%; padding: 10px; font-size: 0.7rem; }

  /* Footer */
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer__nav { flex-wrap: wrap; gap: 16px; }
}

/* --- Small mobile --- */
@media (max-width: 480px) {
  :root { --pad: 14px; --nav-h: 90px; }
  .nav { height: 90px; }
  .nav__wordmark .nav__logo { max-height: 75px; }
  .hero__profile { width: 47%; }
  .hero__headline { font-size: clamp(0.95rem, 4vw, 1.15rem); }
  .section-heading { font-size: clamp(1rem, 4vw, 1.2rem); }
}

