/* ===========================================================
   LOUISE GARMAN — CONTEMPORARY ARTIST
   Design system v2 — white gallery
   =========================================================== */

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

:root{
  /* Louise Garman Brand Guidelines — Volume One */
  --white:      #FBFAF6;   /* Canvas White */
  --paper:      #F5F2EC;
  --black:      #2A2A26;   /* Ink */
  --grey:       #5C5A54;   /* Ink Soft */
  --hairline:   #E4E0D6;   /* Rule */
  --hairline-soft: #ECE8DE;

  /* the five pastels — accents only, never large flat blocks */
  --sage:       #C9E4C6;
  --sage-deep:  #9FC79B;
  --lilac:      #B9AEE6;
  --lilac-deep: #8F80CE;
  --coral:      #F3A497;
  --coral-deep: #E8816F;
  --sky:        #D7E6F0;
  --sky-deep:   #AFCBDE;
  --blush:      #DDAA9E;
  --blush-deep: #C48A73;

  --f-display: "Cormorant Garamond", serif;
  --f-body:    "Jost", sans-serif;
  --f-label:   "Jost", sans-serif;  /* tracked caps, echoes the logo */

  --tracking-label: 0.26em;
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  background:var(--white);
  color:var(--black);
  font-family:var(--f-body);
  font-weight:300;
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.01ms !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}
:focus-visible{ outline:1px solid var(--black); outline-offset:3px; }

.wrap{ max-width:1180px; margin:0 auto; padding:0 32px; }
@media (max-width:640px){ .wrap{ padding:0 20px; } }

.eyebrow{
  font-family:var(--f-label);
  font-size:11.5px;
  letter-spacing:var(--tracking-label);
  text-transform:uppercase;
  color:var(--grey);
}
/* per-section eyebrow accents — one pastel per section, echoing the
   colours pulled directly from the Human Nature banners */
.eyebrow-lilac{ color:var(--lilac-deep); }
.eyebrow-sage{ color:var(--sage-deep); }
.eyebrow-sky{ color:var(--sky-deep); }
.eyebrow-coral{ color:var(--coral-deep); }
.eyebrow-coral-onblack{ color:var(--coral); }

/* ---------- header ---------- */
.site-header{
  position:sticky; top:0; z-index:70;
  background:var(--white);
  border-bottom:1px solid var(--hairline);
}
.site-header .wrap{
  display:grid; grid-template-columns:1fr auto 1fr;
  align-items:center;
  height:112px;
}
.logo{ grid-column:2; display:inline-flex; align-items:center; justify-content:center; }
.logo-img{ height:46px; width:auto; display:block; }
@media (max-width:640px){
  .site-header .wrap{ height:96px; grid-template-columns:auto 1fr auto; }
  .logo{ grid-column:1; justify-content:flex-start; }
  .logo-img{ height:30px; }
  .menu-toggle{ grid-column:3; }
}

.menu-toggle{ display:none; }
@media (max-width:760px){
  .menu-toggle{
    grid-column:3; justify-self:end;
    display:inline-flex; align-items:center; gap:10px;
    background:none; border:0; cursor:pointer; color:var(--black);
    font-family:var(--f-label); font-weight:500; font-size:12px;
    letter-spacing:var(--tracking-label); text-transform:uppercase;
  }
}
@media (max-width:480px){
  .menu-toggle .label{ display:none; }
}
.menu-toggle .bars{ display:inline-flex; flex-direction:column; gap:4px; width:22px; }
.menu-toggle .bars span{ display:block; height:1px; background:var(--black); width:100%; transition:transform .25s ease, opacity .25s ease; }
.menu-toggle[aria-expanded="true"] .bars span:nth-child(1){ transform:translateY(5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .bars span:nth-child(2){ opacity:0; }
.menu-toggle[aria-expanded="true"] .bars span:nth-child(3){ transform:translateY(-5px) rotate(-45deg); }

/* ---------- persistent black top bar (desktop) ----------
   Sticks directly beneath the header so logo + nav travel
   together as one fixed unit while scrolling. */
.topbar{
  position:sticky; top:112px; z-index:59;
  background:var(--black);
  display:flex; align-items:stretch; justify-content:center;
  overflow-x:auto;
}
.topbar a{
  font-family:var(--f-label); font-weight:500; font-size:14.5px;
  letter-spacing:.06em; text-transform:uppercase; color:rgba(255,255,255,0.82);
  padding:17px 22px 15px; border-left:1px solid rgba(255,255,255,0.16);
  border-bottom:4px solid transparent;
  white-space:nowrap; transition:background .2s ease, color .2s ease, border-color .2s ease;
}
.topbar a:last-child{ border-right:1px solid rgba(255,255,255,0.16); }
.topbar a:hover{ color:var(--white); background:rgba(255,255,255,0.06); border-bottom-color:var(--hue, var(--coral)); }
.topbar a[aria-current="page"]{
  color:var(--white); background:rgba(255,255,255,0.06); border-bottom-color:var(--hue, var(--coral));
}
@media (max-width:760px){ .topbar{ display:none; } }

/* ---------- nav hue system ----------
   Ten links, ten tones — the five palette colours plus
   their darker "-deep" pairs, one per page. */
.nc-coral{ --hue:var(--coral); }
.nc-lilac{ --hue:var(--lilac); }
.nc-sky{ --hue:var(--sky); }
.nc-sage{ --hue:var(--sage); }
.nc-blush{ --hue:var(--blush); }
.nc-coral2{ --hue:var(--coral-deep); }
.nc-lilac2{ --hue:var(--lilac-deep); }
.nc-sky2{ --hue:var(--sky-deep); }
.nc-sage2{ --hue:var(--sage-deep); }
.nc-blush2{ --hue:var(--blush-deep); }

/* ---------- fullscreen nav overlay ---------- */
.nav-overlay{
  position:fixed; inset:0; z-index:100;
  background:var(--black); color:var(--white);
  display:flex; align-items:center; justify-content:center;
  overflow-y:auto;
  padding:76px 20px 40px;
  opacity:0; pointer-events:none;
  transition:opacity .35s ease;
}
.nav-overlay.open{ opacity:1; pointer-events:auto; }
.nav-overlay-inner{ text-align:center; margin:auto; }
.nav-overlay-links{ display:flex; flex-direction:column; gap:3px; }
.nav-overlay-links a{
  font-family:var(--f-display); font-weight:300; font-style:normal;
  font-size:clamp(24px, 6vw, 56px); color:var(--white);
  padding:7px 0; transition:opacity .2s ease, letter-spacing .3s ease;
  opacity:0.55;
}
.nav-overlay-links a:hover, .nav-overlay-links a[aria-current="page"]{ opacity:1; font-style:italic; color:var(--hue, var(--coral)); }
.nav-overlay-close{
  position:absolute; top:38px; right:40px;
  background:none; border:0; cursor:pointer; color:var(--white);
  font-family:var(--f-label); font-size:12px; letter-spacing:.1em; text-transform:uppercase;
  display:flex; align-items:center; gap:10px; opacity:0.75;
}
.nav-overlay-close:hover{ opacity:1; }
.nav-overlay-close .x{ font-family:var(--f-display); font-size:20px; line-height:1; }
@media (max-width:640px){
  .nav-overlay{ padding:62px 16px 28px; }
  .nav-overlay-links{ gap:1px; }
  .nav-overlay-links a{ font-size:clamp(19px, 6.5vw, 38px); padding:6px 0; }
  .nav-overlay-close{ top:28px; right:22px; }
}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--f-label); font-size:11.5px; letter-spacing:var(--tracking-label);
  text-transform:uppercase;
  padding:15px 28px;
  border:1px solid var(--coral);
  background:var(--coral);
  color:var(--white);
  transition:background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover{ background:var(--coral-deep); border-color:var(--coral-deep); color:var(--white); }
.btn-quiet{ border-color:var(--lilac); background:var(--lilac); color:var(--white); }
.btn-quiet:hover{ background:var(--lilac-deep); border-color:var(--lilac-deep); color:var(--white); }

/* ---------- hero ---------- */
.hero{
  position:relative; overflow:hidden;
  height:700px; max-height:700px; display:flex; align-items:flex-end;
  color:var(--white); padding:0 0 72px;
}
@media (max-width:640px){ .hero{ height:560px; max-height:560px; } }
.hero-bg{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0;
}
.hero-scrim{
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(180deg, rgba(42,42,38,0.38) 0%, rgba(42,42,38,0.32) 35%, rgba(42,42,38,0.88) 100%);
}
.hero .wrap{ position:relative; z-index:2; }
.hero-eyebrow{ margin-bottom:22px; color:rgba(255,255,255,0.75); }
.hero h1{
  font-family:var(--f-display); font-weight:400;
  font-size:clamp(34px, 5.6vw, 78px);
  line-height:1.05; letter-spacing:-0.01em;
  max-width:16ch;
}
.hero h1 em{ font-style:italic; font-weight:300; color:var(--coral); }
.hero-sub{ margin-top:24px; max-width:46ch; font-size:17px; color:rgba(255,255,255,0.82); }
.hero-actions{ margin-top:36px; display:flex; gap:14px; flex-wrap:wrap; }
@media (max-width:640px){ .hero{ padding-bottom:52px; } }

/* quiet text link used in place of a filled button, for hero moments
   that want a single unobtrusive next-step rather than a CTA block */
.hero-link{
  margin-top:32px; display:inline-flex; align-items:center; gap:10px;
  font-family:var(--f-label); font-weight:500; font-size:12px;
  letter-spacing:var(--tracking-label); text-transform:uppercase;
  color:var(--white); padding-bottom:6px;
  border-bottom:1px solid rgba(255,255,255,0.4);
  transition:border-color .25s ease, color .25s ease, gap .25s ease;
}
.hero-link:hover{ border-color:var(--coral); color:var(--coral); gap:14px; }
.hero-link .arrow{ transition:transform .25s ease; }
.hero-link:hover .arrow{ transform:translateX(2px); }

/* hero background video pause/play control — always available so the
   autoplaying loop can be stopped; defaults to paused under
   prefers-reduced-motion (see script.js) */
.hero-video-toggle{
  position:absolute; z-index:3; right:32px; bottom:32px;
  width:44px; height:44px; border-radius:50%;
  background:rgba(42,42,38,0.35); border:1px solid rgba(255,255,255,0.4);
  color:var(--white); cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:background .2s ease, border-color .2s ease;
}
.hero-video-toggle:hover{ background:rgba(42,42,38,0.6); border-color:rgba(255,255,255,0.75); }
.hero-video-toggle-icon{ position:relative; width:12px; height:14px; flex-shrink:0; }
.hero-video-toggle-icon::before, .hero-video-toggle-icon::after{
  content:""; position:absolute; top:0; width:4px; height:14px; background:var(--white);
}
.hero-video-toggle-icon::before{ left:0; }
.hero-video-toggle-icon::after{ right:0; }
.hero-video-toggle.is-paused .hero-video-toggle-icon{
  width:0; height:0; background:none;
  border-style:solid; border-width:7px 0 7px 12px;
  border-color:transparent transparent transparent var(--white);
}
.hero-video-toggle.is-paused .hero-video-toggle-icon::before,
.hero-video-toggle.is-paused .hero-video-toggle-icon::after{ content:none; }
@media (max-width:640px){ .hero-video-toggle{ right:20px; bottom:20px; width:38px; height:38px; } }

/* ---------- about + sidebar ---------- */
.about-grid{
  display:grid; grid-template-columns:1.5fr 1fr; gap:72px; align-items:start;
}
@media (max-width:960px){ .about-grid{ grid-template-columns:1fr; gap:52px; } }
.about-photo{ margin-bottom:28px; overflow:hidden; background:var(--paper); max-width:420px; }
.about-photo img{ width:100%; display:block; }
.about-copy p{ font-size:17px; color:var(--grey); max-width:56ch; }

/* ---------- about page: hero quote + photo ---------- */
.about-hero-grid{
  display:grid; grid-template-columns:1.2fr 0.8fr; gap:56px; align-items:center;
}
.about-hero-photo{ overflow:hidden; }
.about-hero-photo img{ width:100%; display:block; }
.about-hero-photo-link{
  display:inline-flex; align-items:center; gap:8px; margin-top:16px;
  font-family:var(--f-label); font-weight:500; font-size:12px;
  letter-spacing:var(--tracking-label); text-transform:uppercase;
  color:var(--black); padding-bottom:4px; border-bottom:1px solid var(--hairline);
  transition:border-color .2s ease, color .2s ease, gap .2s ease;
}
.about-hero-photo-link:hover{ color:var(--sky-deep); border-color:var(--sky-deep); gap:12px; }
@media (max-width:900px){
  .about-hero-grid{ grid-template-columns:1fr; gap:36px; }
  .about-hero-photo{ max-width:360px; }
}

/* ---------- bury new road: flowing three-column copy ---------- */
.bnr-columns{ column-count:3; column-gap:48px; font-size:16px; color:var(--grey); line-height:1.75; }
.bnr-columns p{ margin-bottom:22px; break-inside:avoid; }
@media (max-width:900px){ .bnr-columns{ column-count:2; } }
@media (max-width:600px){ .bnr-columns{ column-count:1; } }
.bnr-gallery-note{ font-size:13px; color:var(--grey); font-style:italic; margin-top:16px; }

/* ---------- about page: three-column copy ---------- */
.about-copy-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:48px;
}
.about-copy-grid p{ font-size:16.5px; color:var(--grey); line-height:1.75; }
@media (max-width:900px){
  .about-copy-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:640px){
  .about-copy-grid{ grid-template-columns:1fr; gap:28px; }
}

.stories-head{ margin-bottom:28px; }
.stories-list{ display:flex; flex-direction:column; }
.story-item{
  display:grid; grid-template-columns:88px 1fr; gap:18px;
  padding:22px 0; border-top:1px solid var(--hairline-soft);
  color:inherit;
}
.story-item:first-child{ border-top:0; padding-top:0; }
.story-thumb{ width:88px; height:88px; overflow:hidden; background:var(--paper); flex-shrink:0; }
.story-thumb img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.story-item:hover .story-thumb img{ transform:scale(1.06); }
.story-date{ font-family:var(--f-label); font-weight:500; font-size:10.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--grey); margin-bottom:6px; }
.story-item h3{ font-family:var(--f-display); font-weight:500; font-size:20px; line-height:1.3; transition:color .25s ease; }
.story-item:hover h3{ color:var(--coral-deep); }

.stories-viewall{
  display:inline-flex; align-items:center; gap:8px; margin-top:8px;
  font-family:var(--f-label); font-weight:500; font-size:11.5px;
  letter-spacing:var(--tracking-label); text-transform:uppercase;
  color:var(--black); padding-bottom:4px; border-bottom:1px solid var(--hairline);
  transition:border-color .2s ease, color .2s ease, gap .2s ease;
}
.stories-viewall:hover{ color:var(--lilac-deep); border-color:var(--lilac-deep); gap:12px; }

/* ---------- shop ---------- */
.shop-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:36px; }
@media (max-width:820px){ .shop-grid{ grid-template-columns:1fr; max-width:420px; margin:0 auto; } }
.shop-grid-plain-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:36px 32px; }
@media (max-width:1080px){ .shop-grid-plain-4{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .shop-grid-plain-4{ grid-template-columns:1fr; max-width:420px; margin:0 auto; } }

.shop-grid-4{ grid-template-columns:0.85fr repeat(3,1fr); align-items:end; }
.shop-intro{ padding-bottom:18px; }
@media (max-width:1080px){ .shop-grid-4{ grid-template-columns:1fr; } .shop-intro{ padding-bottom:0; margin-bottom:8px; } }
.shop-card{ display:block; }
.shop-frame{ aspect-ratio:4/5; overflow:hidden; background:var(--paper); margin-bottom:18px; }
.shop-frame img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.shop-card:hover .shop-frame img{ transform:scale(1.02); }
.shop-card h3{ font-family:var(--f-display); font-weight:500; font-size:20px; margin-bottom:6px; transition:color .25s ease; }
.shop-card:hover h3{ color:var(--coral-deep); }
.shop-meta{ display:flex; justify-content:flex-end; align-items:baseline; }
.shop-meta p{ font-size:13px; color:var(--grey); }
.shop-buy{ font-family:var(--f-label); font-weight:500; font-size:12px; letter-spacing:.06em; color:var(--coral-deep); border-bottom:1px solid transparent; transition:border-color .2s ease; }
.shop-card:hover .shop-buy{ border-color:var(--coral-deep); }

/* ---------- portfolio CTA tiles ---------- */
.portfolio-cta-head{ text-align:center; margin-bottom:52px; }
.portfolio-cta-head .eyebrow{ display:block; margin-bottom:14px; }
.portfolio-cta-head h2{ font-family:var(--f-display); font-weight:400; font-size:clamp(26px, 3.6vw, 40px); max-width:20ch; margin:0 auto; }
.portfolio-cta-h2{ max-width:none !important; white-space:nowrap; font-size:clamp(18px, 3.4vw, 40px) !important; }
@media (max-width:560px){ .portfolio-cta-h2{ white-space:normal; font-size:clamp(22px, 6vw, 32px) !important; } }
.cta-tiles{ display:grid; grid-template-columns:repeat(3,1fr); gap:2px; background:var(--hairline); }
@media (max-width:820px){ .cta-tiles{ grid-template-columns:1fr; } }
.cta-tile{
  background:var(--black); color:var(--white);
  padding:64px 36px; text-align:center;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  min-height:220px;
  border-top:3px solid transparent;
  transition:background .3s ease, border-color .3s ease;
}
.cta-tile:hover{ background:#2b2823; }
.cta-tile .num{ font-family:var(--f-label); font-weight:500; font-size:11px; letter-spacing:.15em; color:rgba(255,255,255,0.5); margin-bottom:18px; transition:color .3s ease; }
.cta-tile h3{ font-family:var(--f-display); font-weight:400; font-style:italic; font-size:24px; margin-bottom:14px; transition:color .3s ease; }
.cta-tile p{ font-size:13px; color:rgba(255,255,255,0.65); max-width:26ch; }

/* each portfolio category picks up one of the palette's tones on hover */
.cta-tile:nth-child(1):hover{ border-top-color:var(--sage); }
.cta-tile:nth-child(1):hover h3{ color:var(--sage); }
.cta-tile:nth-child(1):hover .num{ color:var(--sage); }
.cta-tile:nth-child(2):hover{ border-top-color:var(--sky); }
.cta-tile:nth-child(2):hover h3{ color:var(--sky); }
.cta-tile:nth-child(2):hover .num{ color:var(--sky); }
.cta-tile:nth-child(3):hover{ border-top-color:var(--lilac); }
.cta-tile:nth-child(3):hover h3{ color:var(--lilac); }
.cta-tile:nth-child(3):hover .num{ color:var(--lilac); }

/* ---------- section scaffolding ---------- */
section{ padding:88px 0; border-top:1px solid var(--hairline); }
section:first-of-type{ border-top:0; }
@media (max-width:640px){ section{ padding:60px 0; } }
.section-head{
  display:flex; justify-content:space-between; align-items:flex-end;
  gap:24px; margin-bottom:52px; flex-wrap:wrap;
}
.section-head h2{
  font-family:var(--f-display); font-weight:400;
  font-size:clamp(26px, 3.6vw, 40px);
}
.section-head .eyebrow{ margin-bottom:14px; display:block; }
.section-head p{ max-width:36ch; color:var(--grey); font-size:15px; }
.shop-lead{
  font-family:var(--f-display); font-style:italic; font-weight:300;
  font-size:clamp(24px, 3vw, 34px); color:var(--black); max-width:14ch;
}
.shop-lead-lg{ font-size:clamp(30px, 3.6vw, 46px); max-width:10ch; line-height:1.15; }

/* ---------- statement ---------- */
.statement-grid{
  display:grid; grid-template-columns:1.1fr 0.9fr; gap:64px; align-items:start;
}
.statement blockquote{
  font-family:var(--f-display); font-style:italic; font-weight:300;
  font-size:clamp(22px, 3vw, 34px); line-height:1.35; max-width:24ch;
}
.statement-meta{ font-family:var(--f-label); font-size:12.5px; color:var(--grey); line-height:2; }
.statement-meta strong{ color:var(--black); font-weight:500; display:block; font-family:var(--f-body); font-size:14px; margin-bottom:2px; }
.statement-meta > div{ margin-bottom:22px; }
@media (max-width:820px){ .statement-grid{ grid-template-columns:1fr; gap:36px; } }

/* ---------- works list (signature element) ----------
   Single column, generous scale, gallery wall-label
   caption beneath each piece — lets the work's own
   colour be the only colour on the page. */
.works-list{ display:flex; flex-direction:column; }
.work-row{
  display:grid; grid-template-columns:1fr 280px; gap:56px;
  align-items:center;
  padding:56px 0; border-top:1px solid var(--hairline-soft);
}
.work-row:first-child{ border-top:0; padding-top:0; }
.work-row:nth-child(even){ direction:rtl; }
.work-row:nth-child(even) > *{ direction:ltr; }
.work-frame{ overflow:hidden; background:var(--paper); }
.work-frame img{ width:100%; display:block; transition:transform .5s ease; }
.work-row:hover .work-frame img{ transform:scale(1.015); }
.work-cat{ font-family:var(--f-label); font-size:11px; letter-spacing:.08em; color:var(--grey); text-transform:uppercase; margin-bottom:10px; }
.work-info h3{ font-family:var(--f-display); font-weight:500; font-size:24px; margin-bottom:8px; transition:color .25s ease; }
.work-row:hover .work-info h3{ color:var(--coral-deep); }
.work-info p{ font-size:14px; color:var(--grey); }
@media (max-width:820px){
  .work-row{ grid-template-columns:1fr; gap:20px; direction:ltr !important; }
}

/* ---------- recent work: 50/50 two-column, staggered ----------
   Image 1 sits top of the left column, image 2 sits in the right
   column pushed well down, image 3 continues below image 1 on the
   left — plain grid auto-flow gives that placement for free. */
.recent-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:64px 48px; align-items:start;
}
.recent-item:nth-child(2){ margin-top:190px; }
.recent-parallax{ will-change:transform; }
.recent-frame{ overflow:hidden; background:var(--paper); }
.recent-frame img{ width:100%; display:block; transition:transform .5s ease; }
.recent-item:hover .recent-frame img{ transform:scale(1.02); }
.recent-cap{ margin-top:18px; }
.recent-cap h3{ font-family:var(--f-display); font-weight:500; font-size:22px; transition:color .25s ease; }
.recent-item:hover .recent-cap h3{ color:var(--coral-deep); }
@media (max-width:820px){
  .recent-grid{ grid-template-columns:1fr; gap:44px; }
  .recent-item:nth-child(2){ margin-top:0; }
}

/* simple grid variant, used on portfolio */
.works-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:40px 32px; }
@media (max-width:900px){ .works-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .works-grid{ grid-template-columns:1fr; } }
.works-grid .work-frame{ margin-bottom:16px; aspect-ratio:4/5; }
.works-grid .work-frame img{ height:100%; object-fit:cover; }
.works-grid .work-frame-wide{ grid-column:span 2; aspect-ratio:16/8.5; }
@media (max-width:900px){ .works-grid .work-frame-wide{ grid-column:span 2; } }
@media (max-width:560px){ .works-grid .work-frame-wide{ grid-column:span 1; aspect-ratio:4/5; } }

/* orientation-aware variant: each image keeps its own natural aspect ratio
   instead of being cropped into a fixed box — used on news post galleries
   with a mix of portrait and landscape photos */
.works-grid-natural{ align-items:start; }
.works-grid-natural .work-frame{ aspect-ratio:auto; }
.works-grid-natural .work-frame img{ height:auto; object-fit:unset; }

/* ---------- overlapping parallax gallery ---------- */
.parallax-gallery{ overflow:hidden; padding-bottom:140px; }
.pg-grid{
  display:grid; grid-template-columns:repeat(6,1fr);
  align-items:start; gap:18px;
}
.pg-item{
  overflow:hidden; background:var(--paper);
  box-shadow:0 28px 56px rgba(42,42,38,0.28), 0 6px 16px rgba(42,42,38,0.18);
  will-change:transform;
}
.pg-item img{ width:100%; display:block; }

/* staggered spans + vertical offsets create the overlap */
.pg-a{ grid-column:1 / 3; margin-top:0; z-index:2; }
.pg-b{ grid-column:3 / 5; margin-top:90px; z-index:3; }
.pg-c{ grid-column:5 / 7; margin-top:20px; z-index:1; }
.pg-d{ grid-column:1 / 4; margin-top:-60px; z-index:4; }
.pg-e{ grid-column:4 / 6; margin-top:60px; z-index:2; }
.pg-f{ grid-column:6 / 7; margin-top:-30px; z-index:3; }

@media (max-width:900px){
  .pg-grid{ grid-template-columns:repeat(2,1fr); gap:14px; }
  .pg-a{ grid-column:1/2; margin-top:0; }
  .pg-b{ grid-column:2/3; margin-top:50px; }
  .pg-c{ grid-column:1/2; margin-top:20px; }
  .pg-d{ grid-column:2/3; margin-top:-20px; }
  .pg-e{ grid-column:1/2; margin-top:10px; }
  .pg-f{ grid-column:2/3; margin-top:-40px; }
  .parallax-gallery{ padding-bottom:80px; }
}
@media (max-width:560px){
  .pg-grid{ grid-template-columns:1fr; gap:16px; }
  .pg-a, .pg-b, .pg-c, .pg-d, .pg-e, .pg-f{ grid-column:1/2; margin-top:0; }
}

/* ---------- 5-item overlap grid ---------- */
.five-grid{ display:grid; grid-template-columns:repeat(6,1fr); gap:32px; align-items:start; }
.fg-a{ grid-column:1/3; margin-top:0; z-index:2; }
.fg-b{ grid-column:3/5; margin-top:110px; z-index:3; }
.fg-c{ grid-column:5/7; margin-top:30px; z-index:1; }
.fg-d{ grid-column:1/4; margin-top:-40px; z-index:4; }
.fg-e{ grid-column:4/7; margin-top:70px; z-index:2; }
@media (max-width:900px){
  .five-grid{ grid-template-columns:repeat(2,1fr); }
  .fg-a{ grid-column:1/2; margin-top:0; }
  .fg-b{ grid-column:2/3; margin-top:50px; }
  .fg-c{ grid-column:1/2; margin-top:20px; }
  .fg-d{ grid-column:2/3; margin-top:-20px; }
  .fg-e{ grid-column:1/2; margin-top:10px; }
}
@media (max-width:560px){
  .five-grid{ grid-template-columns:1fr; }
  .fg-a, .fg-b, .fg-c, .fg-d, .fg-e{ grid-column:1/2; margin-top:0; }
}

/* ---------- 4-item overlap grid (Canvasses) ---------- */
.canvas-grid{
  display:grid; grid-template-columns:repeat(6,1fr);
  align-items:start; gap:28px;
}
.cv-a{ grid-column:1 / 4; margin-top:0; z-index:2; }
.cv-b{ grid-column:4 / 7; margin-top:100px; z-index:3; }
.cv-c{ grid-column:2 / 5; margin-top:-30px; z-index:4; }
.cv-d{ grid-column:5 / 7; margin-top:60px; z-index:1; }
@media (max-width:900px){
  .canvas-grid{ grid-template-columns:repeat(2,1fr); gap:20px; }
  .cv-a{ grid-column:1/2; margin-top:0; }
  .cv-b{ grid-column:2/3; margin-top:50px; }
  .cv-c{ grid-column:1/2; margin-top:20px; }
  .cv-d{ grid-column:2/3; margin-top:-20px; }
}
@media (max-width:560px){
  .canvas-grid{ grid-template-columns:1fr; gap:16px; }
  .cv-a, .cv-b, .cv-c, .cv-d{ grid-column:1/2; margin-top:0; }
}

/* ---------- reveal-on-scroll ---------- */
.reveal{
  opacity:0; transform:translateY(36px);
  transition:opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
}
.reveal.in-view{ opacity:1; transform:translateY(0); }

/* gentle cascade for grouped grid items (shop cards, CTA tiles) —
   siblings fade in a beat apart rather than popping in together */
.shop-grid .reveal:nth-child(2){ transition-delay:.08s; }
.shop-grid .reveal:nth-child(3){ transition-delay:.16s; }
.shop-grid .reveal:nth-child(4){ transition-delay:.24s; }
.cta-tiles .reveal:nth-child(2){ transition-delay:.08s; }
.cta-tiles .reveal:nth-child(3){ transition-delay:.16s; }

/* ---------- timeline ---------- */
.timeline{ border-top:1px solid var(--hairline); }
.timeline li{
  display:grid; grid-template-columns:100px 1fr auto;
  gap:24px; align-items:baseline;
  padding:20px 0; border-bottom:1px solid var(--hairline);
}
.timeline .t-date{ font-family:var(--f-label); font-size:12.5px; color:var(--grey); }
.timeline .t-desc{ font-size:15px; }
.timeline .t-loc{ font-family:var(--f-label); font-size:12px; color:var(--grey); text-align:right; white-space:nowrap; }
@media (max-width:640px){
  .timeline li{ grid-template-columns:1fr; gap:6px; }
  .timeline .t-loc{ text-align:left; }
}

/* ---------- film ---------- */
.film-two-col{
  display:grid; grid-template-columns:minmax(280px, 560px) 1fr;
  gap:56px; align-items:center;
}
@media (max-width:820px){ .film-two-col{ grid-template-columns:1fr; gap:32px; } }
.film-copy{ max-width:52ch; margin-bottom:0; }
.film-copy p{ font-size:16.5px; color:var(--grey); line-height:1.75; margin-bottom:16px; }
.film-copy p:last-child{ margin-bottom:0; }
.film-quote{
  font-family:var(--f-display); font-style:italic; font-weight:300;
  border-left:2px solid var(--coral); padding-left:24px;
}
.film-quote p{ font-size:19px; color:var(--black); line-height:1.6; margin-bottom:16px; }
.film-quote p:last-child{ margin-bottom:0; }
.film-frame{
  border:1px solid var(--hairline); background:var(--paper);
  max-width:560px; margin:0;
}
.film-frame video{ width:100%; display:block; }

/* ---------- full-bleed break ---------- */
.media-break img{ width:100%; display:block; max-height:64vh; object-fit:cover; }

/* ---------- full-screen image section ---------- */
.full-image{
  position:relative; height:100vh; min-height:560px;
  border-top:0; padding:0; overflow:hidden;
}
.full-image img{ width:100%; height:100%; object-fit:cover; display:block; }
.full-image-cap{
  position:absolute; left:32px; bottom:32px; z-index:2;
  color:var(--white);
}
.full-image-cap .eyebrow{ color:rgba(251,250,246,0.75); margin-bottom:10px; display:block; }
.full-image-cap h2{
  font-family:var(--f-display); font-style:italic; font-weight:400;
  font-size:clamp(24px, 3.4vw, 38px);
}
.full-image::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:40%; z-index:1;
  background:linear-gradient(180deg, rgba(42,42,38,0) 0%, rgba(42,42,38,0.55) 100%);
  pointer-events:none;
}
@media (max-width:640px){ .full-image{ height:74vh; } .full-image-cap{ left:20px; bottom:24px; } .full-image img{ object-position:right center; } }

/* ---------- cta ---------- */
.cta{ text-align:center; }
.cta h2{
  font-family:var(--f-display); font-weight:400;
  font-size:clamp(24px, 3vw, 34px); margin:0 auto 36px;
}
.cta h2 em{ font-style:italic; font-weight:300; color:var(--coral-deep); }

/* ---------- footer ---------- */
/* ---------- brand strip ----------
   A single, quiet appearance of the full five-tone palette,
   used once as a closing mark — never a large flat block. */
.brand-strip{ display:grid; grid-template-columns:repeat(5,1fr); height:10px; }
.brand-strip span:nth-child(1){ background:var(--sage); }
.brand-strip span:nth-child(2){ background:var(--lilac); }
.brand-strip span:nth-child(3){ background:var(--coral); }
.brand-strip span:nth-child(4){ background:var(--sky); }
.brand-strip span:nth-child(5){ background:var(--blush); }

/* ---------- workshops page ---------- */
.ws-hero{
  position:relative; min-height:100vh; display:flex; align-items:flex-end;
  color:var(--white); padding-bottom:180px;
}
.ws-hero-bg{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
.ws-hero-scrim{
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(90deg, rgba(42,42,38,0.82) 0%, rgba(42,42,38,0.6) 42%, rgba(42,42,38,0.25) 68%, rgba(42,42,38,0.15) 100%),
             linear-gradient(0deg, rgba(42,42,38,0.85) 0%, rgba(42,42,38,0.3) 45%, rgba(42,42,38,0.15) 100%);
}
.ws-hero-inner{ position:relative; z-index:2; width:100%; padding:0 32px; box-sizing:border-box; }
.ws-hero-lead{
  font-family:var(--f-display); font-weight:300; font-style:italic;
  font-size:clamp(22px, 3vw, 32px); line-height:1.4; max-width:27ch;
}
.ws-hero-sub{ margin-top:24px; font-size:15px; color:rgba(255,255,255,0.75); }
@media (max-width:640px){ .ws-hero{ padding-bottom:64px; } .ws-hero-inner{ padding:0 20px; } }

.ws-section{
  display:flex; align-items:center; padding:72px 0;
  border-top:1px solid var(--hairline);
}
.ws-section.reverse{ flex-direction:row-reverse; }
.ws-media{
  flex:0 0 46%; display:flex; align-items:center; justify-content:center;
  padding:0 48px;
}
.ws-media img{
  width:100%; max-width:460px;
  box-shadow:0 20px 44px rgba(42,42,38,0.16);
}
.ws-content{ flex:1 1 54%; display:flex; align-items:center; }
.ws-content-inner{ padding:0 64px; max-width:560px; }
.ws-content-inner h2{
  font-family:var(--f-display); font-weight:400; font-size:clamp(30px, 3.6vw, 44px);
  margin-bottom:24px;
}
.ws-content-inner p{ font-size:16.5px; color:var(--grey); line-height:1.75; margin-bottom:18px; }
.ws-content-inner p:last-child{ margin-bottom:0; }

@media (max-width:900px){
  .ws-section, .ws-section.reverse{ flex-direction:column; padding:48px 0; }
  .ws-media{ padding:0 24px 32px; }
  .ws-media img{ max-width:360px; }
  .ws-content-inner{ padding:0 24px; max-width:none; }
}

/* ---------- talks topics: uniform single-column layout ---------- */
.talks-section{ padding-bottom:112px; }
.talks-grid{
  display:grid; grid-template-columns:1fr;
  gap:250px;
}
.talk-item{ will-change:transform; }
.talk-img{
  overflow:hidden; aspect-ratio:21/9; margin-bottom:20px;
  box-shadow:0 18px 40px rgba(42,42,38,0.14);
}
.talk-img img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .5s ease; }
.talk-item:hover .talk-img img{ transform:scale(1.04); }
.talk-item h3{ font-family:var(--f-display); font-weight:500; font-size:24px; margin-bottom:10px; line-height:1.3; }
.talk-item p{ font-size:15px; color:var(--grey); line-height:1.65; max-width:60ch; }
@media (max-width:760px){
  .talk-img{ aspect-ratio:16/10; }
}

/* ---------- news / blog post pages ---------- */
.post-hero-h1{
  font-family:var(--f-display); font-weight:400; color:var(--white);
  font-size:clamp(30px, 4.6vw, 54px); max-width:18ch; margin-top:14px;
}
.post-meta{ margin-top:20px; font-size:14px; color:rgba(255,255,255,0.75); }
.post-body{ max-width:68ch; }
.post-body p{ font-size:17px; color:var(--grey); line-height:1.85; margin-bottom:24px; }
.post-body p:last-child{ margin-bottom:0; }
.post-body blockquote{
  font-family:var(--f-display); font-style:italic; font-weight:300;
  font-size:22px; color:var(--black); border-left:2px solid var(--coral);
  padding-left:24px; margin:32px 0;
}
.post-back{ margin-top:8px; }
.post-body h3{ font-family:var(--f-display); font-weight:500; font-size:21px; color:var(--black); margin:36px 0 12px; }
.post-body ul{ margin:0 0 24px; padding-left:22px; }
.post-body ul li{ font-size:16px; color:var(--grey); line-height:1.8; margin-bottom:5px; }
.post-callout{
  background:var(--paper); border-left:2px solid var(--coral);
  padding:20px 24px; margin:28px 0; font-size:15px; color:var(--black); line-height:1.8;
}
.post-note{ font-size:13px; color:var(--grey); font-style:italic; margin-top:32px; }

/* timeline / news index */
.news-list{ display:flex; flex-direction:column; }
.news-row{
  display:grid; grid-template-columns:120px 32px 1fr;
  grid-template-areas:"date spine content";
  align-items:flex-start; padding:48px 0;
  color:inherit;
}
.news-row:first-child{ padding-top:0; }

.news-date-col{ grid-area:date; text-align:right; padding-right:24px; padding-top:9px; }
.news-date-col .news-date{ margin-bottom:0; }

.news-spine{ grid-area:spine; position:relative; align-self:stretch; display:flex; justify-content:center; }
.news-spine::before{
  content:""; position:absolute; top:-48px; bottom:-48px; left:50%;
  width:1px; background:var(--hairline); transform:translateX(-50%);
}
.news-row:first-child .news-spine::before{ top:14px; }
.news-row:last-child .news-spine::before{ bottom:calc(100% - 14px); }
.news-dot{
  position:relative; z-index:1; margin-top:9px;
  width:14px; height:14px; border-radius:50%;
  background:var(--dot-color, var(--coral-deep)); box-shadow:0 0 0 5px var(--paper);
}

.news-content-col{ grid-area:content; display:grid; grid-template-columns:340px 1fr; gap:40px; align-items:center; }
.news-frame{ overflow:hidden; background:var(--paper); aspect-ratio:4/3; }
.news-frame img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .5s ease; }
.news-row:hover .news-frame img{ transform:scale(1.03); }
.news-date{ font-family:var(--f-label); font-weight:500; font-size:11px; letter-spacing:.1em; color:var(--grey); text-transform:uppercase; margin-bottom:12px; }
.news-info h2{ font-family:var(--f-display); font-weight:500; font-size:clamp(20px,2.2vw,26px); margin-bottom:12px; line-height:1.25; transition:color .25s ease; }
.news-row:hover .news-info h2{ color:var(--coral-deep); }
.news-info p{ font-size:14.5px; color:var(--grey); line-height:1.7; }
@media (max-width:820px){
  .news-row{
    grid-template-columns:24px 1fr;
    grid-template-areas:"spine date" "spine content";
    padding:36px 0;
  }
  .news-date-col{ text-align:left; padding:0 0 10px; }
  .news-content-col{ grid-template-columns:1fr; gap:16px; }
}

.news-frame-placeholder{
  display:flex; align-items:center; justify-content:center; text-align:center;
  font-family:var(--f-label); font-size:10.5px; letter-spacing:.1em; text-transform:uppercase;
  color:rgba(255,255,255,0.85); padding:0 16px;
}

.pagination{ display:flex; justify-content:center; align-items:center; gap:12px; padding:56px 0 8px; }
.pagination-num{
  display:flex; align-items:center; justify-content:center;
  width:40px; height:40px; border-radius:50%;
  font-family:var(--f-label); font-size:14px; font-weight:500; color:var(--grey);
  border:1px solid var(--hairline); transition:background .2s ease, color .2s ease, border-color .2s ease;
}
.pagination-num:hover{ border-color:var(--coral-deep); color:var(--coral-deep); }
.pagination-num.is-current{ background:var(--black); color:var(--white); border-color:var(--black); }

/* ---------- shop product page ---------- */
.product-section{ padding:64px 0 96px; }
.product-grid{ display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:start; }
.product-frame{ overflow:hidden; background:var(--paper); aspect-ratio:4/5; box-shadow:0 24px 50px rgba(42,42,38,0.14); }
.product-frame img{ width:100%; height:100%; object-fit:cover; display:block; }
.product-title{ font-family:var(--f-display); font-weight:400; font-size:clamp(28px,3.4vw,40px); margin-bottom:10px; }
.product-price{ font-family:var(--f-label); font-size:20px; letter-spacing:.04em; color:var(--coral-deep); margin-bottom:28px; }
.product-list{ list-style:none; margin-bottom:28px; }
.product-list li{
  position:relative; padding-left:20px; margin-bottom:12px;
  font-size:15.5px; color:var(--grey); line-height:1.6;
}
.product-list li::before{
  content:""; position:absolute; left:0; top:9px;
  width:6px; height:6px; border-radius:50%; background:var(--coral);
}
.product-meta{ display:flex; gap:32px; margin-bottom:28px; padding:20px 0; border-top:1px solid var(--hairline); border-bottom:1px solid var(--hairline); }
.product-meta div span{ display:block; }
.product-meta .label{ font-family:var(--f-label); font-size:10.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--grey); margin-bottom:6px; }
.product-meta .value{ font-family:var(--f-display); font-size:18px; }
.product-contact{ margin-bottom:16px; }
.product-shipping{ font-size:14px; color:var(--grey); line-height:1.7; }
.product-shipping a{ text-decoration:underline; }
@media (max-width:820px){
  .product-grid{ grid-template-columns:1fr; gap:36px; }
}

/* ---------- testimonial section with background photo ---------- */
.testimonial-section{ position:relative; padding:110px 0 130px; overflow:hidden; }
.testimonial-bg{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
.testimonial-scrim{
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(180deg, rgba(42,42,38,0.86) 0%, rgba(42,42,38,0.92) 100%);
}

.testimonial-slider{ max-width:760px; }
.testimonial-track{ position:relative; min-height:220px; }
.testimonial-slide{
  display:none; opacity:0; transition:opacity .4s ease;
}
.testimonial-slide.active{ display:block; opacity:1; }
.testimonial-quote{
  font-family:var(--f-display); font-style:italic; font-weight:300;
  font-size:clamp(19px, 2.4vw, 26px); line-height:1.55; color:var(--white);
  margin-bottom:28px;
}
.testimonial-name{ font-family:var(--f-label); font-weight:500; font-size:13px; letter-spacing:.06em; text-transform:uppercase; color:var(--coral); }
.testimonial-role{ font-size:13px; color:rgba(255,255,255,0.6); margin-top:4px; }

.testimonial-controls{ display:flex; align-items:center; gap:24px; margin-top:44px; }
.testimonial-arrow{
  width:40px; height:40px; border-radius:50%; border:1px solid rgba(255,255,255,0.3);
  background:transparent; color:var(--white); font-size:16px; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:background .2s ease, border-color .2s ease;
}
.testimonial-arrow:hover{ background:rgba(255,255,255,0.1); border-color:rgba(255,255,255,0.6); }
.testimonial-dots{ display:flex; gap:9px; }
.testimonial-dot{
  width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,0.3);
  border:0; cursor:pointer; padding:0; transition:background .2s ease, transform .2s ease;
}
.testimonial-dot.active{ background:var(--coral); transform:scale(1.2); }

/* ---------- lightbox ---------- */
.lightbox-overlay{
  position:fixed; inset:0; z-index:200;
  background:rgba(19,18,17,0.94);
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transition:opacity .25s ease;
  padding:60px 24px;
}
.lightbox-overlay.open{ opacity:1; visibility:visible; }
.lightbox-overlay img{
  max-width:100%; max-height:calc(100vh - 120px);
  width:auto; height:auto;
  box-shadow:0 30px 70px rgba(0,0,0,0.5);
  cursor:default;
}
.lightbox-close{
  position:absolute; top:28px; right:32px;
  width:44px; height:44px; border-radius:50%;
  background:transparent; border:1px solid rgba(255,255,255,0.3);
  color:var(--white); font-size:20px; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:background .2s ease, border-color .2s ease;
}
.lightbox-close:hover{ background:rgba(255,255,255,0.1); border-color:rgba(255,255,255,0.6); }
.lightbox-arrow{
  position:absolute; top:50%; transform:translateY(-50%);
  width:52px; height:52px; border-radius:50%;
  background:transparent; border:1px solid rgba(255,255,255,0.3);
  color:var(--white); font-size:20px; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:background .2s ease, border-color .2s ease;
}
.lightbox-arrow:hover{ background:rgba(255,255,255,0.1); border-color:rgba(255,255,255,0.6); }
.lightbox-prev{ left:24px; }
.lightbox-next{ right:24px; }
.lightbox-count{
  position:absolute; bottom:28px; left:50%; transform:translateX(-50%);
  font-family:var(--f-label); font-size:12px; letter-spacing:.08em;
  color:rgba(255,255,255,0.6);
}
@media (max-width:640px){
  .lightbox-arrow{ width:40px; height:40px; }
  .lightbox-prev{ left:10px; } .lightbox-next{ right:10px; }
  .lightbox-close{ top:16px; right:16px; }
}
[data-lb-zone] img{ cursor:zoom-in; }

/* ---------- portfolio photography (alternate stagger) ---------- */
.photo-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:32px; align-items:start; }
.photo-item{ overflow:hidden; box-shadow:0 18px 40px rgba(42,42,38,0.14); will-change:transform; }
.photo-item img{ width:100%; display:block; }
.photo-item:nth-child(1){ margin-top:60px; }
.photo-item:nth-child(2){ margin-top:0; }
.photo-item:nth-child(3){ margin-top:100px; }
.photo-item:nth-child(4){ margin-top:20px; }
.photo-item:nth-child(5){ margin-top:80px; }
.photo-item:nth-child(6){ margin-top:-10px; }
@media (max-width:900px){
  .photo-grid{ grid-template-columns:repeat(2,1fr); gap:24px; }
  .photo-item:nth-child(n){ margin-top:0; }
  .photo-item:nth-child(2), .photo-item:nth-child(4){ margin-top:40px; }
}
@media (max-width:560px){
  .photo-grid{ grid-template-columns:1fr; }
  .photo-item:nth-child(n){ margin-top:0; }
}

.ws-book{
  background:var(--black); color:var(--white);
  text-align:center; padding:120px 0; border-top:0;
}
.ws-book-lead{ font-family:var(--f-display); font-weight:300; font-style:italic; font-size:clamp(24px, 3vw, 34px); color:rgba(255,255,255,0.8); margin-bottom:32px; }
.ws-book-links{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

footer{ padding:56px 0 32px; }
.footer-grid{
  display:grid; grid-template-columns:1.3fr 1fr 1fr 1fr; gap:40px; margin-bottom:48px;
}
@media (max-width:900px){ .footer-grid{ grid-template-columns:1fr 1fr; gap:32px 40px; } }
.footer-social{ margin-top:28px; }
.footer-social h4{ margin-bottom:16px; }
.footer-social-links{ display:flex; flex-direction:row; align-items:center; gap:18px; }
.footer-social-links a{ display:inline-flex; align-items:center; margin-bottom:0; }
.footer-social-links svg{ width:20px; height:20px; flex-shrink:0; color:var(--grey); transition:color .2s ease; }
.footer-social-links a:hover svg{ color:var(--coral-deep); }
@media (max-width:700px){ .footer-grid{ grid-template-columns:1fr; gap:32px; } }
.footer-grid h4{
  font-family:var(--f-label); font-size:11px; letter-spacing:.12em; text-transform:uppercase;
  color:var(--grey); margin-bottom:16px;
}
.footer-grid a, .footer-grid p{ font-size:14px; margin-bottom:8px; display:block; color:var(--black); }
.footer-grid p{ color:var(--grey); }
.footer-grid a:hover{ color:var(--coral-deep); }
.footer-bottom{
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px;
  font-family:var(--f-label); font-size:11px; color:var(--grey);
  padding-top:24px; border-top:1px solid var(--hairline);
}
.footer-bottom a{ color:var(--grey); transition:color .2s ease; }
.footer-bottom a:hover{ color:var(--coral-deep); }

.legal-copy{ max-width:68ch; }
.legal-copy h2{ font-family:var(--f-display); font-weight:500; font-size:22px; margin:40px 0 12px; }
.legal-copy h2:first-child{ margin-top:0; }
.legal-copy p{ font-size:15.5px; color:var(--grey); line-height:1.75; margin-bottom:12px; }
.legal-copy a{ text-decoration:underline; }

/* ---------- generic page hero ---------- */
.page-hero{ padding:72px 0 56px; }
.page-hero h1{ font-family:var(--f-display); font-weight:400; font-size:clamp(32px,5.4vw,56px); }
.page-hero p{ margin-top:16px; color:var(--grey); max-width:50ch; }
.page-hero-h1-sm{ font-family:var(--f-display); font-weight:400; font-size:clamp(22px,2.8vw,32px); }

.thankyou-section{ padding:140px 0; text-align:center; }
.thankyou-section h1{ font-family:var(--f-display); font-weight:400; font-size:clamp(28px,4vw,44px); max-width:20ch; margin:0 auto; }
@media (max-width:640px){ .thankyou-section{ padding:96px 0; } }

/* ---------- gallery page (portfolio) ---------- */
.gallery-section{ padding:88px 0; border-top:1px solid var(--hairline); }
.gallery-section:first-of-type{ border-top:0; }
.gallery-title{
  font-family:var(--f-display); font-weight:400;
  font-size:clamp(30px, 4.4vw, 52px); margin-bottom:56px;
}
.gallery-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:32px; }
.gallery-frame-sq{ max-width:none; }
.gallery-frame-sq img{ aspect-ratio:1/1; object-fit:cover; }
@media (max-width:900px){ .gallery-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .gallery-grid{ grid-template-columns:1fr; } }

.outdoor-section{ position:relative; padding:120px 0 160px; overflow:hidden; }
.outdoor-bg{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; opacity:0.9; }
.outdoor-section::after{
  content:""; position:absolute; inset:0; z-index:1;
  background:rgba(251,250,246,0.72);
}
.outdoor-section .gallery-title{ color:var(--black); }

.outdoor-stagger{
  display:grid; grid-template-columns:repeat(6,1fr); gap:32px; align-items:start;
}
.outdoor-big{ grid-column:1 / 5; margin-top:0; z-index:2; }
.outdoor-mid{ grid-column:4 / 7; margin-top:-320px; z-index:3; }
.outdoor-sm{ grid-column:2 / 4; margin-top:-160px; z-index:4; }
@media (max-width:900px){
  .outdoor-stagger{ grid-template-columns:repeat(2,1fr); }
  .outdoor-big{ grid-column:1/3; margin-top:0; }
  .outdoor-mid{ grid-column:2/3; margin-top:40px; }
  .outdoor-sm{ grid-column:1/2; margin-top:-60px; }
}
@media (max-width:640px){
  .outdoor-stagger{ grid-template-columns:1fr; }
  .outdoor-big, .outdoor-mid, .outdoor-sm{ grid-column:auto; margin-top:0; }
}

/* ---------- filter chips ---------- */
.chips{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:48px; }
.chip{
  font-family:var(--f-label); font-size:11.5px; letter-spacing:.06em; text-transform:uppercase;
  padding:10px 18px; border:1px solid var(--hairline); cursor:pointer;
  background:transparent; color:var(--black);
  transition:background .2s ease, color .2s ease, border-color .2s ease;
}
.chip:hover{ background:var(--sky); border-color:var(--sky-deep); }
.chip[aria-pressed="true"]{ background:var(--black); color:var(--white); border-color:var(--black); }
.chip[aria-pressed="true"]:hover{ background:var(--black); border-color:var(--black); }

/* ---------- contact ---------- */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:64px; }
@media (max-width:820px){ .contact-grid{ grid-template-columns:1fr; gap:48px; } }
.field{ margin-bottom:24px; }
.field label{
  display:block; font-family:var(--f-label); font-size:11px; letter-spacing:.1em;
  text-transform:uppercase; color:var(--grey); margin-bottom:10px;
}
.field input, .field textarea{
  width:100%; background:transparent; border:0; border-bottom:1px solid var(--hairline);
  padding:10px 2px; font-family:var(--f-body); font-size:16px; color:var(--black);
  transition:border-color .2s ease;
}
.field input:focus, .field textarea:focus{ border-color:var(--coral-deep); outline:none; }
.field textarea{ resize:vertical; min-height:120px; }

.contact-info dt{ font-family:var(--f-label); font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--grey); margin-top:28px; margin-bottom:8px; }
.contact-info dt:first-child{ margin-top:0; }
.contact-info dd{ font-size:17px; }

/* small tracked-serif labels need a touch more weight to stay legible */
.eyebrow, .nav-links a, .work-cat, .timeline .t-date, .timeline .t-loc,
.footer-grid h4, .chip, .field label, .contact-info dt, .hero-media-cap,
.statement-meta, .footer-bottom, .logo-word{ font-weight:500; }
