/* =============================================
   ORSA — Paid Search for Family Law
   style.css
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

:root {
  --cream:       #FDFAF4;
  --sand:        #EDE5D3;
  --sand-light:  #F5F0E8;
  --gold:        #C4881E;
  --gold-light:  #D8A84A;
  --dark:        #1C1810;
  --warm-gray:   #897A69;
  --mid-gray:    #B8A990;
  --white:       #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --nav-h:    72px;
  --max-w:    1160px;
  --pad-x:    48px;
  --sec-pad:  110px;
  --gap:      2px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.7;
}

img { display: block; max-width: 100%; }
a   { color: inherit; }

/* =============================================
   NAVIGATION
   ============================================= */

nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 var(--pad-x);
  transition: background 0.45s ease, box-shadow 0.45s ease;
}

nav.nav--transparent {
  background: transparent;
}

nav.nav--solid,
nav.nav--scrolled {
  background: rgba(253, 250, 244, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(28, 24, 16, 0.07);
}

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

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
  color: var(--dark);
}

.nav__bear            { flex-shrink: 0; display: block; width: 52px; height: 52px; object-fit: contain; }
.nav__bear--dark      { display: none; }

nav.nav--transparent .nav__bear--light { display: block; }
nav.nav--transparent .nav__bear--dark  { display: none; }
nav.nav--scrolled    .nav__bear--light,
nav.nav--solid       .nav__bear--light { display: none; }
nav.nav--scrolled    .nav__bear--dark,
nav.nav--solid       .nav__bear--dark  { display: block; }

nav.nav--transparent .nav__logo { color: var(--white); }
nav.nav--scrolled   .nav__logo,
nav.nav--solid      .nav__logo { color: var(--dark); }

/* Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav__links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
}

nav.nav--transparent .nav__links a          { color: rgba(255,255,255,0.8); }
nav.nav--transparent .nav__links a:hover    { color: var(--gold-light); }
nav.nav--scrolled    .nav__links a,
nav.nav--solid       .nav__links a          { color: var(--dark); }
nav.nav--scrolled    .nav__links a:hover,
nav.nav--solid       .nav__links a:hover    { color: var(--gold); }

/* CTA link */
.nav__cta {
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em !important;
  padding: 9px 22px;
  border: 1px solid currentColor;
  transition: background 0.3s, color 0.3s, border-color 0.3s !important;
}

nav.nav--transparent .nav__cta              { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.4); }
nav.nav--transparent .nav__cta:hover        { background: rgba(255,255,255,0.1); border-color: var(--white); color: var(--white) !important; }
nav.nav--scrolled    .nav__cta,
nav.nav--solid       .nav__cta              { color: var(--dark); border-color: var(--dark); }
nav.nav--scrolled    .nav__cta:hover,
nav.nav--solid       .nav__cta:hover        { background: var(--dark); color: var(--cream) !important; }

/* =============================================
   HERO — VIDEO COLLAGE
   ============================================= */

.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image grid — 3 columns with cinematic background treatment */
.hero__grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--gap);
  /* Cinematic muting: warm tones allowed through, image stays atmospheric */
  filter: saturate(0.72) brightness(0.66) contrast(0.87);
}

.hero__cell {
  overflow: hidden;
  position: relative;
  background-color: #1C1208; /* warm dark fallback */
}

/* Seamless panoramic image across all 3 cells.
   300% width = full viewport across the 3 equal columns.
   Each cell shows its own third of the image via background-position. */
.hero__cell:nth-child(1) {
  background-image: url('img/orsa-hero-image.avif');
  background-size: 300% auto;
  background-position: 0% 38%;
}
.hero__cell:nth-child(2) {
  background-image: url('img/orsa-hero-image.avif');
  background-size: 300% auto;
  background-position: 50% 38%;
}
.hero__cell:nth-child(3) {
  background-image: url('img/orsa-hero-image.avif');
  background-size: 300% auto;
  background-position: 100% 38%;
}

/* Cinematic overlay — two layers:
   1. Cream/sand wash (top) to anchor the image in ORSA's warm palette
   2. Dark reading mask throughout to keep white text crisp */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(245, 240, 232, 0.22) 0%,
      rgba(237, 229, 211, 0.10) 30%,
      transparent 55%
    ),
    linear-gradient(
      to bottom,
      rgba(18, 12, 6, 0.44) 0%,
      rgba(18, 12, 6, 0.66) 52%,
      rgba(18, 12, 6, 0.58) 100%
    );
  z-index: 1;
}

/* Content */
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 820px;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 30px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7.5vw, 92px);
  font-weight: 300;
  line-height: 1.04;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 30px;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.70);
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.85;
}

/* =============================================
   BUTTONS
   ============================================= */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 38px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

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

.btn--dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn--dark:hover {
  background: var(--dark);
  color: var(--cream);
}

.btn--light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn--light:hover {
  background: rgba(255,255,255,0.10);
  border-color: var(--white);
}

/* =============================================
   PAGE HERO (interior pages)
   ============================================= */

.page-hero {
  padding: 160px var(--pad-x) 80px;
  background: var(--dark);
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
}

.page-hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.page-hero p {
  margin-top: 22px;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* =============================================
   LAYOUT HELPERS
   ============================================= */

.section        { padding: var(--sec-pad) var(--pad-x); }
.section--sand  { background: var(--sand); }
.section--dark  { background: var(--dark); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.sec-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--dark);
}

.sec-title--light { color: var(--white); }

.sec-title em {
  font-style: italic;
  color: var(--gold);
}

.sec-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--warm-gray);
  line-height: 1.85;
  max-width: 560px;
  margin-top: 22px;
}

.sec-body--light { color: rgba(255,255,255,0.58); }

/* =============================================
   INTRO BAND
   ============================================= */

.intro-band {
  padding: 80px var(--pad-x);
  background: var(--sand);
}

.intro-band__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 80px;
  align-items: center;
}

.intro-band__bear {
  width: 100%;
  max-width: 150px;
  opacity: 0.72;
  display: block;
}

.intro-band h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.3;
}

.intro-band h2 em {
  font-style: italic;
  color: var(--gold);
}

.intro-band p {
  margin-top: 18px;
  font-size: 16px;
  font-weight: 300;
  color: var(--warm-gray);
  line-height: 1.85;
}

/* =============================================
   SERVICE CARDS GRID
   ============================================= */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: 56px;
}

.card {
  padding: 48px 38px;
  background: var(--sand);
  transition: background 0.35s;
}

.card:hover {
  background: var(--dark);
}

.card__num {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 22px;
  transition: color 0.35s;
}

.card__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.25;
  transition: color 0.35s;
}

.card__body {
  font-size: 14px;
  font-weight: 300;
  color: var(--warm-gray);
  line-height: 1.85;
  transition: color 0.35s;
}

.card:hover .card__num   { color: var(--gold-light); }
.card:hover .card__title { color: var(--white); }
.card:hover .card__body  { color: rgba(255,255,255,0.58); }

.cards-cta {
  text-align: center;
  margin-top: 52px;
}

/* =============================================
   WHY GRID (dark bg)
   ============================================= */

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px 80px;
  margin-top: 60px;
}

.why-item__num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.28;
  line-height: 1;
  margin-bottom: 18px;
}

.why-item h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}

.why-item p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.52);
  line-height: 1.85;
}

/* Light variant (About page values) */
.why-item--light h3 { color: var(--dark); }
.why-item--light p  { color: var(--warm-gray); }

/* =============================================
   PROCESS STEPS
   ============================================= */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: 56px;
}

.step {
  padding: 48px 36px;
  background: var(--sand);
}

.step__num {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.28;
  line-height: 1;
  margin-bottom: 22px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 12px;
}

.step p {
  font-size: 14px;
  font-weight: 300;
  color: var(--warm-gray);
  line-height: 1.85;
}

/* =============================================
   CTA BAND
   ============================================= */

.cta-band {
  padding: 110px var(--pad-x);
  background: var(--gold);
  text-align: center;
}

.cta-band__bear {
  width: 170px;
  margin: 0 auto 36px;
  display: block;
  opacity: 0.88;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 14px;
}

.cta-band p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  margin-bottom: 44px;
}

/* =============================================
   SERVICE DETAIL LIST (Services page)
   ============================================= */

.service-list { margin-top: 70px; }

.service-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 48px;
  padding: 56px 0;
  border-bottom: 1px solid var(--sand);
  align-items: start;
}

.service-row:first-child { padding-top: 0; }
.service-row:last-child  { border-bottom: none; padding-bottom: 0; }

.service-row__num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.30;
  line-height: 1;
  padding-top: 6px;
}

.service-row h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 16px;
}

.service-row p {
  font-size: 15px;
  font-weight: 300;
  color: var(--warm-gray);
  line-height: 1.9;
  max-width: 640px;
}

/* =============================================
   ABOUT SPLIT
   ============================================= */

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img {
  aspect-ratio: 3 / 4;
  background: var(--sand);
  overflow: hidden;
}

/* image zoom: DN3-style — scale in slightly, zoom out on scroll-in */
.zoom-wrap {
  overflow: hidden;
}
.zoom-wrap > * {
  transition: transform 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(1.06);
}
.zoom-wrap.in-view > * {
  transform: scale(1.0);
}

.about-text .eyebrow { margin-bottom: 20px; }

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 26px;
}

.about-text p {
  font-size: 15px;
  font-weight: 300;
  color: var(--warm-gray);
  line-height: 1.9;
  margin-bottom: 18px;
}

.about-text p:last-of-type { margin-bottom: 32px; }

/* =============================================
   BLOG / RESOURCES GRID
   ============================================= */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.blog-card { display: flex; flex-direction: column; }

.blog-card__img {
  height: 230px;
  margin-bottom: 26px;
  overflow: hidden;
  background: var(--sand);
}

.blog-card__img > * {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(1.06);
  display: block;
}

.blog-card:hover .blog-card__img > * { transform: scale(1.01); }

.blog-card__tag {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.blog-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 14px;
}

.blog-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--warm-gray);
  line-height: 1.85;
  flex: 1;
}

.blog-card__link {
  display: inline-block;
  margin-top: 22px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--dark);
  border-bottom: 1px solid var(--dark);
  padding-bottom: 3px;
  align-self: flex-start;
  transition: color 0.3s, border-color 0.3s;
}
.blog-card__link:hover { color: var(--gold); border-color: var(--gold); }

/* =============================================
   CONTACT PAGE
   ============================================= */

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 22px;
}

.contact-info p {
  font-size: 15px;
  font-weight: 300;
  color: var(--warm-gray);
  line-height: 1.9;
  margin-bottom: 16px;
}

.calendly-slot {
  background: var(--sand);
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  text-align: center;
}

.calendly-slot p {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--warm-gray);
  line-height: 1.6;
}

.calendly-slot small {
  display: block;
  margin-top: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--mid-gray);
  letter-spacing: 0.05em;
}

/* =============================================
   FOOTER
   ============================================= */

footer {
  padding: 60px var(--pad-x);
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  transition: color 0.3s;
}
.footer__logo:hover { color: var(--gold-light); }
.footer__bear { flex-shrink: 0; display: block; width: 52px; height: 52px; object-fit: contain; }

.footer__links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.footer__links a {
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.40);
  transition: color 0.3s;
}
.footer__links a:hover { color: var(--gold); }

.footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.20);
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   CERTIFICATION BADGES — Hero & Footer
   ============================================= */

.hero__certs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.hero__cert-badge img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  display: block;
  opacity: 0.88;
}

.footer__certs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer__cert-badge img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  display: block;
  opacity: 0.65;
}

.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }
.delay-4 { transition-delay: 0.40s; }

/* =============================================
   AGENCY INTRO (About page)
   ============================================= */

.agency-intro { max-width: 760px; }

.agency-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.18;
  margin-top: 18px;
  margin-bottom: 30px;
}

.agency-intro p {
  font-size: 16px;
  font-weight: 300;
  color: var(--warm-gray);
  line-height: 1.9;
  margin-bottom: 18px;
  max-width: 660px;
}

.agency-intro p:last-of-type { margin-bottom: 38px; }

/* =============================================
   BRAND CALLOUT (About page)
   ============================================= */

.brand-callout {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.brand-callout__mark {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.45;
  line-height: 1;
  margin-bottom: 10px;
}

.brand-callout blockquote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  border: none;
  padding: 0;
}

/* =============================================
   FIT NOTE (About page)
   ============================================= */

.fit-note {
  margin-top: 40px;
  font-size: 14px;
  font-weight: 300;
  color: var(--warm-gray);
  line-height: 1.85;
}

/* =============================================
   HAMBURGER TOGGLE
   ============================================= */

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 2px;
  z-index: 101;
  flex-shrink: 0;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.35s ease, opacity 0.25s ease;
  transform-origin: center;
}

/* Color: inherit from nav state */
nav.nav--transparent .nav__toggle { color: var(--white); }
nav.nav--scrolled    .nav__toggle,
nav.nav--solid       .nav__toggle { color: var(--dark); }

/* Animate to X when open */
.nav--open .nav__toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav--open .nav__toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav--open .nav__toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

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

@media (max-width: 960px) {
  :root {
    --pad-x:   24px;
    --sec-pad: 72px;
  }

  .cards-grid,
  .steps { grid-template-columns: 1fr; }

  .why-grid { grid-template-columns: 1fr; gap: 44px; }

  .about-split,
  .contact-split { grid-template-columns: 1fr; gap: 48px; }

  .about-img { aspect-ratio: 4 / 3; }

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

  .intro-band__inner { grid-template-columns: 1fr; gap: 28px; }

  .service-row { grid-template-columns: 1fr; gap: 12px; }
  .service-row__num { font-size: 36px; }

  /* Hide desktop nav links; show hamburger */
  .nav__links { display: none; }
  .nav__toggle { display: flex; }

  /* Mobile menu — drops below nav when open */
  .nav--open .nav__links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(253, 250, 244, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 8px var(--pad-x) 32px;
    gap: 0;
    border-top: 1px solid rgba(28, 24, 16, 0.07);
    box-shadow: 0 16px 32px rgba(28, 24, 16, 0.08);
    align-items: stretch;
    z-index: 99;
  }

  .nav--open .nav__links li {
    border-bottom: 1px solid var(--sand);
  }

  .nav--open .nav__links a {
    display: block;
    padding: 15px 0;
    font-size: 12px;
    color: var(--dark) !important;
  }

  .nav--open .nav__links a:hover { color: var(--gold) !important; }

  /* Strip the bordered CTA style on mobile */
  .nav--open .nav__links .nav__cta {
    border: none;
    padding-left: 0;
    padding-right: 0;
  }

  /* Force nav to solid cream when menu is open */
  .nav--open {
    background: rgba(253, 250, 244, 0.97) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    box-shadow: 0 1px 0 rgba(28, 24, 16, 0.07) !important;
  }

  .nav--open .nav__logo          { color: var(--dark) !important; }
  .nav--open .nav__bear--light   { display: none !important; }
  .nav--open .nav__bear--dark    { display: block !important; }
  .nav--open .nav__toggle        { color: var(--dark) !important; }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__cell:nth-child(2),
  .hero__cell:nth-child(3) { display: none; }

  .page-hero { padding: 140px var(--pad-x) 60px; }

  .article-body { padding: 0; }
}

/* =============================================
   ARTICLE BODY (blog post prose)
   ============================================= */

.article-body {
  max-width: 720px;
  margin: 0 auto;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.25;
  margin: 2.4em 0 0.7em;
}

.article-body h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.3;
  margin: 1.8em 0 0.5em;
}

.article-body p {
  font-size: 17px;
  font-weight: 300;
  color: var(--warm-gray);
  line-height: 1.85;
  margin-bottom: 1.2em;
}

.article-body strong {
  font-weight: 500;
  color: var(--dark);
}

.article-body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.article-body a:hover { color: var(--gold-light); }

.article-body ul,
.article-body ol {
  padding-left: 1.5em;
  margin-bottom: 1.4em;
}

.article-body li {
  font-size: 17px;
  font-weight: 300;
  color: var(--warm-gray);
  line-height: 1.75;
  margin-bottom: 0.5em;
}

.article-body figure.blog-image {
  margin: 2.2em 0;
}

.article-body figure.blog-image img {
  width: 100%;
  border-radius: 2px;
  display: block;
}

.article-footer {
  max-width: 720px;
  margin: 60px auto 0;
  padding-top: 36px;
  border-top: 1px solid var(--sand);
}
