*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --linen:     #eeeae3;
  --off-white: #f7f4ef;
  --sand:      #d4c8b4;
  --stone:     #a09890;
  --taupe:     #7a7068;
  --mocha:     #3c2e24;
  --ink:       #1a1814;
  --cream:     #f2efe9;
  --warm-dark: #2a2118;
}

html {
  scroll-behavior: smooth;
  color-scheme: light only;
  background-color: #f7f4ef;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--ink);
  line-height: 1.7;
  font-weight: 300;
  -webkit-text-size-adjust: 100%;
}

body.bg-cream { background: var(--cream); }
body.bg-cream .page-hero { background: var(--cream); }
body.bg-cream .approach-pillar { background: var(--cream); }

/* ── UTILITIES ── */
.section-label {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 400;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
}

.section-title em { font-style: italic; color: var(--taupe); }

.btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  cursor: pointer;
  border: none;
}

.btn-dark { background: var(--ink); color: var(--off-white); }
.btn-dark:hover { background: var(--mocha); }
.btn-outline { background: transparent; border: 1px solid var(--stone); color: var(--ink); }
.btn-outline:hover { background: var(--linen); border-color: var(--taupe); }
.btn-sand { background: var(--sand); color: var(--mocha); }
.btn-sand:hover { background: var(--off-white); color: var(--mocha); }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1.6rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(242, 239, 233, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(160, 152, 144, 0.15);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--ink); }

.nav-links .nav-cta-btn {
  padding: 0.6rem 1.6rem;
  background: var(--ink);
  color: var(--off-white);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s;
}

.nav-links .nav-cta-btn:hover { background: var(--mocha); color: var(--off-white); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--off-white);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}

.nav-mobile.active { display: flex; }

.nav-mobile a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--ink);
  text-decoration: none;
}

.nav-mobile a:hover { color: var(--taupe); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10rem 4rem 6rem;
}

.hero-eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 2.5rem;
}

.hero-headline em { font-style: italic; color: var(--taupe); }

.hero-sub {
  font-size: 1.15rem;
  color: var(--taupe);
  max-width: 500px;
  margin-bottom: 3.5rem;
  line-height: 1.85;
}

.hero-sub strong { font-weight: 500; color: var(--mocha); }

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

.hero-right { position: relative; overflow: hidden; }

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(12%);
}

.hero-right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--off-white) 0%, transparent 14%);
}

/* ── BRIDGE EDITORIAL (home "The Work" section) ── */
.bridge-editorial {
  background: var(--cream);
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 0;
  align-items: stretch;
  min-height: 85vh;
  position: relative;
}

.bridge-editorial--reverse {
  grid-template-columns: 58% 42%;
  background: var(--off-white);
}

.bridge-photo {
  position: relative;
  overflow: hidden;
}

.bridge-photo {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── PHOTO OFFSET SHADOW ──
   Hard-edged drop shadow with no blur in brand sand tone.
   Apply to <img> elements via class="photo-offset-shadow"
   (see .claude/skills/photo-offset-shadow/SKILL.md) */
.photo-offset-shadow {
  box-shadow: 14px 14px 0 0 #CAB8AA;
}

.bridge-photo img {
  width: 68%;
  height: auto;
  max-height: 85%;
  object-fit: contain;
  object-position: center center;
  display: block;
  filter: grayscale(8%);
  -webkit-mask-image: radial-gradient(ellipse 85% 88% at 50% 50%, black 45%, transparent 92%);
  mask-image: radial-gradient(ellipse 85% 88% at 50% 50%, black 45%, transparent 92%);
}

/* Reverse variant — feeling photo at full column width with cover */
.bridge-editorial--reverse .bridge-photo {
  display: block;
}

.bridge-editorial--reverse .bridge-photo img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  -webkit-mask-image: radial-gradient(ellipse 80% 85% at 50% 50%, black 40%, transparent 88%);
  mask-image: radial-gradient(ellipse 80% 85% at 50% 50%, black 40%, transparent 88%);
}

.bridge-content {
  padding: 8rem 5rem 8rem 5rem;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bridge-content .section-label {
  margin-bottom: 1.4rem;
}

.bridge-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 2.5rem;
}

.bridge-headline em {
  font-style: italic;
  color: var(--taupe);
}

.bridge-body p {
  font-size: 1.1rem;
  color: var(--taupe);
  line-height: 1.85;
  margin-bottom: 1.4rem;
}

.bridge-body p:last-child {
  margin-bottom: 0;
}

.bridge-body p strong {
  color: var(--mocha);
  font-weight: 500;
}

/* ── VALUES STRIP ── */
.values {
  background: var(--ink);
  padding: 1.6rem 4rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.values span {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 400;
}

/* ── TEXT SECTIONS ── */
.text-section {
  padding: 6rem 4rem;
}

.text-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.text-intro {
  font-size: 1.15rem;
  color: var(--taupe);
  line-height: 1.85;
  max-width: 720px;
  margin-bottom: 3rem;
}

.text-body {
  font-size: 1.15rem;
  color: var(--taupe);
  line-height: 1.85;
  margin-bottom: 1.6rem;
}

.text-body strong { color: var(--mocha); font-weight: 500; }

.text-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.text-columns p {
  font-size: 1.15rem;
  color: var(--taupe);
  line-height: 1.85;
  margin-bottom: 1.4rem;
}

.text-columns p strong { color: var(--mocha); font-weight: 500; }

/* ── CREDENTIALS GRID ── */
.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.credential-card {
  padding: 2.2rem;
  border: 1px solid var(--linen);
  transition: border-color 0.3s;
}

.credential-card:hover { border-color: var(--sand); }

.credential-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.8rem;
}

.credential-card p {
  font-size: 1.05rem;
  color: var(--taupe);
  line-height: 1.75;
}

/* ── APPROACH PILLARS ── */
.approach-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.approach-pillar {
  padding: 2.5rem 2rem;
  border: 1px solid var(--linen);
  background: var(--off-white);
  transition: border-color 0.3s;
}

.approach-pillar:hover { border-color: var(--sand); }

.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 1rem;
}

.approach-pillar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.8rem;
}

.approach-pillar p {
  font-size: 1.05rem;
  color: var(--taupe);
  line-height: 1.75;
}

/* ── PAGE HERO (subpages) ── */
.page-hero {
  padding: 10rem 4rem 4rem;
  background: var(--cream);
}

.page-hero .inner {
  max-width: 1000px;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

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

.page-hero p {
  font-size: 1.15rem;
  color: var(--taupe);
  line-height: 1.85;
  max-width: 620px;
}

/* ── ABOUT LAYOUT ── */
.about-story {
  padding: 5rem 4rem;
}

.about-story .inner {
  max-width: 820px;
  margin: 0 auto;
}

.about-story p {
  font-size: 1.15rem;
  color: var(--taupe);
  line-height: 1.85;
  margin-bottom: 1.8rem;
}

.about-story p strong { color: var(--mocha); font-weight: 500; }

.about-story p em { color: var(--mocha); }

.about-image-full {
  padding: 0 4rem;
}

.about-image-full .inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.about-image-full img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  filter: grayscale(10%);
}

.about-quote-block {
  background: var(--ink);
  padding: 5rem 4rem;
  text-align: center;
}

.about-quote-block blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--sand);
  line-height: 1.55;
  max-width: 700px;
  margin: 0 auto;
}

/* ── OFFERS ── */
.offer-card {
  padding: 5rem 4rem;
  border-bottom: 1px solid var(--linen);
}

.offer-card:last-child { border-bottom: none; }

.offer-card .inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.offer-tag {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.offer-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 0.8rem;
}

.offer-title em { font-style: italic; color: var(--taupe); }

.offer-pitch {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--taupe);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.offer-for-title {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mocha);
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.offer-for-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.offer-for-list li {
  font-size: 1.1rem;
  color: var(--taupe);
  line-height: 1.75;
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.3rem;
}

.offer-for-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 5px;
  height: 1px;
  background: var(--sand);
}

.offer-transform {
  border: 1px solid var(--linen);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.offer-transform h4 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mocha);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.transform-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: start;
  margin-bottom: 0.8rem;
}

.transform-row .from { font-size: 1.05rem; color: var(--stone); line-height: 1.55; }
.transform-row .arrow { color: var(--sand); font-size: 1.2rem; }
.transform-row .to { font-size: 1.05rem; color: var(--mocha); line-height: 1.55; font-weight: 400; }

.offer-includes p {
  font-size: 1.1rem;
  color: var(--taupe);
  line-height: 1.75;
  margin-bottom: 0.6rem;
}

.offer-includes strong { color: var(--mocha); font-weight: 500; }

.offer-different {
  font-size: 1.1rem;
  color: var(--taupe);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.offer-different strong { color: var(--mocha); font-weight: 500; }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--off-white);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.65;
  flex-grow: 1;
}

.testimonial-card .attribution {
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 400;
}

.testimonial-card .attribution span {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: none;
  margin-top: 0.2rem;
}

.testimonial-video-single {
  max-width: 720px;
  margin: 0 auto 4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-video-single.below {
  margin: 4rem auto 0;
}

.testimonial-video {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-video video {
  width: 100%;
  height: auto;
  display: block;
  background: var(--ink);
  border-radius: 2px;
}

.testimonial-video .attribution {
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 400;
}

.testimonial-video .attribution span {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: none;
  margin-top: 0.2rem;
}

/* ── APPLY HERO ── */
.apply-hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.apply-hero-photo img {
  width: 538px;
  height: 538px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 50%;
  display: block;
}

/* ── APPLICATION FORM ── */
.application-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--linen);
  padding: 0.9rem 1rem;
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--sand); }

.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--off-white);
  border: none;
  padding: 1rem 2.4rem;
  cursor: pointer;
  transition: background 0.25s;
  align-self: flex-start;
  border-radius: 0;
}

.form-submit:hover { background: var(--mocha); }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.form-message { font-size: 1.05rem; color: var(--taupe); line-height: 1.6; }
.form-message.success { color: var(--mocha); }
.form-message.error { color: #8b4513; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--mocha);
  padding: 6rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,200,180,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner .section-label { color: var(--sand); opacity: 0.6; margin-bottom: 1.5rem; }

.cta-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.cta-banner h2 em { font-style: italic; color: var(--sand); }

.cta-banner .cta-desc {
  font-size: 1.1rem;
  color: rgba(242,239,233,0.55);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.85;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: 4rem;
}

.footer-top {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(212,200,180,0.15);
}

.footer-brand .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  color: var(--sand);
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.95rem;
  color: rgba(212,200,180,0.55);
  line-height: 1.7;
  max-width: 320px;
}

.footer-nav h4,
.footer-contact h4 {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: 0.6;
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }

.footer-nav a {
  font-size: 0.98rem;
  color: rgba(212,200,180,0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--sand); }

.footer-contact a,
.footer-contact p {
  font-size: 0.98rem;
  color: rgba(212,200,180,0.65);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--sand); }

.footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
}

.footer-contact .contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: rgba(212,200,180,0.5);
  transition: fill 0.2s;
}

.footer-contact .contact-item:hover svg { fill: var(--sand); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: rgba(242,239,233,0.2);
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(242,239,233,0.18);
  max-width: 500px;
  line-height: 1.6;
  text-align: right;
}

/* ── RESPONSIVE GRID UTILITIES ── */
/* Photo-left hero (About page) */
.grid-photo-left-hero {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3rem;
  align-items: center;
}

/* Photo-right with text (story sections) */
.grid-text-photo-right {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

/* Photo-left with text (tantra section) */
.grid-photo-text-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* 3-column offer layout (photo + 2 text cols) */
.grid-offer-3col {
  display: grid;
  grid-template-columns: 300px 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Split hero (Apply page) */
.grid-split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 1.4rem 1.8rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 2.5rem 1.8rem 3rem; order: 2; }
  .hero-left .hero-eyebrow { margin-bottom: 1.2rem; }
  .hero-left .hero-sub { margin-bottom: 2rem; }
  .hero-right { height: 100vw; min-height: 350px; max-height: 550px; order: 1; }
  .hero-right-overlay { background: linear-gradient(to bottom, transparent 50%, var(--off-white) 100%); }

  .values { padding: 1.4rem 1.8rem; gap: 2rem; }

  .text-section { padding: 4rem 1.8rem; }
  .text-columns { grid-template-columns: 1fr; gap: 0; }

  .bridge-editorial {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .bridge-editorial--reverse {
    grid-template-columns: 1fr;
  }
  .bridge-photo {
    height: auto;
    max-height: none;
    display: block;
    overflow: hidden;
  }
  .bridge-photo img {
    width: 100% !important;
    height: auto !important;
    max-height: 110vw !important;
    object-fit: cover !important;
    object-position: center 10% !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }
  /* Bridge photo 2 (feeling/archway): center body, cut from top rather than bottom */
  .bridge-editorial--reverse .bridge-photo img {
    object-position: center 70% !important;
    max-height: 120vw !important;
  }
  .bridge-content {
    padding: 3.5rem 1.8rem 4rem;
    max-width: none;
  }
  .bridge-headline {
    font-size: clamp(2.2rem, 8vw, 3rem);
    margin-bottom: 2rem;
  }


  .credentials-grid { grid-template-columns: 1fr; gap: 1rem; }
  .credential-card { padding: 1.6rem 1.4rem; }
  .approach-pillars { grid-template-columns: 1fr; gap: 1rem; }
  .approach-pillar { padding: 1.8rem 1.4rem; }

  .page-hero { padding: 8rem 1.8rem 3rem; }

  .apply-hero-grid { grid-template-columns: 1fr; gap: 0.5rem; }
  .apply-hero-photo { text-align: center; margin-top: -1rem; }
  .apply-hero-photo img { width: 220px; height: 220px; }

  .about-story { padding: 4rem 1.8rem; }
  .about-image-full { padding: 0 1.8rem; }
  .about-image-full .inner { grid-template-columns: 1fr; }
  .about-quote-block { padding: 3rem 1.8rem; }

  .offer-card { padding: 4rem 1.8rem; }
  .offer-card .inner { grid-template-columns: 1fr; gap: 2.5rem; }
  /* Offer photos — show full heads */
  .grid-offer-3col > div:first-child img {
    object-fit: cover !important;
    object-position: center 0% !important;
    max-height: 100vw;
  }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-video-single { margin-bottom: 2.5rem; }
  .testimonial-video-single.below { margin-top: 2.5rem; }

  .cta-banner { padding: 4rem 1.8rem; }

  footer { padding: 3rem 1.8rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-disclaimer { text-align: center; }

  /* Responsive grid utilities — all stack to single column */
  .grid-photo-left-hero {
    grid-template-columns: 1fr;
    padding: 8rem 1.8rem 3rem;
  }

  .grid-photo-left-hero > div:first-child {
    max-width: 280px;
    margin: 0 auto;
  }

  .grid-text-photo-right {
    grid-template-columns: 1fr;
  }

  .grid-text-photo-right > div:last-child {
    order: -1;
    max-width: 300px;
    margin: 0 auto;
  }

  .grid-photo-text-half {
    grid-template-columns: 1fr;
  }

  .grid-photo-text-half > div:first-child {
    max-width: 350px;
    margin: 0 auto;
  }

  .grid-offer-3col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .grid-offer-3col > div:first-child {
    max-width: none;
    margin: 0;
  }

  .grid-split-hero {
    grid-template-columns: 1fr;
    padding: 8rem 1.8rem 3rem;
  }

  .grid-split-hero > div:last-child {
    height: 50vw;
    min-height: 250px;
  }

  .grid-split-hero > div:last-child img {
    height: 100%;
  }

  /* Quote block with background image — smaller padding on mobile */
  .about-quote-block[style*="position: relative"] {
    padding: 4rem 1.8rem !important;
  }

  /* Offer transform rows — stack on very small screens */
  .transform-row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .transform-row .arrow {
    display: none;
  }

  .transform-row .to::before {
    content: '→ ';
    color: var(--sand);
  }

  /* Values strip — smaller text and gaps */
  .values span {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
  }

  /* Ensure all images don't overflow on mobile */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Section titles — slightly smaller on mobile */
  .section-title {
    font-size: clamp(2rem, 6vw, 3.8rem);
  }

  /* Page hero h1 — slightly smaller on mobile */
  .page-hero h1 {
    font-size: clamp(2.4rem, 8vw, 6rem);
  }
}
