/* =========================================
   ÉLEVÉ IMAGE IDENTITY — Global Styles
   Colour system: Bone · Charcoal · Steel Blue · Soft Grey · Stone
   ========================================= */

/* ── Colour tokens ───────────────────────────────────────────────
   --bone:            #F4F3F1   page background
   --white:           #FFFFFF   section backgrounds
   --charcoal:        #2F3133   primary text / dark sections
   --charcoal-2:      #5F6366   secondary text
   --steel-blue:      #6E8792   CTA primary
   --deep-steel:      #556A73   CTA hover
   --soft-grey:       #D9D7D4   dividers / panel backgrounds
   --stone:           #B7B3AE   subtle panel tint
   ────────────────────────────────────────────────────────────── */

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

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

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

body {
  background-color: #F4F3F1;
  color: #2F3133;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ---------- Navigation ---------- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(244, 243, 241, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(47, 49, 51, 0.08);
  transition: background 0.3s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 80px;
  position: relative;
}

/* Left / Right nav links */
.nav-links-left,
.nav-links-right {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex: 1;
}

.nav-links-right {
  justify-content: flex-end;
}

.nav-links-left a,
.nav-links-right a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2F3133;
  transition: color 0.25s ease;
  position: relative;
}

.nav-links-left a::after,
.nav-links-right a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #6E8792;
  transition: width 0.3s ease;
}

.nav-links-left a:hover::after,
.nav-links-right a:hover::after {
  width: 100%;
}

.nav-links-left a:hover,
.nav-links-right a:hover {
  color: #6E8792;
}

.nav-links-left a.active,
.nav-links-right a.active {
  color: #2F3133;
  border-bottom: 1px solid #6E8792;
}

/* Center logo */
.nav-logo {
  text-align: center;
  flex: 0 0 auto;
  padding: 0 2.5rem;
  cursor: pointer;
}

.nav-logo .logo-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: #2F3133;
  display: block;
  line-height: 1;
  margin-bottom: 0.15rem;
}

.nav-logo .logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.48rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #2F3133;
  display: block;
}

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  position: absolute;
  right: 1.5rem;
}

.nav-hamburger span {
  display: block;
  height: 1px;
  background: #2F3133;
  transition: all 0.3s ease;
}

.nav-hamburger span:nth-child(1) { width: 24px; }
.nav-hamburger span:nth-child(2) { width: 18px; }
.nav-hamburger span:nth-child(3) { width: 24px; }

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
  width: 24px;
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
  width: 24px;
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(244, 243, 241, 0.98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #2F3133;
  transition: color 0.25s ease;
}

.mobile-menu a:hover {
  color: #6E8792;
}

/* ---------- Hero — Home Page ---------- */
.hero-home {
  position: relative;
  display: block;
  width: 100%;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  max-width: 100vw;
  max-height: 100dvh;
  overflow: hidden;
  background: #1a1a1a;
}

.hero-home video.hero-bg,
.hero-home img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* ─── CTA buttons ─────────────────────────────────────────────
   Full image visible, no crop. Image is 16:9.
   Logo H-centre: ~75% from left | subtitle bottom: ~58% from top
   Buttons placed just below logo text at ~68% from top
────────────────────────────────────────────────────────────── */
.hero-cta {
  position: absolute;
  left: 75%;
  top: 82%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
}

.btn-primary {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.52rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: #6E8792;
  border: none;
  padding: 0.7rem 1.8rem;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary:hover {
  background: #556A73;
  color: #FFFFFF;
}

.btn-outline {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.52rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #2F3133;
  background: #F4F3F1;
  border: 1px solid #2F3133;
  padding: 0.7rem 1.8rem;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-outline:hover {
  background: #2F3133;
  color: #FFFFFF;
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  padding: 160px 2rem 80px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  background: #F4F3F1;
}

.page-hero .section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #6E8792;
  display: block;
  margin-bottom: 1.5rem;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #2F3133;
  margin-bottom: 1.5rem;
}

.page-hero p {
  font-size: 1.05rem;
  font-weight: 300;
  color: #5F6366;
  max-width: 580px;
  margin: 0 auto;
}

/* ---------- Process image hero ---------- */
.process-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #2F3133;
}

.process-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.process-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(47, 49, 51, 0.62) 0%,
    rgba(47, 49, 51, 0.78) 60%,
    rgba(47, 49, 51, 0.88) 100%
  );
}

.process-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 160px 2rem 80px;
  max-width: 820px;
}

.process-hero-content .section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #6E8792;
  display: block;
  margin-bottom: 1.5rem;
}

.process-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  margin-bottom: 1.6rem;
}

.process-hero-content p {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.85;
}

/* ---------- Sections ---------- */
.section {
  padding: 6rem 2rem;
}

.section-narrow {
  max-width: 680px;
  margin: 0 auto;
}

.section-wide {
  max-width: 1100px;
  margin: 0 auto;
}

.section-divider {
  width: 40px;
  height: 1px;
  background: #6E8792;
  margin: 0 auto 3.5rem;
}

.section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #6E8792;
  display: block;
  margin-bottom: 1.2rem;
  text-align: center;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: 0.04em;
  color: #2F3133;
  margin-bottom: 2rem;
  text-align: center;
}

.section-heading.left { text-align: left; }

.section-body {
  font-size: 1rem;
  line-height: 1.9;
  color: #5F6366;
  font-weight: 300;
}

.section-body p + p {
  margin-top: 1.4rem;
}

.section-body em {
  font-style: italic;
  color: #2F3133;
}

/* ---------- Approach / Content Blocks ---------- */
.approach-block {
  background: #FFFFFF;
  padding: 6rem 2rem;
}

.approach-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.approach-inner .section-body {
  text-align: left;
}

/* ---------- Soft-grey panel ---------- */
.panel-soft-grey {
  background: #D9D7D4;
  padding: 6rem 2rem;
}

/* ---------- Process Steps ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: #2F3133;
}

.process-step {
  border-top: 1px solid rgba(110,135,146,0.35);
  border-right: 1px solid rgba(110,135,146,0.2);
  padding: 3rem 2.5rem;
  background: #2F3133;
  transition: background 0.3s ease;
}

.process-step:hover {
  background: #393c3e;
}

.step-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: #6E8792;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.2rem;
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  margin-bottom: 0.9rem;
}

.step-body {
  font-size: 0.92rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.72);
  font-weight: 300;
}

/* ---------- Process Editorial Image — side-by-side layout ---------- */
.process-editorial {
  display: flex;
  align-items: stretch;
  width: 100%;
  background: #2F3133;
  min-height: clamp(420px, 55vw, 780px);
}

.process-editorial-img {
  display: block;
  width: 55%;
  flex-shrink: 0;
  height: clamp(420px, 55vw, 780px);
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(100%);
}

.process-editorial-caption {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 5rem;
}

.process-editorial-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  line-height: 1.1;
  margin: 0;
}

.process-editorial-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.06em;
  color: #6E8792;
  line-height: 1.1;
  margin: 0 0 2rem 0;
}

.process-editorial-caption::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: #6E8792;
  margin-top: 0;
}

/* ---------- Quote / Callout — Charcoal dark block ---------- */
.quote-section {
  padding: 6rem 2rem;
  background: #2F3133;
  text-align: center;
}

.quote-section blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: #FFFFFF;
  max-width: 780px;
  margin: 0 auto;
  letter-spacing: 0.03em;
}

/* ---------- About — Full-bleed image with floating left text ---------- */
.about-fullbleed {
  position: relative;
  width: 100%;
  min-height: 680px;
  display: flex;
  align-items: center;
  background: #2F3133;
}

.about-fullbleed-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Gradient fade — strong on left for text, transparent on right */
.about-fullbleed-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(47, 49, 51, 0.82) 0%,
    rgba(47, 49, 51, 0.60) 40%,
    rgba(47, 49, 51, 0.10) 70%,
    rgba(47, 49, 51, 0.00) 100%
  );
  z-index: 1;
}

/* Text block — left side, no block background */
.about-text-panel {
  position: relative;
  z-index: 2;
  width: 52%;
  max-width: 560px;
  padding: 8rem 3rem 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text-panel .section-eyebrow {
  text-align: left;
  color: #6E8792;
}

.about-text-panel .section-heading {
  text-align: left;
  color: #FFFFFF;
}

.about-text-panel .section-body {
  color: rgba(255,255,255,0.88);
}

.about-text-panel .section-body em {
  color: rgba(255,255,255,0.95);
}

.about-text-panel .section-divider {
  background: #6E8792;
  margin: 0 0 2.5rem;
}

/* ---------- CTA section — Charcoal ---------- */
.cta-section {
  background: #2F3133;
  padding: 6rem 2rem;
  text-align: center;
}

.cta-section .section-eyebrow {
  color: #6E8792;
}

.cta-section .section-heading {
  color: #FFFFFF;
}

.cta-section .section-body {
  color: rgba(255,255,255,0.75);
  text-align: center;
}

.cta-section .section-divider {
  background: #6E8792;
}

/* Contact form submit button — Steel Blue on contact page */
.btn-submit {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: #6E8792;
  border: none;
  padding: 1rem 2.8rem;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 1rem;
}

.btn-submit:hover {
  background: #556A73;
}

/* ---------- Contact Form ---------- */

/* Outer wrapper — full width, holds the background image */
.contact-bg-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #2F3133;
}

.contact-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

/* Dark tinted overlay so form stands out over the image */
.contact-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(47, 49, 51, 0.55);
  z-index: 1;
}

/* Inner container — centres the form card */
.contact-section {
  position: relative;
  z-index: 2;
  padding: 5rem 2rem 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* White card that holds the form */
.contact-form-wrap {
  background: #FFFFFF;
  padding: 3.5rem 3rem;
  border: 1px solid #D9D7D4;
  width: 100%;
  max-width: 640px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}

.form-group {
  margin-bottom: 2.2rem;
}

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #2F3133;
  margin-bottom: 0.75rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1px solid #D9D7D4;
  border-radius: 0;
  background: #F4F3F1;
  padding: 0.85rem 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 300;
  color: #2F3133;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #B7B3AE;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #6E8792;
  background: #FFFFFF;
}

.form-group textarea {
  resize: none;
  min-height: 130px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: #2F3133;
  border: 1px solid #D9D7D4;
  background: #FFFFFF;
}

/* ---------- Thin Ruled Separator ---------- */
.rule-separator {
  width: 100%;
  height: 1px;
  background: #D9D7D4;
  margin: 0;
  border: none;
}

/* ---------- Footer — Charcoal ---------- */
.site-footer {
  padding: 3.5rem 2rem;
  text-align: center;
  background: #2F3133;
  border-top: none;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #FFFFFF;
  display: block;
  margin-bottom: 0.3rem;
}

.footer-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.48rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #D9D7D4;
  display: block;
  margin-bottom: 1.8rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #FFFFFF;
  transition: color 0.25s ease;
}

.footer-nav a:hover {
  color: #6E8792;
}

.footer-copy {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.5rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: #D9D7D4;
}

/* ---------- Page Transition Fade ---------- */
body {
  animation: pageIn 0.5s ease both;
}

@keyframes pageIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 4rem; }

/* =====================================================
   RESPONSIVE — Large Tablet (≤1024px) · Tablet (≤768px) · Mobile (≤600px)
   ===================================================== */

/* ---------- Large Tablet / Small Desktop (≤1024px) ---------- */
@media (max-width: 1024px) {

  /* Nav — keep links but tighten spacing */
  .nav-links-left,
  .nav-links-right { gap: 2rem; }
  .nav-logo { padding: 0 1.8rem; }
  .nav-logo .logo-wordmark { font-size: 1.45rem; letter-spacing: 0.38em; }

  /* About — reduce left padding */
  .about-text-panel {
    width: 58%;
    padding: 7rem 2.5rem 5rem 3.5rem;
  }

  /* Process editorial — keep side by side but smaller padding */
  .process-editorial-caption { padding: 3rem 3.5rem; }
  .process-editorial-label,
  .process-editorial-sub     { font-size: clamp(2.2rem, 4vw, 4rem); }

  /* Process steps — 2 columns */
  .process-grid { grid-template-columns: repeat(2, 1fr); }

  /* Sections */
  .section        { padding: 5rem 2rem; }
  .approach-block { padding: 5rem 2rem; }
  .quote-section  { padding: 5rem 2rem; }
  .cta-section    { padding: 5rem 2rem; }
}

/* ---------- Tablet (≤768px) ---------- */
@media (max-width: 768px) {

  /* ── Nav — switch to hamburger ── */
  .nav-links-left,
  .nav-links-right { display: none; }
  .nav-hamburger   { display: flex; }
  .nav-inner       { justify-content: center; padding: 0 1.5rem; }
  .nav-logo .logo-wordmark { font-size: 1.4rem; letter-spacing: 0.35em; }
  .nav-logo .logo-sub      { font-size: 0.46rem; letter-spacing: 0.28em; }

  /* ── Hero — Home ── */
  .hero-home {
    height: 100dvh;
    max-height: 100dvh;
    overflow: hidden;
  }
  .hero-home video.hero-bg,
  .hero-home img.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  /* ── Typography ── */
  .section-heading           { font-size: clamp(1.7rem, 4.5vw, 2.4rem); }
  .section-body              { font-size: 0.97rem; line-height: 1.88; }
  .quote-section blockquote  { font-size: clamp(1.2rem, 3.5vw, 1.7rem); line-height: 1.55; }

  /* ── Sections ── */
  .section        { padding: 4.5rem 2rem; }
  .approach-block { padding: 4.5rem 2rem; }
  .quote-section  { padding: 5rem 2rem; }
  .cta-section    { padding: 5rem 2rem; }
  .page-hero      { padding: 130px 2rem 60px; }

  /* ── Buttons ── */
  .btn-primary,
  .btn-outline {
    padding: 0.85rem 2rem;
    font-size: 0.57rem;
    letter-spacing: 0.22em;
  }

  /* ── About ── */
  .about-fullbleed { min-height: 100svh; }
  .about-fullbleed-fade {
    background: linear-gradient(
      to bottom,
      rgba(47,49,51,0.82) 0%,
      rgba(47,49,51,0.70) 50%,
      rgba(47,49,51,0.55) 100%
    );
  }
  .about-text-panel {
    width: 100%;
    max-width: 100%;
    padding: 8rem 2.5rem 4rem;
  }
  .about-text-panel .section-heading { font-size: clamp(1.7rem, 5vw, 2.6rem); }
  .about-text-panel .section-body    { font-size: 0.93rem; line-height: 1.9; }

  /* ── Process hero ── */
  .process-hero            { min-height: 420px; }
  .process-hero-content    { padding: 120px 2rem 60px; text-align: center; }
  .process-hero-content h1 { font-size: clamp(1.8rem, 4.5vw, 2.8rem); }
  .process-hero-content p  { font-size: 0.95rem; }

  /* ── Process steps — 2 columns on tablet ── */
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .process-step { padding: 2.8rem 2rem; }
  .step-title   { font-size: 1.25rem; }
  .step-body    { font-size: 0.9rem; }

  /* ── Process editorial — side by side on tablet ── */
  .process-editorial        { flex-direction: row; }
  .process-editorial-img    { width: 50%; height: 50vw; min-height: 320px; }
  .process-editorial-caption { padding: 3rem 2.5rem; }
  .process-editorial-label,
  .process-editorial-sub    { font-size: clamp(2rem, 4.5vw, 3.5rem); }

  /* ── Contact ── */
  .contact-section     { padding: 3.5rem 2rem 6rem; max-width: 100%; }
  .contact-form-wrap   { padding: 3rem 2.5rem; }
  .form-group          { margin-bottom: 1.8rem; }

  /* ── Footer ── */
  .site-footer  { padding: 3.5rem 2rem 2.5rem; }
  .footer-nav   { gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
  .footer-nav a { font-size: 0.52rem; }
}

/* ---------- Mobile (≤600px) ---------- */
@media (max-width: 600px) {

  /* ── Global ── */
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  /* ── Hero — Home video ── */
  .hero-home {
    height: 100dvh !important;
    max-height: 100dvh !important;
    overflow: hidden !important;
    margin: 0 !important;
  }
  .hero-home video.hero-bg,
  .hero-home img.hero-bg {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  /* ── Navigation ── */
  .nav-inner { padding: 0 1.2rem; height: 70px; }
  .nav-logo .logo-wordmark { font-size: 1.25rem; letter-spacing: 0.28em; }
  .nav-logo .logo-sub      { font-size: 0.40rem; letter-spacing: 0.22em; }

  /* ── Typography ── */
  .section-heading           { font-size: clamp(1.5rem, 5vw, 2rem); }
  .section-body              { font-size: 0.94rem; }
  .quote-section blockquote  { font-size: clamp(1.1rem, 4vw, 1.4rem); line-height: 1.5; }

  /* ── Sections ── */
  .section        { padding: 3.5rem 1.5rem; }
  .approach-block { padding: 3.5rem 1.5rem; }
  .quote-section  { padding: 4rem 1.5rem; }
  .cta-section    { padding: 4rem 1.5rem; }
  .page-hero      { padding: 110px 1.5rem 50px; }

  /* ── Buttons ── */
  .btn-primary,
  .btn-outline {
    padding: 0.9rem 1.8rem;
    font-size: 0.53rem;
    letter-spacing: 0.18em;
    white-space: nowrap;
  }
  .btn-submit { width: 100%; text-align: center; }

  /* ── About ── */
  .about-fullbleed { min-height: 100svh; }
  .about-text-panel {
    padding: 6rem 1.5rem 3rem;
    width: 100%;
  }
  .about-text-panel .section-heading { font-size: clamp(1.55rem, 5.5vw, 2.2rem); }
  .about-text-panel .section-body    { font-size: 0.9rem; line-height: 1.85; }

  /* ── Process hero ── */
  .process-hero            { min-height: 360px; }
  .process-hero-content    { padding: 105px 1.5rem 48px; text-align: center; }
  .process-hero-content h1 { font-size: clamp(1.5rem, 5vw, 2.2rem); }
  .process-hero-content p  { font-size: 0.88rem; }

  /* ── Process steps — single column ── */
  .process-grid { grid-template-columns: 1fr; gap: 0; }
  .process-step { padding: 2.5rem 1.5rem; }
  .step-title   { font-size: 1.2rem; }
  .step-body    { font-size: 0.87rem; }

  /* ── Process editorial — stack on mobile ── */
  .process-editorial        { flex-direction: column; }
  .process-editorial-img    { width: 100%; height: 70vw; min-height: 260px; }
  .process-editorial-caption { padding: 2.5rem 1.5rem; }
  .process-editorial-label,
  .process-editorial-sub    { font-size: clamp(2rem, 7vw, 3rem); }

  /* ── Contact ── */
  .contact-section     { padding: 3rem 1.2rem 5rem; max-width: 100%; }
  .contact-form-wrap   { padding: 2rem 1.2rem; }
  .form-group          { margin-bottom: 1.6rem; }
  .form-group label    { font-size: 0.52rem; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 0.9rem; padding: 0.75rem 1rem; }

  /* ── Footer ── */
  .site-footer  { padding: 3rem 1.5rem 2rem; }
  .footer-logo  { font-size: 1.4rem; }
  .footer-nav   { gap: 1.2rem; flex-wrap: wrap; justify-content: center; }
  .footer-nav a { font-size: 0.48rem; }
  .footer-copy  { font-size: 0.44rem; margin-top: 1.5rem; }
}

/* ---------- Landing (one-page hero) ---------- */
.landing-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    /* Soft lens flare — visible but diffused */
    radial-gradient(ellipse 65% 50% at 50% 48%, rgba(255,255,255,0.38) 0%, rgba(235,235,235,0.15) 30%, rgba(180,180,180,0.04) 55%, transparent 72%),
    /* Ambient falloff */
    radial-gradient(ellipse 85% 75% at 50% 50%, rgba(70,70,72,0.35) 0%, rgba(35,35,37,0.65) 45%, #1a1a1c 80%),
    /* Deep base */
    #1a1a1c;
  overflow: hidden;
  padding: 6rem 1.5rem;
}
.landing-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}
.landing-welcome {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: #2F3133;
  margin-bottom: 1.2rem;
}
.landing-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.8rem, 10vw, 7rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  color: #FFFFFF;
  line-height: 1;
  margin: 0 0 1rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.55), 0 0 80px rgba(0,0,0,0.35);
}
.landing-sub {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: #2F3133;
  margin-bottom: 3rem;
}
.landing-enter {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: #2F3133;
  background: #F4F3F1;
  border: none;
  padding: 1.3rem 4rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.landing-enter:hover {
  background: #FFFFFF;
  transform: translateY(-2px);
}

/* ---------- Philosophy section ---------- */
.philosophy-section {
  background: #1a1a1c;
  color: #FFFFFF;
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}
.philosophy-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 0%, rgba(255,255,255,0.10) 0%, transparent 55%);
  pointer-events: none;
}
.philosophy-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.philosophy-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: #FFFFFF;
  margin-bottom: 4.5rem;
  letter-spacing: 0.02em;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 4rem;
  max-width: 480px;
  margin: 0 auto 4.5rem;
  text-align: left;
}
.philosophy-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.philosophy-grid li {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  line-height: 2.2;
}
.philosophy-close {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #FFFFFF;
}

@media (max-width: 600px) {
  .philosophy-grid { gap: 1rem 2.5rem; }
}

/* ============================================================
   Alternating black / white page sections (added refinement)
   Order: Landing(black) → 1st Page(white) → About(black)
        → Process(white) → Contact(black)
   ============================================================ */

/* ── About group : BLACK ───────────────────────────────────── */
.approach-block,
#philosophy.approach-block {
  background: #0a0a0a !important;
  color: #f4f1ea !important;
}
.approach-block .section-eyebrow,
.approach-block .section-heading,
.approach-block .section-body,
.approach-block .section-body p {
  color: #f4f1ea !important;
}
.approach-block .section-eyebrow { color: rgba(244,241,234,0.65) !important; }
.approach-block .section-divider { background: rgba(244,241,234,0.35) !important; }

.about-fullbleed,
#about.about-fullbleed {
  background: #0a0a0a !important;
  color: #f4f1ea !important;
}
.about-fullbleed .about-text-panel,
.about-fullbleed .section-heading,
.about-fullbleed .section-body,
.about-fullbleed .section-body p,
.about-fullbleed .section-body em {
  color: #f4f1ea !important;
}
.about-fullbleed .section-eyebrow { color: rgba(244,241,234,0.65) !important; }
.about-fullbleed .section-divider { background: rgba(244,241,234,0.35) !important; }
.about-fullbleed-fade { display: none !important; }

/* First quote section — sits inside About group → BLACK */
.quote-section:nth-of-type(1),
.about-fullbleed + .quote-section {
  background: #0a0a0a !important;
  color: #f4f1ea !important;
}
.about-fullbleed + .quote-section blockquote {
  color: #f4f1ea !important;
  border-color: rgba(244,241,234,0.35) !important;
}

/* ── Process group : WHITE ─────────────────────────────────── */
.process-hero,
#process.process-hero {
  background: #fbfaf6 !important;
  color: #1a1a1a !important;
  min-height: auto;
  padding: 7rem 2rem 4rem;
}
.process-hero-img,
.process-hero-overlay { display: none !important; }
.process-hero-content { position: relative; padding-top: 0 !important; }
.process-hero-content .section-eyebrow,
.process-hero-content h1,
.process-hero-content h2,
.process-hero-content p {
  color: #1a1a1a !important;
  text-shadow: none !important;
}
.process-hero-content .section-eyebrow { color: rgba(26,26,26,0.6) !important; }

.process-grid {
  background: #fbfaf6 !important;
}
.process-step {
  background: transparent !important;
  border-color: rgba(0,0,0,0.08) !important;
}
.process-step .step-number,
.process-step .step-title,
.process-step .step-body {
  color: #1a1a1a !important;
}
.process-step .step-number { color: rgba(26,26,26,0.55) !important; }

/* Second quote — sits in Process group → WHITE */
.process-grid + .quote-section {
  background: #fbfaf6 !important;
  color: #1a1a1a !important;
}
.process-grid + .quote-section blockquote {
  color: #1a1a1a !important;
  border-color: rgba(0,0,0,0.2) !important;
}

/* ── Contact : BLACK (keep existing dark treatment) ───────── */
.contact-bg-section {
  background: #0a0a0a !important;
}

/* Refined section transitions */
.approach-block,
.about-fullbleed,
.process-hero,
.process-grid,
.quote-section,
.contact-bg-section,
.first-page,
.landing-hero {
  transition: background 600ms ease;
}
