/* ===========================================================
   AILYN LA TORRE — site stylesheet
   =========================================================== */

/* ============================================================
   LOCKED CORE — BRAND VARIABLES (see LOCKED.md item #3)
   Do NOT modify these values without explicit user approval.
   They cascade through every page and section. A change here
   silently shifts the entire visual system.
   ============================================================ */
:root {
  --bg: #fefdfb;
  --bg-soft: #fbf9f5;   /* very light beige — between --bg and --bg-alt, for soft section bands */
  --bg-alt: #f5f2eb;
  --bg-dark: #161513;
  /* INK PALETTE — Variant F (Soft Warm Charcoal). Locked.
     Replaced the original cool charcoal (#1a1815 / #4a4842 / #8c887d)
     to settle text into the warm cream paper without going earthy.       */
  --ink: #34302c;          /* soft warm charcoal — display, headlines, body */
  --ink-soft: #64605a;     /* warm taupe-grey — captions, intro body */
  --ink-mute: #7e7869;     /* eyebrow micro-caps — lifted darker for legibility */
  --line: rgba(140,136,125,0.22);
  --sage: #7c8a7e;
  --sage-deep: #5e6b62;
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --display: 'Cinzel', 'Cormorant Garamond', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --script: 'Mrs Saint Delafield', cursive;
  --max: 1500px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  /* PALETTE TOKENS — locked vocabulary for the project:
     "white"   → #ffffff (solid white)
     "beige"   → var(--bg-soft) (whisper beige)
     "texture" → wall.jpg + whisper overlay below (Variant B, locked)
     The deprecated paper.jpg + multiply combo is NEVER to be used again. */
  --texture-image: url("../img/texture/wall.jpg");
  --texture-overlay: rgba(252, 252, 252, 0.64);   /* neutral wash — no warmth added on top of the wall texture's own warmth */
}
/* ============== END LOCKED CORE — BRAND VARIABLES ============== */

/* ============================================================
   LOCKED CORE — TEXTURE UTILITY
   Apply .has-texture to any section that should carry the locked
   wall + whisper texture treatment. This pseudo-element pattern is
   the ONLY approved way to render texture on the site.
   ============================================================ */
.has-texture {
  position: relative;
  background-color: transparent;
  background-image: var(--texture-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.has-texture::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--texture-overlay);
  pointer-events: none;
  z-index: 0;
}
.has-texture > * { position: relative; z-index: 1; }
/* ============== END LOCKED CORE — TEXTURE UTILITY ============== */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: #fff;
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Fixed background video — sits behind everything, shows through
   any transparent section (currently only .curated-reveal). */
.bg-video {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background: #1a1815;
}
.bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) brightness(0.93);
}
/* Soft cinematic overlay — adds editorial mood + ensures
   white headline stays legible against any frame brightness. */
.bg-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0.22) 0%,
    rgba(0, 0, 0, 0.20) 45%,
    rgba(0, 0, 0, 0.32) 100%);
  pointer-events: none;
}

/* Sections that should COVER the body background image
   (everything that was previously transparent inheriting body --bg) */
.statement,
.intro,
.featured,
.quote,
.journal-section,
footer {
  background: var(--bg);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--sage); color: var(--bg); }

.eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: 0.66rem;
  color: var(--ink-mute);
}
.label {
  font-family: var(--sans);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.36em;
  font-size: 0.7rem;
}

/* Editorial section title — used on about + investment for the major headlines
   ("A Thoughtful Approach", "How I came to this work.", "A few things worth knowing"). */
.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.2;
  letter-spacing: 0.005em;
  color: var(--ink);
  margin: 0;
}
.section-title em {
  font-style: italic;
  color: var(--sage);
}

/* ============================================================
   LOCKED CORE — NAV STYLES (see LOCKED.md item #2)
   Do NOT modify these rules without explicit user approval.
   These rules pair with the JS observer in js/site.js (item #1).
   Changing one without the other breaks the transparency hand-off.
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(254, 253, 251, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background 0.4s ease, border-color 0.4s ease;
}
.nav.is-light {
  background: rgba(254, 253, 251, 0);
  border-bottom-color: rgba(255,255,255,0);
}
.nav.is-light .nav-links a,
.nav.is-light .nav-cta { color: #fff; }
.nav.is-light .nav-mark img { filter: none; }
.nav.is-light .nav-cta { border-color: rgba(255,255,255,0.5); }
.nav.is-light .nav-cta:hover { background: #fff; color: var(--ink); border-color: #fff; }
/* ================ END LOCKED CORE — NAV STYLES ================ */

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-mark {
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
}
.nav-mark:hover { opacity: 0.75; }
.nav-mark img {
  display: block;
  height: 48px;
  width: auto;
  /* Logo file is white-on-transparent. Default nav state is solid cream
     background, so we invert/darken the logo. Over the hero (.is-light)
     the filter is removed so the white shows through. */
  filter: brightness(0);
  transition: filter 0.4s ease;
}
@media (max-width: 720px) {
  .nav-mark img { height: 38px; }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.3s ease;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(.22,.61,.36,1);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  border: 1px solid var(--ink);
  padding: 0.75rem 1.6rem;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.nav-cta:hover { background: var(--ink); color: var(--bg); }

/* ============================================================
   Left-side cluster — hamburger + MENU label + logo.
   Right-side cluster — Inquire CTA + IG glyph.
   On homepage only (body.is-home), the hamburger and IG glyph are
   visible. On inner pages they are hidden on desktop; mobile (<1080px)
   shows the hamburger on every page. ============================================================ */
.nav-left  { display: inline-flex; align-items: center; gap: clamp(1rem, 2.4vw, 2rem); }
.nav-right { display: inline-flex; align-items: center; gap: 1.4rem; }

/* Hamburger button + MENU label */
.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.7rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  font: inherit;
  color: var(--ink);
  transition: opacity 0.3s ease;
}
body.is-home .nav-toggle { display: inline-flex; }
.nav-toggle:hover { opacity: 0.7; }

.nav-toggle-bars { display: inline-flex; flex-direction: column; justify-content: center; height: 16px; }
.nav-toggle-bars span {
  display: block; width: 22px; height: 1px; background: var(--ink); margin: 2.5px 0;
  transition: background 0.3s ease;
}
.nav-toggle-label {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: inherit;
  line-height: 1;
}

/* Light state (over hero / dark sections) */
.nav.is-light .nav-toggle { color: #fff; }
.nav.is-light .nav-toggle-bars span { background: #fff; }

/* Right-side IG glyph (homepage only on desktop) */
.nav-social {
  display: none;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  color: var(--ink);
  border: 1px solid rgba(26, 24, 21, 0.5);
  border-radius: 50%;
  transition: opacity 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
body.is-home .nav-social { display: inline-flex; }
.nav-social svg { width: 14px; height: 14px; }
.nav-social:hover { opacity: 0.7; }
.nav.is-light .nav-social { color: #fff; border-color: rgba(255, 255, 255, 0.55); }

/* Hero-state on homepage: hide the horizontal links, Inquire CTA, AND the
   logo so only the hamburger+MENU on the left and the IG glyph on the right
   remain over the rotating hero photos (KT Merry pattern). JS toggles
   .over-hero on .hero only — never set on inner pages. */
.nav.over-hero .nav-links,
.nav.over-hero .nav-cta,
.nav.over-hero .nav-mark { display: none; }

/* Hero-state on homepage: nav itself is fully invisible — no backdrop blur,
   no border, no fill. Only the floating hamburger+MENU on the left and the
   IG glyph on the right remain visible. The locked .nav.is-light block
   already zeroes the background; this strips the remaining frosted-blur
   effect that would otherwise still darken the photo subtly. */
.nav.over-hero {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}

@media (max-width: 1080px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  /* IG glyph hidden on mobile for now — mobile audit pass will revisit. */
  .nav-social { display: none; }
  body.is-home .nav-social { display: none; }
}

/* ============================================================
   MENU OVERLAY — frosted sage drawer (Phase 1, the locked menu)
   Slim drawer (~36% wide) sliding in from the LEFT. Sage at 82%
   opacity with 18px backdrop blur — homepage softly visible behind.
   To switch to a SOLID sage panel (Variation 2 fallback), set
   --menu-panel to a solid color and remove the backdrop-filter.
   ============================================================ */
:root {
  --menu-panel: rgba(94, 97, 81, 0.82);   /* V6 frosted (current) */
}
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0.55s;
}
.mobile-menu.open {
  visibility: visible;
  pointer-events: auto;
}
/* dark scrim outside the drawer — fades in for click-outside-to-close */
.mobile-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 14, 0.18);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.mobile-menu.open::before { opacity: 1; }

/* the drawer itself — slides in from the left edge */
.mobile-menu .menu-drawer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: clamp(280px, 36%, 540px);
  background: var(--menu-panel);
  -webkit-backdrop-filter: blur(18px) saturate(0.9);
  backdrop-filter: blur(18px) saturate(0.9);
  color: rgba(254, 253, 251, 0.98);
  padding: clamp(3rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(-100%);
  transition: transform 0.55s cubic-bezier(.22,.61,.36,1);
}
.mobile-menu.open .menu-drawer { transform: translateX(0); }

/* close X — top-right of the drawer */
.mobile-menu .close {
  position: absolute;
  top: clamp(1.4rem, 2.5vw, 2rem);
  right: clamp(1.4rem, 2.5vw, 2rem);
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  font-size: 0;       /* hide any text node */
}
.mobile-menu .close::before,
.mobile-menu .close::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 1px;
  background: rgba(254, 253, 251, 0.95);
}
.mobile-menu .close::before { transform: rotate(45deg); }
.mobile-menu .close::after  { transform: rotate(-45deg); }

/* full ailyn la torre wordmark — sits at the top of the drawer */
.mobile-menu .menu-logo {
  display: block;
  width: clamp(150px, 22vw, 220px);
  height: auto;
  margin: 0 0 clamp(1.5rem, 3vw, 2.4rem);
  /* logo file ships as white-on-transparent already, but a soft shadow
     gives it presence against the frosted sage panel */
  filter: drop-shadow(0 1px 8px rgba(20, 18, 14, 0.35));
  opacity: 0.95;
}

/* nav list */
.mobile-menu .menu-nav { margin: clamp(1rem, 2vw, 1.6rem) 0 0; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.mobile-menu .menu-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.6rem, 1.2vw, 1rem);
}
.mobile-menu .menu-nav li a {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  color: var(--bg);
  text-decoration: none;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: none;
  display: inline-block;
  text-shadow: 0 2px 14px rgba(20, 18, 14, 0.32);
  transition: color 0.3s ease, transform 0.3s ease;
}
.mobile-menu .menu-nav li a:hover { color: rgba(254, 253, 251, 0.7); transform: translateX(8px); }
.mobile-menu .menu-sub {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.58rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(254, 253, 251, 0.65);
  margin-top: 0.3rem;
  font-weight: 400;
  text-shadow: 0 1px 8px rgba(20, 18, 14, 0.4);
}

/* foot block — bio + locations + monogram + IG */
.mobile-menu .menu-foot {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 1.4rem;
  margin-top: 2rem;
}
.mobile-menu .menu-bio {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(254, 253, 251, 0.85);
  max-width: 320px;
  margin: 0;
  text-shadow: 0 1px 8px rgba(20, 18, 14, 0.35);
}
.mobile-menu .menu-locations {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(254, 253, 251, 0.65);
  margin: 0.6rem 0 0;
}
.mobile-menu .menu-foot-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.2rem;
}
/* ALP monogram — bottom right corner of the drawer (alt-mark-transparent.png).
   The PNG ships dark on transparent, so we invert to white for the sage panel. */
.mobile-menu .menu-mark {
  width: clamp(72px, 7vw, 96px);
  height: auto;
  opacity: 0.92;
  filter: brightness(0) invert(1) drop-shadow(0 1px 6px rgba(20, 18, 14, 0.4));
}
.mobile-menu .menu-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: rgba(254, 253, 251, 0.92);
  border: 1px solid rgba(254, 253, 251, 0.55);
  border-radius: 50%;
}
.mobile-menu .menu-social svg { width: 14px; height: 14px; }

/* mobile: drawer fills the full screen since there's no room for the page to breathe beside it */
@media (max-width: 700px) {
  .mobile-menu .menu-drawer { width: 100%; }
  .mobile-menu .menu-foot { grid-template-columns: 1fr; }
  .mobile-menu .menu-foot-right { flex-direction: row; align-items: center; align-self: flex-start; }
}

/* lock body scroll while menu is open */
body.menu-open { overflow: hidden; }

/* HERO (home) */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: #0c0b0a;
}
.hero-stage { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1800ms ease-in-out;
  animation: kenburns 16000ms ease-in-out infinite alternate;
}
.hero-slide.active { opacity: 1; }
@keyframes kenburns {
  from { transform: scale(1.0); }
  to   { transform: scale(1.08); }
}

/* Hero pair slide — two verticals side-by-side */
.hero-slide.pair {
  background: #0c0b0a;
  display: flex;
  animation: none;
}
.hero-half {
  flex: 1 1 50%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.hero-half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: kenburns 18000ms ease-in-out infinite alternate;
}
.hero-half + .hero-half img { animation-delay: -9000ms; }
@media (max-width: 640px) {
  .hero-slide.pair { flex-direction: column; }
  .hero-half { flex: 1 1 50%; }
}
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,0.30) 0%,
      rgba(0,0,0,0.10) 22%,
      rgba(0,0,0,0.10) 60%,
      rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: #fff;
  padding: 0 var(--gutter);
  max-width: 1500px;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.6rem;
  display: inline-flex; align-items: center; gap: 1.2rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: inline-block;
  width: 28px; height: 1px;
  background: rgba(255,255,255,0.55);
}
.hero-wordmark {
  margin: 0 auto 2.4rem;
  display: flex;
  justify-content: center;
  /* Keep H1 semantics; image is the visible logo lockup with leaf graphic */
  text-indent: 0;
  font-size: 0;
  line-height: 0;
}
.hero-wordmark img {
  width: clamp(340px, 66vw, 840px);
  height: auto;
  display: block;
  /* Subtle drop-shadow for legibility over varied photographs */
  filter: drop-shadow(0 2px 24px rgba(0,0,0,0.25));
}
.hero-tagline {
  font-family: var(--script);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  line-height: 1;
  color: #fff;
  margin: 1rem 0 2rem;
  font-weight: 400;
}
.hero-meta {
  font-family: var(--sans);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.85);
}
.hero-meta span { margin: 0 0.9rem; opacity: 0.5; }
.hero-foot {
  position: absolute;
  bottom: 2.4rem; left: 0; right: 0;
  z-index: 2;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: end;
  color: rgba(255,255,255,0.85);
}
.hero-foot a {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 4px;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.hero-foot a:hover { color: #fff; border-color: #fff; }
.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.5);
  position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%; left: 0; right: 0;
  height: 100%;
  background: rgba(255,255,255,1);
  animation: scrollLine 2.6s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { top: -100%; }
  60%  { top: 100%; }
  100% { top: 100%; }
}
@media (max-width: 720px) {
  .hero-foot { flex-direction: column; gap: 1.2rem; align-items: flex-start; }
  .hero-eyebrow::before, .hero-eyebrow::after { width: 14px; }
}

/* SUB-HERO (interior pages) */
.sub-hero {
  position: relative;
  min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: #0c0b0a;
  padding: 8rem 0 5rem;
}
.sub-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  animation: kenburns 18000ms ease-in-out infinite alternate;
}
.sub-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.55) 100%);
}
.sub-hero-content {
  position: relative; z-index: 2;
  text-align: center; color: #fff;
  padding: 0 var(--gutter);
}
.sub-hero-eyebrow {
  font-family: var(--script);
  font-size: 2.4rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.8rem;
}
.sub-hero-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 5.6rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1.4rem;
}
.sub-hero-meta {
  font-family: var(--sans);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  font-size: 0.66rem;
  color: rgba(255,255,255,0.8);
}

/* STATEMENT */
.statement {
  /* texture: wall + whisper overlay (Variant B, locked palette) */
  position: relative;
  background-color: transparent;
  background-image: var(--texture-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 3.5rem) var(--gutter) clamp(1rem, 2vw, 1.5rem);
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.statement::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--texture-overlay);
  pointer-events: none;
  z-index: 0;
}
.statement > * { position: relative; z-index: 1; }
.statement-flourish {
  display: block;
  width: clamp(56px, 7.7vw, 98px);
  height: auto;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  opacity: 0.32;
  pointer-events: none;
}
.statement-eyebrow { color: var(--sage); margin-bottom: 2.2rem; font-weight: 500; }
.statement-sage { color: var(--sage); }
.statement-line {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.8rem, 4.4vw, 3.6rem);
  line-height: 1.3;
  letter-spacing: 0.005em;
  max-width: 1100px;
  margin: 0 auto;
}
.statement-line .div {
  display: inline-block;
  margin: 0 0.4em;
  color: var(--sage);
  font-style: normal;
  font-weight: 300;
}
.statement-rule { width: 64px; height: 1px; background: var(--sage); margin: 3rem auto 1.6rem; }
.statement-meta {
  font-family: var(--sans);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: 0.66rem;
  color: var(--ink-soft);
}

/* PUBS — legacy styles for the publication logos (used inside .editorial-pubs now) */
.pubs-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 5rem);
}
.pubs-label {
  font-family: var(--sans);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  font-size: 0.62rem;
  color: var(--ink-soft);
  flex-shrink: 0;
  position: relative;
}
.pubs-label::after {
  /* dash removed per design — keep just the colon after the label text */
  display: none;
  content: none;
}
@media (max-width: 720px) { .pubs-label::after { display: none; } }
.pubs-row { display: flex; align-items: center; flex-wrap: wrap; gap: clamp(2.4rem, 5vw, 4.5rem); justify-content: center; }
.pub-logo {
  font-weight: 400;
  font-size: 1.18rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: all 0.4s ease;
  font-family: var(--display);
}
.pub-logo.script { font-family: var(--script); font-size: 1.8rem; letter-spacing: 0; text-transform: none; line-height: 1; color: var(--ink-mute); }
.pub-logo.serif-italic { font-family: var(--serif); font-style: italic; font-size: 1.4rem; letter-spacing: 0.04em; text-transform: none; }
.pub-logo:hover { color: var(--ink); transform: translateY(-2px); }

/* INVESTMENT TEASER (used on home as mid-gallery break) */
.invest {
  position: relative;
  background: var(--bg-dark);
  color: var(--bg);
  padding: clamp(3.5rem, 8vw, 6.5rem) var(--gutter);
  text-align: center;
  overflow: hidden;
}
.invest-continued {
  position: absolute;
  bottom: clamp(1rem, 2vw, 1.6rem);
  right: clamp(1.4rem, 3vw, 2.4rem);
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(254, 253, 251, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  z-index: 2;
}
.invest-continued-arrow {
  display: inline-block;
  font-size: 1em;
  animation: continueBob 2.4s ease-in-out infinite;
}
@media (max-width: 720px) {
  .invest-continued {
    position: static;
    margin-top: 1.2rem;
    justify-content: center;
  }
}
.invest-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.30;
  filter: grayscale(40%);
  z-index: 0;
}
.invest-content { position: relative; z-index: 1; }
.invest-eyebrow { color: rgba(254, 253, 251, 0.7); margin-bottom: 1.8rem; }
.invest-headline {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.85rem, 3.8vw, 3rem);
  line-height: 1.25;
  max-width: 1000px;
  margin: 0 auto 2.6rem;
}
.invest-headline em { font-style: italic; }
.invest-headline .script {
  font-family: var(--script);
  font-style: normal;
  font-weight: 400;
  font-size: 1.15em;
  color: var(--sage);
  display: inline-block;
  line-height: 0.95;
  vertical-align: -0.04em;
}
.invest-floor {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.2rem;
  color: rgba(254, 253, 251, 0.7);
  margin-bottom: 2.6rem;
}
.invest-cta {
  display: inline-block;
  border: 1px solid rgba(254, 253, 251, 0.5);
  padding: 1.1rem 2.8rem;
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.invest-cta:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }
.invest-cta-row {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* INVEST QUOTE — dark testimonial band that mirrors .invest treatment with white text */
.invest-quote .iq-mark {
  font-family: var(--script);
  font-size: 4.5rem;
  line-height: 0.75;
  color: var(--bg);
  margin: 0 0 0.6rem;
}
.invest-quote .quote-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  min-height: 200px;
}
.invest-quote .quote-text {
  color: var(--bg);
  margin: 0 auto 1.4rem;
  max-width: 800px;
}
.invest-quote .quote-cite {
  color: rgba(254, 253, 251, 0.78);
}
.invest-quote .quote-dots {
  margin-top: 2rem;
}
.invest-quote .quote-dot {
  background: rgba(254, 253, 251, 0.45);
  opacity: 0.55;
}
.invest-quote .quote-dot.active {
  background: var(--bg);
  opacity: 1;
}

/* INQUIRE STRIP */
.inquire {
  background: #ffffff;
  padding: clamp(1.8rem, 4vw, 3.2rem) var(--gutter);
  text-align: center;
}
.inquire-eyebrow { color: var(--sage-deep); margin-bottom: 1.2rem; }
.inquire-headline {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 2.1rem);
  line-height: 1.3;
  max-width: 720px;
  margin: 0 auto 1.8rem;
}
.inquire-cta {
  display: inline-block;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 0.8rem 1.9rem;
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  transition: all 0.4s ease;
}
.inquire-cta:hover {
  background: var(--ink);
  color: var(--bg);
}
.inquire-detail {
  margin-top: 1.4rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--ink-mute);
}


/* ============================================================
   PUBLICATIONS STRIP — unified for home (.editorial-pubs) and portfolio (.port-pubs).
   Single source of truth so both pages render identically.
   Layout: "AS SEEN IN:" label on the left + logos row to its right, sage hairline below.
   Row wraps below the label automatically when the viewport is too tight.
   ============================================================ */
.editorial-pubs,
.port-pubs {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(0.8rem, 1.8vw, 1.6rem);
  margin: clamp(2rem, 4vw, 3.2rem) auto;
  padding: 0 0 clamp(1rem, 2vw, 1.5rem);
  max-width: 1180px;
  border-bottom: 1px solid rgba(124, 138, 126, 0.55);
}
.editorial-pubs .pubs-label,
.port-pubs .pubs-label {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--sage-deep);
  flex-shrink: 0;
  white-space: nowrap;
}
.editorial-pubs .pubs-row,
.port-pubs .pubs-row {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: clamp(0.9rem, 2vw, 2rem);
  flex: 1 1 auto;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  border: none;
}
.editorial-pubs .pub-logo,
.port-pubs .pub-logo { font-size: 1.05rem; }
.editorial-pubs .pub-logo.script,
.port-pubs .pub-logo.script { font-size: 1.5rem; }
.editorial-pubs .pub-logo.serif-italic,
.port-pubs .pub-logo.serif-italic { font-family: var(--serif); font-style: italic; letter-spacing: 0; }

/* ============================================================
   FOOTER — locked colophon layout (beige surface)
   3-col top row (nav · monogram · contact) +
   centered bottom block (name · tagline · locations · social · copyright)
   ============================================================ */
footer {
  background: var(--bg-soft);
  padding: clamp(1.4rem, 2.6vw, 2.2rem) var(--gutter) clamp(1rem, 1.6vw, 1.4rem);
  position: relative;
}
/* TOP ROW — 3-col: nav left, monogram center, contact right */
.fr-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(1.6rem, 3.5vw, 3rem);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto clamp(1.4rem, 2.8vw, 2.2rem);
}
/* LEFT — vertical nav */
.fr-nav {
  display: flex;
  flex-direction: column;
  gap: clamp(0.9rem, 1.5vw, 1.3rem);
  align-items: flex-start;
  text-align: left;
}
.fr-nav a {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}
.fr-nav a:hover { color: var(--sage-deep); }
/* CENTER — monogram */
.fr-brand {
  display: flex;
  justify-content: center;
}
.fr-brand-mark {
  width: clamp(110px, 12vw, 160px);
  height: auto;
  display: block;
  margin: 0;
  opacity: 0.92;
}
/* RIGHT — contact + website credit, right-aligned */
.fr-contact {
  text-align: right;
}
.fr-email {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  font-weight: 400;
  display: inline-block;
  transition: color 0.3s ease;
}
.fr-email:hover { color: var(--sage-deep); }
.fr-rule {
  display: block;
  width: 70px;
  height: 1px;
  background: var(--line);
  margin: 0.9rem 0 0.9rem auto;
}
.fr-credit {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  margin: 0 0 0.35rem;
}
.fr-credit-name {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 0.3rem;
}
.fr-credit-url {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
}
/* BOTTOM CENTERED BLOCK — name, tagline, locations, social, copyright */
.fr-bottom {
  margin: 0 auto;
  max-width: 1100px;
  text-align: center;
}
.fr-name {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(0.9rem, 1.4vw, 1.15rem);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 0.5rem;
}
.fr-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 0 0 0.55rem;
}
.fr-locations {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 0.85rem;
}
.fr-locations .fr-dot {
  margin: 0 0.7em;
  opacity: 0.5;
  color: var(--sage);
}
.fr-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin: 0 0 0.85rem;
  color: var(--ink-soft);
  transition: color 0.3s ease, opacity 0.3s ease;
}
.fr-social:hover { color: var(--sage-deep); }
.fr-social svg { width: 20px; height: 20px; display: block; }
.fr-copy {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
}
@media (max-width: 800px) {
  .fr-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: clamp(2rem, 4vw, 3rem);
  }
  .fr-nav, .fr-contact { align-items: center; text-align: center; }
  .fr-rule { margin: 1.4rem auto; }
}

/* ===== FLOATING VERTICAL BACK-TO-TOP — used on every page =====
   Sage SVG arrow + vertical micro-caps text, fades in past 320px scroll.
   Markup: <a href="#" class="return-btn" id="returnBtn" aria-label="Back to top">
             <svg ...><path d="M5 35 L5 1 M1 5 L5 1 L9 5"/></svg>
             <span class="return-btn-text">Back to Top</span>
           </a>
*/
.return-btn {
  position: fixed;
  right: clamp(0.9rem, 2vw, 1.6rem);
  bottom: clamp(2.4rem, 5vw, 4rem);
  z-index: 80;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.4rem;
  text-decoration: none;
  color: var(--sage-deep);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease, color 0.3s ease;
}
.return-btn.is-visible { opacity: 0.9; transform: translateY(0); pointer-events: auto; }
.return-btn:hover { opacity: 1; color: var(--ink); }
.return-btn-arrow { display: block; width: 10px; height: 36px; overflow: visible; }
.return-btn-arrow path { stroke: currentColor; fill: none; stroke-width: 1; }
.return-btn-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .return-btn { bottom: 1.4rem; right: 0.7rem; }
  .return-btn-arrow { height: 28px; }
  .return-btn-text { font-size: 0