/* ============================================================
   RON MANN DESIGN — shared design system
   "Raw + refined California modernism" — bold, image-first, editorial
   Corten steel · Douglas fir · cast concrete · bronze & brass
   Site concept crafted by Spatial Port · spatial-port.com
   ============================================================ */

/* ---------- Tokens ---------- */
:root{
  --char:            #161311;   /* near-black charcoal */
  --char-2:          #1E1813;   /* deep espresso */
  --char-3:          #251E18;   /* raised espresso */
  --bone:            #EDE6DA;   /* warm bone / plaster */
  --bone-2:          #C9BFAF;   /* muted bone */
  --bone-light:      #F2ECE2;
  --rust:            #A85C34;   /* Corten */
  --rust-hi:         #C67B4A;   /* Corten highlight */
  --rust-soft:       #b56b41;
  --olive:           #6E6F58;   /* muted sage/olive */
  --concrete:        #9A938A;   /* cast-concrete grey */
  --ink:             #1E1813;   /* text on bone */
  --line:            rgba(198,123,74,.22);
  --line-strong:     rgba(198,123,74,.44);

  --serif: "Fraunces", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Space Grotesk", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --gutter: clamp(20px, 5vw, 88px);
  --maxw: 1440px;

  --header-h: 84px;
}

/* ---------- Reset ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; overflow-x:clip; }
html,body{ margin:0; padding:0; width:100%; max-width:100%; }
body{
  font-family:var(--sans);
  background:var(--char);
  color:var(--bone);
  font-weight:300;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:clip;
}
img{ display:block; max-width:100%; background:var(--char-2); }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; }
h1,h2,h3,h4{ margin:0; font-weight:400; }
p{ margin:0; }
ul{ margin:0; padding:0; list-style:none; }

/* Lenis */
html.lenis,html.lenis body{ height:auto; }
.lenis.lenis-smooth{ scroll-behavior:auto !important; }
.lenis.lenis-stopped{ overflow:hidden; }

/* ---------- Typography helpers ---------- */
.eyebrow{
  font-family:var(--sans);
  font-weight:500;
  font-size:.72rem;
  letter-spacing:.42em;
  text-transform:uppercase;
  color:var(--rust-hi);
  display:inline-block;
}
.eyebrow--dark{ color:var(--rust); }
.eyebrow--concrete{ color:var(--concrete); }

.display{
  font-family:var(--serif);
  font-weight:500;
  line-height:.9;
  letter-spacing:-.02em;
  font-size:clamp(3.4rem, 12vw, 12rem);
}
.h2{
  font-family:var(--serif);
  font-weight:500;
  line-height:.98;
  letter-spacing:-.015em;
  font-size:clamp(2.4rem, 6.2vw, 5.6rem);
}
.h3{
  font-family:var(--serif);
  font-weight:500;
  line-height:1.06;
  letter-spacing:-.01em;
  font-size:clamp(1.7rem, 3vw, 2.8rem);
}
.lead{
  font-size:clamp(1.08rem,1.5vw,1.4rem);
  line-height:1.7;
  color:var(--bone);
  font-weight:300;
}
.muted{ color:var(--bone-2); }
.serif-italic{ font-family:var(--serif); font-style:italic; }

/* ---------- Layout ---------- */
.wrap{ max-width:var(--maxw); margin:0 auto; padding-left:var(--gutter); padding-right:var(--gutter); }
.wrap--wide{ max-width:1680px; }
.section{ padding:clamp(80px, 12vh, 190px) 0; position:relative; }
.section--tight{ padding:clamp(52px,8vh,110px) 0; }
.section--flush{ padding:0; }
.grid{ display:grid; gap:clamp(24px,4vw,80px); }
.cols-2{ grid-template-columns:1fr 1fr; }
.cols-3{ grid-template-columns:repeat(3,1fr); }
.cols-4{ grid-template-columns:repeat(4,1fr); }
.align-center{ align-items:center; }
.align-end{ align-items:end; }

/* Espresso section */
.section--espresso{ background:var(--char-2); }

/* Light bone / plaster sections (gallery contrast) */
.section--light{ background:var(--bone); color:var(--ink); }
.section--light .eyebrow{ color:var(--rust); }
.section--light .eyebrow--concrete{ color:#7d766a; }
.section--light .lead{ color:#33291f; }
.section--light .muted{ color:#6a5f50; }
.section--light .hairline{ background:rgba(30,24,19,.20); }
.section--light .display,.section--light .h2,.section--light .h3{ color:var(--ink); }

/* hairline */
.hairline{ height:1px; background:var(--line); border:0; margin:0; }
.rule-label{ display:flex; align-items:center; gap:20px; }
.rule-label .hairline{ flex:1; }

/* ---------- Film grain + scroll bar ---------- */
.grain{
  position:fixed; inset:0; z-index:9000; pointer-events:none; opacity:.06;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode:overlay;
}
.scroll-progress{
  position:fixed; top:0; left:0; height:2px; width:0%; z-index:9500;
  background:linear-gradient(90deg,var(--rust),var(--rust-hi));
  box-shadow:0 0 12px rgba(198,123,74,.55);
}

/* ---------- Custom cursor ---------- */
.cursor-dot,.cursor-ring{
  position:fixed; top:0; left:0; z-index:9600; pointer-events:none;
  border-radius:50%; transform:translate(-50%,-50%);
  mix-blend-mode:difference;
}
.cursor-dot{ width:6px; height:6px; background:var(--rust-hi); }
.cursor-ring{
  width:34px; height:34px; border:1px solid rgba(198,123,74,.75);
  transition:width .3s var(--ease), height .3s var(--ease), background .3s var(--ease), opacity .3s;
}
.cursor-ring.is-hover{ width:66px; height:66px; background:rgba(198,123,74,.10); }
body.no-cursor .cursor-dot,body.no-cursor .cursor-ring{ display:none; }
@media (hover:none),(pointer:coarse){ .cursor-dot,.cursor-ring{ display:none !important; } }

/* ---------- Duotone / grain overlay for elevating old photos ---------- */
/* Applied to figure/mosaic/hero images via ::before overlay on the container */
.tone{ position:relative; }
.tone::before{
  content:""; position:absolute; inset:0; z-index:1; pointer-events:none;
  background:
    linear-gradient(180deg, rgba(22,19,17,.10), rgba(22,19,17,.30)),
    radial-gradient(120% 120% at 50% 0%, rgba(198,123,74,.10), transparent 60%);
  mix-blend-mode:multiply;
}

/* ---------- Unified photo frame — standard treatment for every raster photo ----------
   IMPORTANT DISCIPLINE: source photos are ~440–550px native. Never render them
   larger than ~1.4× native. A .photo-frame caps width, adds a matte keyline that
   disguises softness, and layers a warm duotone + fine grain so the vintage shots
   feel cohesive and intentional rather than stretched. */
.photo-frame{
  position:relative; overflow:hidden; background:var(--char-2);
  border:1px solid var(--line-strong);
  box-shadow:0 30px 70px -30px rgba(0,0,0,.7), inset 0 0 0 1px rgba(237,230,218,.05);
  border-radius:1px;
}
.photo-frame img{
  display:block; width:100%; height:100%; object-fit:cover;
}
/* warm duotone multiply + inner keyline that hides pixel softness */
.photo-frame::after{
  content:""; position:absolute; inset:0; z-index:2; pointer-events:none;
  background:
    linear-gradient(180deg, rgba(22,19,17,.06), rgba(22,19,17,.26)),
    radial-gradient(120% 120% at 50% -10%, rgba(198,123,74,.12), transparent 55%);
  mix-blend-mode:multiply;
  box-shadow:inset 0 0 0 1px rgba(237,230,218,.08);
}
/* fine film grain layer scoped to the frame (reinforces the site-wide grain locally) */
.photo-frame::before{
  content:""; position:absolute; inset:0; z-index:3; pointer-events:none; opacity:.09;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  mix-blend-mode:overlay;
}

/* ---------- Header ---------- */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:8000;
  display:flex; align-items:center; justify-content:space-between;
  height:var(--header-h);
  padding:0 var(--gutter);
  transition:background .5s var(--ease), backdrop-filter .5s, height .5s var(--ease), border-color .5s;
  border-bottom:1px solid transparent;
}
.site-header.is-condensed{
  height:66px;
  background:rgba(22,19,17,.74);
  backdrop-filter:blur(14px) saturate(1.2);
  -webkit-backdrop-filter:blur(14px) saturate(1.2);
  border-bottom:1px solid var(--line);
}
.brand{ display:flex; align-items:baseline; gap:12px; z-index:2; }
.brand .wordmark{
  font-family:var(--serif); font-weight:600; font-size:clamp(1.5rem,2vw,1.9rem);
  letter-spacing:.01em; color:var(--bone); line-height:1;
  transition:font-size .5s var(--ease);
}
.brand .wordmark em{ font-style:normal; color:var(--rust-hi); }
.is-condensed .brand .wordmark{ font-size:1.4rem; }
.nav{ display:flex; align-items:center; gap:clamp(18px,2vw,36px); }
.nav-links{ display:flex; align-items:center; gap:clamp(16px,1.8vw,34px); }
.nav-links a{
  font-size:.76rem; letter-spacing:.2em; text-transform:uppercase; font-weight:500;
  color:var(--bone-2); position:relative; padding:6px 0;
  transition:color .35s var(--ease);
}
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:0; height:1px; width:100%;
  background:var(--rust-hi); transform:scaleX(0); transform-origin:right; transition:transform .4s var(--ease);
}
.nav-links a:hover{ color:var(--bone); }
.nav-links a:hover::after{ transform:scaleX(1); transform-origin:left; }
.nav-links a.is-active{ color:var(--rust-hi); }
.nav-links a.is-active::after{ transform:scaleX(1); }

.btn-reserve{
  font-size:.72rem; letter-spacing:.2em; text-transform:uppercase; font-weight:500;
  border:1px solid var(--rust); color:var(--rust-hi);
  padding:12px 24px; border-radius:1px; position:relative; overflow:hidden;
  transition:color .4s var(--ease), border-color .4s;
  background:transparent;
}
.btn-reserve span{ position:relative; z-index:2; }
.btn-reserve::before{
  content:""; position:absolute; inset:0; background:linear-gradient(120deg,var(--rust),var(--rust-hi));
  transform:translateY(101%); transition:transform .45s var(--ease); z-index:1;
}
.btn-reserve:hover{ color:var(--char); border-color:var(--rust-hi); }
.btn-reserve:hover::before{ transform:translateY(0); }

.menu-toggle{
  display:none; background:none; border:0; cursor:pointer; z-index:2;
  width:42px; height:42px; flex-direction:column; gap:6px; align-items:center; justify-content:center;
}
.menu-toggle span{ width:28px; height:1.5px; background:var(--bone); transition:transform .4s var(--ease), opacity .3s; }
.menu-toggle.is-open span:nth-child(1){ transform:translateY(4px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2){ transform:translateY(-4px) rotate(-45deg); }

/* mobile overlay */
.mobile-menu{
  position:fixed; inset:0; z-index:7900; background:var(--char);
  display:flex; flex-direction:column; justify-content:center; align-items:center;
  gap:6px; transform:translateY(-100%); transition:transform .7s var(--ease-out), visibility .7s;
  padding:var(--gutter);
  visibility:hidden; overflow:hidden;
}
.mobile-menu.is-open{ transform:translateY(0); visibility:visible; }
@media (min-width:961px){ .mobile-menu{ display:none; } }
.mobile-menu a{
  font-family:var(--serif); font-weight:500; font-size:clamp(2rem,9vw,3.6rem); color:var(--bone);
  padding:8px 0; transition:color .3s, letter-spacing .4s var(--ease);
}
.mobile-menu a:hover{ color:var(--rust-hi); letter-spacing:.02em; }
.mobile-menu .mm-reserve{ margin-top:26px; }
.mobile-menu .mm-meta{ position:absolute; bottom:36px; left:0; right:0; text-align:center; color:var(--bone-2); font-size:.8rem; letter-spacing:.12em; }

/* ---------- Buttons / links ---------- */
.btn{
  display:inline-flex; align-items:center; gap:12px;
  font-size:.76rem; letter-spacing:.2em; text-transform:uppercase; font-weight:500;
  padding:16px 34px; border-radius:1px; position:relative; overflow:hidden;
  border:1px solid var(--rust); color:var(--rust-hi); background:transparent;
  transition:color .4s var(--ease), border-color .4s;
  cursor:pointer;
}
.btn span{ position:relative; z-index:2; }
.btn::before{
  content:""; position:absolute; inset:0; z-index:1;
  background:linear-gradient(120deg,var(--rust),var(--rust-hi));
  transform:translateY(101%); transition:transform .45s var(--ease);
}
.btn:hover{ color:var(--char); border-color:var(--rust-hi); }
.btn:hover::before{ transform:translateY(0); }
.btn--solid{ background:linear-gradient(120deg,var(--rust),var(--rust-hi)); color:var(--char); border-color:transparent; }
.btn--solid::before{ background:var(--char); }
.btn--solid:hover{ color:var(--rust-hi); }
.btn--ghost{ border-color:var(--bone-2); color:var(--bone); }
.btn--ghost::before{ background:var(--bone); }
.btn--ghost:hover{ color:var(--char); border-color:var(--bone); }
.section--light .btn{ color:var(--rust); }
.section--light .btn:hover{ color:var(--bone); }

.link-underline{
  display:inline-block; position:relative; color:var(--rust-hi);
  font-size:.8rem; letter-spacing:.18em; text-transform:uppercase; font-weight:500; padding-bottom:5px;
}
.link-underline::after{
  content:""; position:absolute; left:0; bottom:0; height:1px; width:100%;
  background:var(--rust-hi); transform:scaleX(1); transform-origin:left; transition:transform .4s var(--ease);
}
.link-underline:hover::after{ transform:scaleX(0); transform-origin:right; }
.section--light .link-underline{ color:var(--rust); }
.section--light .link-underline::after{ background:var(--rust); }

/* ---------- Hero — EDITORIAL COVER SYSTEM ----------
   Impact comes from typography, Corten colour fields, whitespace and composition.
   The vintage raster photo (native ~440–550px) is shown as a CRISP capped inset,
   NEVER stretched full-bleed. Photo render width is hard-capped so it stays sharp. */
.hero{
  position:relative; min-height:100svh; display:flex; align-items:stretch;
  overflow:hidden; background:var(--char);
}
.hero--mid{ min-height:auto; }

/* SPLIT EDITORIAL HERO (home) — big type on a charcoal/Corten field | crisp framed photo */
.hero__grid{
  position:relative; z-index:2; width:100%;
  display:grid; grid-template-columns:minmax(0,1.12fr) minmax(0,.88fr);
  align-items:center; gap:clamp(32px,5vw,88px);
  max-width:var(--maxw); margin:0 auto;
  padding:calc(var(--header-h) + clamp(48px,9vh,110px)) var(--gutter) clamp(64px,10vh,130px);
}
.hero__col-type{ position:relative; }
/* Corten hairline accent that reads as an editorial rule */
.hero__col-type::before{
  content:""; position:absolute; left:0; top:-14px; width:64px; height:2px;
  background:linear-gradient(90deg,var(--rust),var(--rust-hi));
}
/* framed photo column — capped so the source is never over-scaled.
   TPC_lead.jpg is ~363×440 native; 500px cap ≈ 1.4× max. */
.hero__figure{
  position:relative; width:100%; max-width:500px; margin-left:auto;
  aspect-ratio:4/5;
}
.hero__figure .photo-frame{ position:absolute; inset:0; }
.hero__figure img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
/* small Corten plate behind the frame for depth */
.hero__figure::before{
  content:""; position:absolute; right:-18px; bottom:-18px; width:62%; height:52%;
  background:linear-gradient(160deg,rgba(168,92,52,.55),rgba(198,123,74,.18));
  z-index:-1; border-radius:1px;
}

/* STACKED COVER HERO (section pages) — giant headline + capped centered image band */
.hero--mid .hero__inner{
  position:relative; z-index:2; width:100%;
  display:flex; flex-direction:column;
  padding:calc(var(--header-h) + clamp(48px,8vh,96px)) 0 clamp(56px,9vh,110px);
}
.hero--mid .hero__band{
  margin-top:clamp(34px,5vh,64px);
  width:100%;
}
/* centered image band whose width is capped so the source isn't overscaled;
   image is object-fit:cover inside a fixed-height letterbox with charcoal + Corten rule */
.hero--mid .hero__band-frame{
  position:relative; width:100%; max-width:620px; margin:0 auto;
  height:clamp(300px,44vh,500px);
  border-top:2px solid transparent;
  border-image:linear-gradient(90deg,var(--rust),var(--rust-hi)) 1;
}
.hero--mid .hero__band-frame .photo-frame{ position:absolute; inset:0; border-top:0; }
/* portrait product shot — narrower, taller frame so a tall object isn't cropped */
.hero--mid .hero__band-frame--portrait{
  max-width:440px; height:clamp(380px,58vh,620px);
}

/* Legacy full-bleed media hook kept for reduced-motion static fallback of split hero image */
.hero__media{ display:none; }
.hero__scrim{ display:none; }

.hero__eyebrow{ margin-bottom:26px; opacity:0; }
.hero__title{ margin-bottom:30px; max-width:16ch; }
.hero--mid .hero__title{ max-width:none; }
.hero__sub{ max-width:52ch; opacity:0; }
.hero--mid .hero__sub{ max-width:60ch; }
.hero__meta{
  display:flex; flex-wrap:wrap; gap:16px 30px; margin-top:40px; opacity:0;
  font-size:.72rem; letter-spacing:.22em; text-transform:uppercase; color:var(--bone-2);
}
.hero__meta span{ display:flex; align-items:center; gap:10px; }
.hero__meta span::before{ content:""; width:6px; height:6px; border-radius:50%; background:var(--rust); }
.hero__cta{ display:flex; flex-wrap:wrap; gap:16px; margin-top:44px; opacity:0; }

@media (max-width:860px){
  .hero{ min-height:auto; }
  .hero__grid{
    grid-template-columns:1fr; gap:clamp(30px,6vw,50px);
    padding:calc(var(--header-h) + clamp(40px,7vh,80px)) var(--gutter) clamp(48px,8vh,80px);
  }
  .hero__figure{ max-width:520px; margin:0 auto; aspect-ratio:5/4; }
  .hero__figure::before{ right:-12px; bottom:-12px; }
}

.scroll-cue{
  position:absolute; right:var(--gutter); bottom:clamp(40px,7vh,90px); z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:14px;
  font-size:.6rem; letter-spacing:.36em; text-transform:uppercase; color:var(--bone-2);
  writing-mode:vertical-rl;
}
@media (max-width:860px){ .scroll-cue{ display:none; } }
.scroll-cue .line{ width:1px; height:56px; background:linear-gradient(var(--rust-hi),transparent); writing-mode:horizontal-tb; animation:cueDrop 2.2s var(--ease) infinite; }
@keyframes cueDrop{ 0%{ transform:scaleY(0); transform-origin:top; } 45%{ transform:scaleY(1); transform-origin:top; } 55%{ transform:scaleY(1); transform-origin:bottom; } 100%{ transform:scaleY(0); transform-origin:bottom; } }

/* Splitting masked reveal */
.reveal-mask .word{ overflow:hidden; padding-bottom:.06em; }
.reveal-mask .char{ display:inline-block; transform:translateY(110%); }
.is-ready .reveal-mask.done .char{ transform:none; }

/* ---------- Scroll reveal (default visible; JS adds .anim) ---------- */
.is-ready .anim .fx{ opacity:0; transform:translateY(38px); }
.fx{ transition:none; }

/* ---------- Figures / images ---------- */
.figure{
  position:relative; overflow:hidden; background:var(--char-2); border-radius:1px;
  border:1px solid var(--line-strong);
  box-shadow:0 20px 50px -28px rgba(0,0,0,.6);
}
.figure img{ width:100%; height:100%; object-fit:cover; }
.figure--tall{ aspect-ratio:3/4; max-width:600px; }
.figure--wide{ aspect-ratio:16/10; }
.figure--square{ aspect-ratio:1/1; }
/* Hover deepens the keyline + duotone (no raster upscaling — that reveals grain) */
.figure.zoom::after{ transition:opacity .5s var(--ease), box-shadow .5s var(--ease); }
.figure.zoom:hover::after{ opacity:1; box-shadow:inset 0 0 0 1px var(--line-strong); }
/* warm duotone/vignette + fine grain overlay on figures to unify older photos */
.figure::after{
  content:""; position:absolute; inset:0; z-index:1; pointer-events:none;
  background:
    linear-gradient(180deg, rgba(22,19,17,.05), rgba(22,19,17,.24)),
    radial-gradient(120% 120% at 50% -10%, rgba(198,123,74,.10), transparent 55%);
  mix-blend-mode:multiply;
  opacity:.9; box-shadow:inset 0 0 0 1px rgba(237,230,218,.06);
}
/* fine film grain layer inside each figure */
.figure::before{
  content:""; position:absolute; inset:0; z-index:2; pointer-events:none; opacity:.08;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='fg'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23fg)'/%3E%3C/svg%3E");
  mix-blend-mode:overlay;
}
.figure__caption{
  position:absolute; left:0; bottom:0; right:0; z-index:2; padding:22px 24px;
  background:linear-gradient(transparent, rgba(22,19,17,.9));
  font-size:.72rem; letter-spacing:.18em; text-transform:uppercase; color:var(--bone-2);
}
.parallax-frame{ overflow:hidden; }
.parallax-frame img{ will-change:transform; }

/* ---------- Selected work — editorial blocks with a CAPPED framed photo ----------
   The photo is a crisp jewel, not a stretched wall. Media column has generous
   charcoal margin; the image sits in a .photo-frame capped in size. */
.work-block{
  display:grid; grid-template-columns:1fr 1fr; align-items:center;
  position:relative; background:var(--char);
}
.work-block--espresso{ background:var(--char-2); }
.work-block__media{
  position:relative; display:flex; align-items:center; justify-content:center;
  padding:clamp(40px,6vw,96px);
}
/* capped frame: never wider than ~580px so the ~440–550px source stays near-native */
.work-block__media .photo-frame{
  width:100%; max-width:580px; aspect-ratio:5/4;
}
.work-block__media img{ width:100%; height:100%; object-fit:cover; }
.work-block__body{
  display:flex; flex-direction:column; justify-content:center;
  padding:clamp(40px,5vw,90px) clamp(40px,6vw,96px) clamp(40px,5vw,90px) 0;
  position:relative;
}
.work-block--alt .work-block__media{ order:2; }
.work-block--alt .work-block__body{ order:1; padding:clamp(40px,5vw,90px) 0 clamp(40px,5vw,90px) clamp(40px,6vw,96px); }
.work-block__index{
  font-family:var(--serif); font-size:clamp(1rem,1.3vw,1.2rem); color:var(--rust);
  letter-spacing:.05em; margin-bottom:26px; display:block;
}
.work-block__title{
  font-family:var(--serif); font-weight:500; line-height:.94; letter-spacing:-.02em;
  font-size:clamp(2.6rem,4.6vw,5rem); color:var(--bone); margin-bottom:14px;
}
.work-block__loc{
  font-size:.74rem; letter-spacing:.26em; text-transform:uppercase; color:var(--rust-hi);
  margin-bottom:28px; display:block;
}
.work-block__desc{ color:var(--bone-2); font-size:clamp(1rem,1.2vw,1.16rem); line-height:1.7; max-width:46ch; margin-bottom:34px; }

/* project section header band (projects page) — editorial split: big title | capped photo.
   No full-bleed stretch; the photo is a capped crisp inset. */
.work-hero{
  position:relative; display:grid; align-items:center;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:clamp(30px,5vw,80px);
  max-width:var(--maxw); margin:0 auto;
  padding:clamp(48px,8vh,110px) var(--gutter) clamp(24px,4vh,48px);
  background:var(--char);
}
.work-hero__media{
  position:relative; display:flex; align-items:center; justify-content:flex-end;
}
.work-hero--alt .work-hero__media{ justify-content:flex-start; }
.work-hero__media .photo-frame{ width:100%; max-width:580px; aspect-ratio:5/4; }
.work-hero__media img{ width:100%; height:100%; object-fit:cover; }
.work-hero__scrim{ display:none; }
.work-hero__inner{ position:relative; z-index:2; }
.work-hero--alt .work-hero__inner{ padding-left:clamp(8px,3vw,48px); }
.work-hero__inner .work-block__index{ margin-bottom:20px; }
.work-hero__inner .work-block__title{ margin-bottom:14px; }
@media (max-width:860px){
  .work-hero{ grid-template-columns:1fr; gap:clamp(24px,5vw,40px); }
  .work-hero__media,.work-hero--alt .work-hero__media{ justify-content:center; order:-1; }
  .work-hero__media .photo-frame{ max-width:520px; }
  .work-hero--alt .work-hero__inner{ padding-left:0; }
}

/* ---------- Stat / count ---------- */
.stats{ display:grid; grid-template-columns:repeat(4,1fr); gap:clamp(18px,3vw,44px); }
.stat__num{ font-family:var(--serif); font-weight:500; font-size:clamp(2.8rem,5.2vw,4.6rem); line-height:1; color:var(--rust-hi); }
.stat__label{ margin-top:12px; font-size:.7rem; letter-spacing:.22em; text-transform:uppercase; color:var(--bone-2); }

/* ---------- Materials / craft strip ---------- */
.materials{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.material{
  background:var(--char); padding:clamp(34px,4vw,64px) clamp(24px,3vw,44px);
  display:flex; flex-direction:column; gap:16px; position:relative; overflow:hidden;
  transition:background .5s var(--ease);
}
.material:hover{ background:var(--char-2); }
.material__num{ font-family:var(--serif); font-size:.9rem; color:var(--rust); letter-spacing:.06em; }
.material__name{ font-family:var(--serif); font-weight:500; font-size:clamp(1.5rem,2.2vw,2.1rem); line-height:1.02; color:var(--bone); }
.material__desc{ font-size:.9rem; color:var(--bone-2); line-height:1.6; }

/* ---------- Award / press row ---------- */
.awards{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line); }
.award{
  background:var(--char-2); padding:clamp(30px,3.6vw,52px);
  display:flex; flex-direction:column; gap:14px;
}
.award__score{ font-family:var(--serif); font-weight:500; font-size:clamp(2.6rem,4.2vw,3.8rem); color:var(--rust-hi); line-height:1; }
.award__name{ font-size:.94rem; color:var(--bone); }
.award__cat{ font-size:.66rem; letter-spacing:.22em; text-transform:uppercase; color:var(--bone-2); }

/* ---------- Cards ---------- */
.card{
  background:var(--char-2); border:1px solid var(--line); border-radius:2px;
  padding:clamp(28px,3.2vw,46px); position:relative; overflow:hidden;
  transition:border-color .5s var(--ease), transform .5s var(--ease), background .5s;
}
.card::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(120% 90% at 50% 0%, rgba(198,123,74,.08), transparent 60%);
  opacity:0; transition:opacity .5s;
}
.card:hover{ border-color:var(--line-strong); transform:translateY(-4px); }
.card:hover::after{ opacity:1; }
.card__kicker{ font-size:.66rem; letter-spacing:.24em; text-transform:uppercase; color:var(--rust); margin-bottom:20px; }
.card .h3{ margin-bottom:16px; }
.card__price{ font-family:var(--serif); font-size:1.8rem; color:var(--rust-hi); }
.card__meta{ font-size:.74rem; letter-spacing:.12em; color:var(--bone-2); text-transform:uppercase; }
.card--feature{ border-color:var(--line-strong); background:linear-gradient(160deg,var(--char-3),var(--char-2)); }
.card--feature .card__kicker{ color:var(--rust-hi); }

.section--light .card{ background:#fff; border-color:rgba(30,24,19,.12); color:var(--ink); }
.section--light .card .h3{ color:var(--ink); }
.section--light .card__meta{ color:#7a6c58; }
.section--light .card:hover{ border-color:rgba(168,92,52,.5); }

/* feature line list */
.feat-list{ display:flex; flex-direction:column; gap:16px; }
.feat-list li{ display:flex; gap:16px; align-items:flex-start; color:var(--bone); font-size:1rem; }
.feat-list li::before{ content:""; margin-top:.62em; width:20px; height:1px; background:var(--rust); flex:none; }
.section--light .feat-list li{ color:#33291f; }

/* ---------- Pull quote / manifesto ---------- */
.pullquote{ font-family:var(--serif); font-style:italic; font-weight:400; line-height:1.18;
  font-size:clamp(2rem,5.4vw,4.6rem); color:var(--bone); max-width:22ch; letter-spacing:-.01em; }
.pullquote .by{ display:block; font-family:var(--sans); font-style:normal; font-size:.74rem; letter-spacing:.24em; text-transform:uppercase; color:var(--rust); margin-top:34px; }
.section--light .pullquote{ color:var(--ink); }
.section--light .pullquote .by{ color:var(--rust); }

.manifesto{
  position:relative; text-align:center; padding:clamp(90px,16vh,200px) 0; overflow:hidden;
}
/* full-bleed atmospheric background: HEAVILY TREATED so upscale pixelation is invisible —
   4px blur + strong charcoal scrim + warm Corten duotone. Type sits crisp on top. */
.manifesto__bg{ position:absolute; inset:0; z-index:0; overflow:hidden; }
.manifesto__bg img{ width:100%; height:100%; object-fit:cover; filter:blur(4px) saturate(.9); transform:scale(1.06); }
.manifesto__bg::after{ content:""; position:absolute; inset:0;
  background:linear-gradient(rgba(22,19,17,.88),rgba(22,19,17,.92)),
  radial-gradient(120% 90% at 50% 0%, rgba(198,123,74,.16), transparent 55%); }
.manifesto .wrap{ position:relative; z-index:1; }
.manifesto q{ font-family:var(--serif); font-style:italic; font-weight:400; quotes:none;
  font-size:clamp(2rem,5.6vw,5rem); line-height:1.12; letter-spacing:-.01em; color:var(--bone);
  display:block; max-width:20ch; margin:0 auto; }
.manifesto cite{ display:block; font-style:normal; margin-top:40px; font-size:.76rem; letter-spacing:.26em; text-transform:uppercase; color:var(--rust-hi); }

/* ---------- Split feature ---------- */
.split{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(30px,5vw,90px); align-items:center; }
.split--reverse .split__media{ order:2; }
.split__body .h2{ margin-bottom:26px; }
.split__body .lead{ margin-bottom:24px; }

/* ---------- Horizontal scroll gallery ---------- */
.hscroll-outer{ position:relative; }
.hscroll{ display:flex; gap:clamp(18px,2vw,36px); padding:0 var(--gutter); align-items:stretch; }
.hscroll__panel{ flex:0 0 min(82vw,600px); }
.hscroll__panel .figure{ aspect-ratio:4/5; margin-bottom:22px; }
.hscroll__panel h3{ font-family:var(--serif); font-weight:500; font-size:clamp(1.5rem,2.6vw,2.2rem); margin-bottom:10px; }
.hscroll__panel p{ color:var(--bone-2); font-size:.96rem; max-width:44ch; }
.hscroll__num{ font-size:.7rem; letter-spacing:.26em; color:var(--rust); margin-bottom:16px; }
.no-js .hscroll, .no-pin .hscroll{ overflow-x:auto; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; padding-bottom:20px; }
.no-js .hscroll__panel,.no-pin .hscroll__panel{ scroll-snap-align:start; }

/* ---------- Gallery grid ----------
   Capped so no ~550px source is over-scaled: a 6-col grid on a ~1200px max means
   each column ≈ 190px; a span3 tile ≈ 590px — right at native. Larger spans are
   avoided; the impact is the layout rhythm + matte frames, not stretched pixels. */
.gallery-grid{
  display:grid; grid-template-columns:repeat(6,1fr); gap:clamp(10px,1.4vw,20px);
  max-width:1180px; margin:0 auto;
}
.gallery-grid .figure{ grid-column:span 2; aspect-ratio:1/1; }
.gallery-grid .figure.span6{ grid-column:span 3; aspect-ratio:4/3; }
.gallery-grid .figure.span8{ grid-column:span 3; aspect-ratio:4/3; }
.gallery-grid .figure.span12{ grid-column:span 6; aspect-ratio:2/1; }
.gallery-grid .figure.tall{ grid-row:span 2; aspect-ratio:3/5; }

/* ---------- Experience/project mosaic ---------- */
.mosaic{
  display:grid; grid-template-columns:repeat(12,1fr);
  grid-auto-rows:clamp(100px,13vw,180px);
  gap:clamp(8px,1.1vw,16px);
}
.mosaic__tile{
  position:relative; overflow:hidden; border-radius:1px;
  background:var(--char-2); display:block;
  grid-column:span 3; grid-row:span 2;
}
.mosaic__tile.t-wide{ grid-column:span 6; }
.mosaic__tile.t-tall{ grid-row:span 3; }
.mosaic__tile.t-big{ grid-column:span 6; grid-row:span 3; }
.mosaic__tile.t-sq{ grid-column:span 4; grid-row:span 2; }
.mosaic__tile img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  transition:transform 1.2s var(--ease); will-change:transform;
}
.mosaic__tile::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  box-shadow:inset 0 0 0 1px transparent;
  background:linear-gradient(transparent 52%, rgba(22,19,17,.8));
  opacity:.82; transition:opacity .5s var(--ease), box-shadow .5s var(--ease);
}
.mosaic__cap{
  position:absolute; left:0; right:0; bottom:0; z-index:2;
  padding:18px 20px; transform:translateY(8px); opacity:0;
  transition:transform .5s var(--ease), opacity .5s var(--ease);
  font-size:.7rem; letter-spacing:.18em; text-transform:uppercase; color:var(--bone);
}
.mosaic__cap::before{
  content:""; display:block; width:22px; height:1px; background:var(--rust-hi);
  margin-bottom:10px; transform:scaleX(0); transform-origin:left; transition:transform .5s var(--ease) .05s;
}
.is-ready .anim .mosaic__tile{ opacity:0; transform:translateY(42px) scale(.97); }
@media (hover:hover){
  .mosaic__tile:hover img{ transform:scale(1.08); }
  .mosaic__tile:hover::after{ opacity:1; box-shadow:inset 0 0 0 1px var(--line-strong); }
  .mosaic__tile:hover .mosaic__cap{ transform:translateY(0); opacity:1; }
  .mosaic__tile:hover .mosaic__cap::before{ transform:scaleX(1); }
}
@media (hover:none){
  .mosaic__cap{ transform:none; opacity:1; }
  .mosaic__cap::before{ transform:scaleX(1); }
}
@media (max-width:860px){
  .mosaic{ grid-template-columns:repeat(6,1fr); grid-auto-rows:clamp(92px,23vw,160px); }
  .mosaic__tile,.mosaic__tile.t-sq{ grid-column:span 3; grid-row:span 2; }
  .mosaic__tile.t-wide,.mosaic__tile.t-big{ grid-column:span 6; grid-row:span 2; }
  .mosaic__tile.t-tall{ grid-row:span 2; }
}
@media (max-width:480px){
  .mosaic{ grid-template-columns:repeat(2,1fr); }
  .mosaic__tile,.mosaic__tile.t-sq,.mosaic__tile.t-wide,.mosaic__tile.t-big,.mosaic__tile.t-tall{
    grid-column:span 1; grid-row:span 2;
  }
  .mosaic__cap{ transform:none; opacity:1; }
  .mosaic__cap::before{ transform:scaleX(1); }
}

/* ---------- Products ---------- */
.shop-filters{ display:flex; flex-wrap:wrap; gap:12px; }
.chip{
  font-family:var(--sans); font-size:.7rem; letter-spacing:.18em; text-transform:uppercase; font-weight:500;
  color:var(--bone-2); background:transparent; cursor:pointer;
  border:1px solid var(--line); border-radius:100px; padding:11px 22px;
  transition:color .35s var(--ease), border-color .35s, background .35s;
}
.chip:hover{ color:var(--bone); border-color:var(--line-strong); }
.chip.is-active{ color:var(--char); border-color:transparent;
  background:linear-gradient(120deg,var(--rust),var(--rust-hi)); }

.shop-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(20px,2.4vw,36px); }
.product{
  display:flex; flex-direction:column;
  background:var(--char-2); border:1px solid var(--line); border-radius:2px;
  overflow:hidden; transition:border-color .5s var(--ease), transform .5s var(--ease);
}
.product:hover{ border-color:var(--line-strong); transform:translateY(-4px); }
.product__media{ position:relative; aspect-ratio:4/5; overflow:hidden; background:var(--char-3); }
.product__media img{ width:100%; height:100%; object-fit:cover; }
/* warm duotone + fine grain over product photos to match the site-wide treatment */
.product__media::after{
  content:""; position:absolute; inset:0; z-index:1; pointer-events:none;
  background:linear-gradient(180deg, rgba(22,19,17,.04), rgba(22,19,17,.20)),
    radial-gradient(120% 120% at 50% -10%, rgba(198,123,74,.10), transparent 55%);
  mix-blend-mode:multiply; opacity:.85; transition:opacity .5s var(--ease);
}
.product:hover .product__media::after{ opacity:1; }
.product__cat{
  position:absolute; top:14px; left:14px; z-index:2;
  font-size:.6rem; letter-spacing:.2em; text-transform:uppercase; color:var(--rust-hi);
  background:rgba(22,19,17,.62); backdrop-filter:blur(6px);
  border:1px solid var(--line); border-radius:100px; padding:6px 13px;
}
.product__body{ padding:24px 24px 28px; display:flex; flex-direction:column; flex:1; gap:11px; }
.product__name{ font-family:var(--serif); font-weight:500; font-size:1.4rem; line-height:1.1; color:var(--bone); }
.product__name .accolade{ display:block; font-family:var(--sans); font-size:.6rem; letter-spacing:.2em;
  text-transform:uppercase; color:var(--rust); margin-top:8px; }
.product__desc{ font-size:.88rem; color:var(--bone-2); line-height:1.55; flex:1; }
.product__foot{ display:flex; align-items:center; justify-content:space-between; gap:14px; margin-top:10px; }
.product__price{ font-family:var(--serif); font-size:1.2rem; color:var(--rust-hi); letter-spacing:.02em; }
.product__memtag{ font-size:.62rem; letter-spacing:.12em; text-transform:uppercase; color:var(--bone-2); }
.product__btn{
  font-size:.64rem; letter-spacing:.18em; text-transform:uppercase; font-weight:500;
  color:var(--rust-hi); background:transparent; cursor:pointer;
  border:1px solid var(--rust); border-radius:1px; padding:12px 20px; position:relative; overflow:hidden;
  transition:color .4s var(--ease), border-color .4s; white-space:nowrap;
}
.product__btn span{ position:relative; z-index:2; }
.product__btn::before{ content:""; position:absolute; inset:0; z-index:1;
  background:linear-gradient(120deg,var(--rust),var(--rust-hi)); transform:translateY(101%);
  transition:transform .45s var(--ease); }
.product__btn:hover{ color:var(--char); border-color:var(--rust-hi); }
.product__btn:hover::before{ transform:translateY(0); }
.product.is-hidden{ display:none; }
.shop-note{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line);
  border:1px solid var(--line); border-radius:2px; overflow:hidden; }
.shop-note > div{ background:var(--char-2); padding:clamp(26px,3vw,44px); }
.shop-note h3{ font-family:var(--serif); font-weight:500; font-size:1.5rem; color:var(--rust-hi); margin-bottom:14px; }
.shop-note p{ color:var(--bone-2); font-size:.92rem; }

@media (max-width:960px){ .shop-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:860px){ .shop-note{ grid-template-columns:1fr; } }
@media (max-width:560px){ .shop-grid{ grid-template-columns:1fr; } }

/* ---------- Forms ---------- */
.form{ display:grid; gap:20px; grid-template-columns:1fr 1fr; }
.field{ display:flex; flex-direction:column; gap:9px; }
.field label{ font-size:.66rem; letter-spacing:.22em; text-transform:uppercase; color:var(--bone-2); }
.field input,.field select,.field textarea{
  background:var(--char-3); border:1px solid var(--line); color:var(--bone);
  padding:15px 17px; border-radius:1px; font-family:var(--sans); font-size:.95rem; font-weight:300;
  transition:border-color .35s;
}
.field input:focus,.field select:focus,.field textarea:focus{ outline:none; border-color:var(--rust); }
.field--full{ grid-column:1/-1; }
.section--light .field input,.section--light .field select,.section--light .field textarea{ background:#fff; border-color:rgba(30,24,19,.14); color:var(--ink); }
.section--light .field label{ color:#6a5f50; }
@media (max-width:640px){ .form{ grid-template-columns:1fr; } }

/* ---------- Map ---------- */
.map-frame{ position:relative; border:1px solid var(--line); border-radius:2px; overflow:hidden; background:var(--char-2); }
.map-frame iframe{ display:block; width:100%; height:100%; border:0; filter:grayscale(.45) sepia(.28) brightness(.72) contrast(1.08); }

/* ---------- Info rows ---------- */
.info-row{ display:flex; justify-content:space-between; gap:24px; padding:20px 0; border-bottom:1px solid var(--line); }
.info-row dt{ font-size:.7rem; letter-spacing:.22em; text-transform:uppercase; color:var(--bone-2); }
.info-row dd{ margin:0; text-align:right; color:var(--bone); }

/* ---------- CTA band ---------- */
.cta-band{ position:relative; text-align:center; padding:clamp(80px,14vh,180px) 0; overflow:hidden; }
.cta-band .h2{ margin-bottom:32px; }
/* full-bleed atmospheric background: heavily treated (blur + scrim + Corten duotone) */
.cta-band__bg{ position:absolute; inset:0; z-index:0; overflow:hidden; }
.cta-band__bg img{ width:100%; height:100%; object-fit:cover; filter:blur(4px) saturate(.9); transform:scale(1.06); }
.cta-band__bg::after{ content:""; position:absolute; inset:0; background:linear-gradient(rgba(22,19,17,.85),rgba(22,19,17,.94)),radial-gradient(120% 90% at 50% 0%, rgba(198,123,74,.14), transparent 55%); }
.cta-band .wrap{ position:relative; z-index:1; }

/* ---------- Footer ---------- */
.site-footer{ background:var(--char-2); border-top:1px solid var(--line); padding:clamp(64px,9vh,110px) 0 42px; }
.footer-grid{ display:grid; grid-template-columns:1.5fr 1fr 1fr 1.2fr; gap:clamp(30px,4vw,64px); }
.footer-brand .wordmark{ font-family:var(--serif); font-weight:600; font-size:1.9rem; color:var(--bone); display:inline-block; margin-bottom:22px; }
.footer-brand .wordmark em{ font-style:normal; color:var(--rust-hi); }
.footer-brand p{ color:var(--bone-2); font-size:.92rem; max-width:36ch; }
.footer-col h4{ font-size:.66rem; letter-spacing:.24em; text-transform:uppercase; color:var(--rust); margin-bottom:22px; }
.footer-col a,.footer-col p{ display:block; color:var(--bone-2); font-size:.92rem; margin-bottom:12px; transition:color .3s; }
.footer-col a:hover{ color:var(--rust-hi); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px;
  margin-top:clamp(48px,7vh,84px); padding-top:30px; border-top:1px solid var(--line);
  font-size:.78rem; letter-spacing:.07em; color:var(--bone-2); }
.footer-bottom .signature{ color:var(--rust-soft); letter-spacing:.1em; }
.footer-bottom .signature a{ color:var(--rust-hi); }

/* ---------- Barba transition curtain ---------- */
.curtain{
  position:fixed; inset:0; z-index:9700; pointer-events:none;
  background:linear-gradient(160deg,var(--char) 0%, #3a2015 55%, var(--char) 100%);
  transform:scaleY(0); transform-origin:bottom;
  display:flex; align-items:center; justify-content:center;
}
.curtain .curtain__mark{ font-family:var(--serif); font-weight:600; font-size:clamp(1.6rem,4vw,2.6rem); color:var(--bone); opacity:0; }
.curtain .curtain__mark em{ font-style:normal; color:var(--rust-hi); }
.curtain__rule{ position:absolute; left:50%; bottom:34%; width:0; height:1px; background:var(--rust-hi); transform:translateX(-50%); }

/* ---------- Utility ---------- */
.center{ text-align:center; }
.mt-s{ margin-top:18px; } .mt-m{ margin-top:34px; } .mt-l{ margin-top:60px; }
.mb-m{ margin-bottom:34px; }
.maxw-60{ max-width:60ch; } .maxw-50{ max-width:50ch; } .maxw-46{ max-width:46ch; }
.text-rust{ color:var(--rust-hi); }
.tag{ display:inline-block; font-size:.64rem; letter-spacing:.22em; text-transform:uppercase; color:var(--rust-hi);
  border:1px solid var(--line); border-radius:100px; padding:7px 15px; }

/* ---------- Responsive ---------- */
@media (max-width:1024px){
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .cols-4{ grid-template-columns:repeat(2,1fr); }
  .materials{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:960px){
  .nav-links,.btn-reserve.desktop{ display:none; }
  .menu-toggle{ display:flex; }
}
@media (max-width:860px){
  .split,.split--reverse .split__media{ grid-template-columns:1fr; order:0; }
  .split{ gap:38px; }
  .cols-2,.cols-3,.cols-4{ grid-template-columns:1fr; }
  .stats{ grid-template-columns:repeat(2,1fr); gap:32px; }
  .awards{ grid-template-columns:1fr; }
  .materials{ grid-template-columns:1fr; }
  .gallery-grid .figure,.gallery-grid .figure.span6,.gallery-grid .figure.span8{ grid-column:span 3; aspect-ratio:4/3; }
  .gallery-grid .figure.span12{ grid-column:span 6; aspect-ratio:16/9; }
  .gallery-grid .figure.tall{ grid-row:auto; aspect-ratio:4/3; }
  .info-row{ flex-direction:column; gap:4px; }
  .info-row dd{ text-align:left; }
  /* work blocks stack: media on top */
  .work-block{ grid-template-columns:1fr; min-height:auto; }
  .work-block__media{ min-height:52vh; }
  .work-block--alt .work-block__media{ order:0; }
  .work-block--alt .work-block__body{ order:1; }
  .work-block__body{ padding:clamp(34px,8vw,60px) var(--gutter); }
}
@media (max-width:560px){
  .footer-grid{ grid-template-columns:1fr; }
  .stats{ grid-template-columns:1fr 1fr; }
  .gallery-grid{ grid-template-columns:repeat(2,1fr); }
  .gallery-grid .figure,.gallery-grid .figure.span6,.gallery-grid .figure.span8,.gallery-grid .figure.span12{ grid-column:span 2; aspect-ratio:4/3; }
  .gallery-grid .figure.tall{ aspect-ratio:4/3; }
  .hero__meta{ gap:14px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion:reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; }
  .hero__figure,.hero__band-frame{ opacity:1 !important; transform:none !important; }
  .is-ready .anim .fx{ opacity:1 !important; transform:none !important; }
  .is-ready .anim .mosaic__tile{ opacity:1 !important; transform:none !important; }
  .mosaic__cap{ transform:none !important; opacity:1 !important; }
  .mosaic__cap::before{ transform:scaleX(1) !important; }
  .reveal-mask .char{ transform:none !important; }
}

/* fonts loading flash guard — content always visible */
.no-js .hero__eyebrow,.no-js .hero__sub,.no-js .hero__meta,.no-js .hero__cta{ opacity:1 !important; }
