/* ============================================================================
   LANGLEY ART & HOME — Design System v3 "Modern Gallery"
   Playfair Display + Hanken Grotesk · warm white / deep olive / ink.
   Image-forward, editorial, restrained. Full-screen overlay navigation.
   ========================================================================== */

:root {
  /* Neutrals */
  --ink:        #17140F;   /* deepest — dark sections, footer, primary buttons */
  --espresso:   #2A251D;   /* primary text */
  --coffee:     #6E6656;   /* secondary text */
  --taupe:      #9A9280;   /* muted */
  --greige:     #CFC9B8;
  --sand:       #E8E3D7;   /* light panels */
  --ivory:      #F7F5F0;   /* page background */
  --paper:      #FCFBF7;   /* raised surfaces */

  /* Accents */
  --olive:      #4A4A2E;   /* primary accent — links, eyebrows, hover */
  --olive-deep: #383821;
  --brass:      #9C8A5E;   /* rare hairline detail */

  /* Functional */
  --line:       rgba(42,37,29,.16);
  --line-soft:  rgba(42,37,29,.09);
  --shadow-sm:  0 1px 2px rgba(23,20,15,.04);
  --shadow-md:  0 30px 60px -34px rgba(23,20,15,.34);
  --shadow-lg:  0 50px 100px -50px rgba(23,20,15,.45);

  /* Type */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-serif:   "Playfair Display", Georgia, serif;
  --font-body:    "Hanken Grotesk", "Helvetica Neue", system-ui, -apple-system, sans-serif;

  /* Rhythm */
  --container: 1340px;
  --container-narrow: 800px;
  --gutter: clamp(1.4rem, 5vw, 5rem);
  --section-y: clamp(5.5rem, 12vw, 12rem);
  --radius: 2px;

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

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
img, picture, svg, video { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--olive); color: var(--paper); }

body {
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 0.4vw + 0.95rem, 1.13rem);
  line-height: 1.8;
  font-weight: 400;
  color: var(--espresso);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

/* ---------- Typography -------------------------------------------------- */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; color: var(--espresso); letter-spacing: -.005em; }
h1 { font-size: clamp(2.6rem, 5.6vw, 5.2rem); font-weight: 500; line-height: 1.03; }
h2 { font-size: clamp(2rem, 4.3vw, 3.6rem); }
h3 { font-size: clamp(1.35rem, 2.1vw, 2rem); }
h4 { font-size: 1.05rem; }
p { max-width: 66ch; }
strong { font-weight: 600; }
em { font-style: italic; }
.display-serif { font-family: var(--font-serif); }

.lead {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.3vw, 2.15rem);
  line-height: 1.4; font-weight: 400; font-style: italic;
  color: var(--coffee); max-width: 26ch;
}

/* ---------- Layout ------------------------------------------------------ */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container.narrow { max-width: var(--container-narrow); }
section { position: relative; }
.section-pad { padding-block: var(--section-y); }
.section-pad-t { padding-top: var(--section-y); }
.section-pad-b { padding-bottom: var(--section-y); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 1em;
  font-family: var(--font-body); font-size: .7rem; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase; color: var(--olive);
}
.eyebrow::before { content: ""; width: 2.6rem; height: 1px; background: var(--brass); display: inline-block; }
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::after { content: ""; width: 2.6rem; height: 1px; background: var(--brass); display: inline-block; }

.section-head { max-width: 56ch; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 1.4rem; }
.section-head p { margin-top: 1.5rem; color: var(--coffee); }
.section-head.centered p { margin-inline: auto; }

/* ---------- Buttons ----------------------------------------------------- */
.btn {
  --bg: var(--ink); --fg: var(--paper);
  display: inline-flex; align-items: center; gap: .8em;
  font-family: var(--font-body); font-weight: 600;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--fg); background: var(--bg);
  padding: 1.15em 2.3em; border: 1px solid var(--bg); border-radius: 0;
  cursor: pointer; position: relative; overflow: hidden;
  transition: color .5s var(--ease), border-color .5s var(--ease);
}
.btn::after { content: ""; position: absolute; inset: 0; z-index: 0; background: var(--olive); transform: scaleX(0); transform-origin: right; transition: transform .55s var(--ease-out); }
.btn:hover::after { transform: scaleX(1); transform-origin: left; }
.btn:hover { border-color: var(--olive); }
.btn > *, .btn span { position: relative; z-index: 1; }
.btn .arrow { transition: transform .55s var(--ease-out); }
.btn:hover .arrow { transform: translateX(5px); }
.btn.ghost { --bg: transparent; --fg: var(--espresso); border-color: var(--line); }
.btn.ghost::after { background: var(--ink); }
.btn.ghost:hover { color: var(--paper); border-color: var(--ink); }
.btn.on-dark { --bg: transparent; --fg: var(--paper); border-color: rgba(247,245,240,.4); }
.btn.on-dark::after { background: var(--paper); }
.btn.on-dark:hover { color: var(--ink); border-color: var(--paper); }

.link-underline {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font-body); font-weight: 600;
  font-size: .74rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--espresso); position: relative; padding-bottom: 4px;
}
.link-underline::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%; background: currentColor; transform: scaleX(1); transform-origin: right; transition: transform .5s var(--ease-out); }
.link-underline:hover::after { transform: scaleX(0); }
.link-underline .arrow { transition: transform .5s var(--ease-out); color: var(--olive); }
.link-underline:hover .arrow { transform: translateX(6px); }

/* ---------- Header ------------------------------------------------------ */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 90; transition: background .6s var(--ease), box-shadow .6s var(--ease), padding .6s var(--ease); padding-block: clamp(1.1rem, 2vw, 1.7rem); }
.site-header .bar { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; flex-direction: column; line-height: 1; }
.brand .brand-name { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.3rem, 1.7vw, 1.7rem); letter-spacing: .04em; color: var(--espresso); transition: color .5s var(--ease); }
.brand .brand-sub { font-family: var(--font-body); font-weight: 600; font-size: .54rem; letter-spacing: .42em; text-transform: uppercase; color: var(--olive); margin-top: .6em; padding-left: .12em; transition: color .5s var(--ease); }

.bar-right { display: flex; align-items: center; gap: clamp(1.2rem, 2.4vw, 2.4rem); }
.bar-cta { font-family: var(--font-body); font-weight: 600; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--espresso); position: relative; padding-bottom: 3px; transition: color .4s; }
.bar-cta::after { content:""; position:absolute; left:0; bottom:0; height:1px; width:100%; background: var(--olive); transform: scaleX(0); transform-origin:left; transition: transform .45s var(--ease-out); }
.bar-cta:hover::after { transform: scaleX(1); }
.menu-trigger { display: inline-flex; align-items: center; gap: .7em; background: none; border: 0; cursor: pointer; font-family: var(--font-body); font-weight: 600; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--espresso); }
.menu-trigger .mt-lines { display: inline-flex; flex-direction: column; gap: 5px; width: 24px; }
.menu-trigger .mt-lines span { height: 1.5px; background: currentColor; width: 100%; transition: width .4s var(--ease); }
.menu-trigger .mt-lines span:last-child { width: 60%; }
.menu-trigger:hover .mt-lines span:last-child { width: 100%; }

.site-header.scrolled { background: rgba(247,245,240,.9); backdrop-filter: saturate(130%) blur(16px); -webkit-backdrop-filter: saturate(130%) blur(16px); box-shadow: 0 1px 0 var(--line-soft); padding-block: clamp(.7rem, 1.2vw, 1rem); }
.site-header.on-hero:not(.scrolled) .brand-name,
.site-header.on-hero:not(.scrolled) .bar-cta,
.site-header.on-hero:not(.scrolled) .menu-trigger { color: var(--paper); }
.site-header.on-hero:not(.scrolled) .brand-sub { color: #D8D2B4; }
.site-header.on-hero:not(.scrolled) .bar-cta::after { background: var(--paper); }
body.menu-open .site-header { opacity: 0; pointer-events: none; }

/* ---------- Full-screen overlay menu ----------------------------------- */
.site-menu { position: fixed; inset: 0; z-index: 120; background: var(--ink); color: var(--paper); visibility: hidden; opacity: 0; transition: opacity .6s var(--ease), visibility .6s; display: flex; align-items: center; }
body.menu-open .site-menu { visibility: visible; opacity: 1; }
.menu-close { position: absolute; top: clamp(1.4rem,2.4vw,2rem); right: var(--gutter); width: 46px; height: 46px; border: 1px solid rgba(247,245,240,.3); border-radius: 50%; background: none; cursor: pointer; transition: background .4s, transform .4s; }
.menu-close span { position: absolute; top: 50%; left: 50%; width: 16px; height: 1.5px; background: var(--paper); }
.menu-close span:first-child { transform: translate(-50%,-50%) rotate(45deg); }
.menu-close span:last-child { transform: translate(-50%,-50%) rotate(-45deg); }
.menu-close:hover { background: var(--olive); transform: rotate(90deg); }
.menu-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(2rem,6vw,6rem); align-items: center; width: 100%; padding-block: 6rem; }
.menu-kicker { font-family: var(--font-body); font-size: .66rem; font-weight: 600; letter-spacing: .32em; text-transform: uppercase; color: var(--brass); }
.menu-primary { display: flex; flex-direction: column; gap: .1rem; margin: 1.6rem 0 2rem; }
.menu-primary .m-link { font-family: var(--font-display); font-weight: 500; font-size: clamp(2rem, 4.6vw, 3.6rem); line-height: 1.16; color: var(--paper); width: max-content; max-width: 100%; position: relative; opacity: 0; transform: translateY(24px); transition: color .4s var(--ease); }
body.menu-open .menu-primary .m-link { animation: menuIn .7s var(--ease-out) forwards; }
.menu-primary .m-link:nth-child(1){animation-delay:.12s}.menu-primary .m-link:nth-child(2){animation-delay:.18s}.menu-primary .m-link:nth-child(3){animation-delay:.24s}.menu-primary .m-link:nth-child(4){animation-delay:.3s}.menu-primary .m-link:nth-child(5){animation-delay:.36s}
.menu-primary .m-link span { position: relative; }
.menu-primary .m-link span::after { content:""; position:absolute; left:0; bottom:.12em; height:1px; width:100%; background: var(--brass); transform: scaleX(0); transform-origin:left; transition: transform .5s var(--ease-out); }
.menu-primary .m-link:hover { color: #E8E3CF; }
.menu-primary .m-link:hover span::after, .menu-primary .m-link.current span::after { transform: scaleX(1); }
.menu-primary .m-link.current { color: var(--brass); }
@keyframes menuIn { to { opacity: 1; transform: none; } }
.menu-secondary { display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; padding-top: 1.8rem; border-top: 1px solid rgba(247,245,240,.14); max-width: 34rem; }
.menu-secondary a { font-family: var(--font-body); font-size: .84rem; letter-spacing: .04em; color: rgba(247,245,240,.7); transition: color .3s; }
.menu-secondary a:hover { color: var(--paper); }
.menu-secondary a.current { color: var(--brass); }
.menu-book { margin-top: 2.4rem; }
.menu-aside { align-self: stretch; display: flex; flex-direction: column; justify-content: center; gap: 1.8rem; }
.menu-feature { border-radius: var(--radius); overflow: hidden; }
.menu-feature img { width: 100%; height: clamp(240px, 34vh, 420px); object-fit: cover; transition: transform 6s var(--ease); }
body.menu-open .menu-feature img { transform: scale(1.08); }
.menu-contact address { font-style: normal; font-family: var(--font-serif); font-size: 1.25rem; color: rgba(247,245,240,.86); line-height: 1.5; margin: 1rem 0; }
.menu-contact .menu-mail, .menu-contact .menu-tel { display: block; color: rgba(247,245,240,.72); font-size: .95rem; transition: color .3s; }
.menu-contact a:hover { color: var(--paper); }
.menu-socials { display: flex; gap: .8rem; margin-top: 1.2rem; }
.menu-socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(247,245,240,.2); display: grid; place-items: center; transition: background .4s, border-color .4s; }
.menu-socials a:hover { background: var(--olive); border-color: var(--olive); }
.menu-socials img { width: 17px; height: 17px; object-fit: contain; }

/* ---------- Hero -------------------------------------------------------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: var(--paper); overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(23,20,15,.44) 0%, rgba(23,20,15,.18) 28%, rgba(23,20,15,.52) 68%, rgba(23,20,15,.84) 100%), linear-gradient(90deg, rgba(23,20,15,.5) 0%, rgba(23,20,15,.1) 48%, rgba(23,20,15,0) 72%); }
.hero-inner { position: relative; z-index: 2; padding-block: 0 clamp(4.5rem, 9vw, 8rem); max-width: min(94%, 62rem); }
.hero h1 { color: var(--paper); text-shadow: 0 2px 40px rgba(0,0,0,.25); }
.hero .eyebrow { color: #E1DBBE; margin-bottom: 1.6rem; }
.hero .eyebrow::before, .hero .eyebrow.centered::after { background: var(--brass); }
.hero .lead { color: rgba(247,245,240,.94); margin-top: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.8rem; }
.scroll-cue { position: absolute; bottom: 2.2rem; right: var(--gutter); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .7rem; font-size: .58rem; letter-spacing: .32em; text-transform: uppercase; color: rgba(247,245,240,.7); }
.scroll-cue .line { width: 1px; height: 54px; background: rgba(247,245,240,.28); position: relative; overflow: hidden; }
.scroll-cue .line::after { content:""; position:absolute; top:-50%; left:0; width:100%; height:50%; background: var(--brass); animation: cue 2.4s var(--ease) infinite; }
@keyframes cue { 0%{ transform: translateY(-100%);} 60%,100%{ transform: translateY(320%);} }
@media (max-height: 720px) { .scroll-cue { display: none; } }

.page-hero { position: relative; padding-top: clamp(9.5rem, 18vh, 13rem); padding-bottom: clamp(3.5rem,7vw,6rem); }
.page-hero .eyebrow { margin-bottom: 1.4rem; }
.page-hero h1 { max-width: 22ch; }
.page-hero .lead { margin-top: 1.8rem; max-width: 32ch; }
.page-hero.center { text-align: center; }
.page-hero.center .eyebrow { justify-content: center; }
.page-hero.center .eyebrow::after { content:""; width:2.6rem;height:1px;background:var(--brass);display:inline-block; }
.page-hero.center h1, .page-hero.center .lead { margin-inline: auto; }
.breadcrumb { font-size:.68rem; letter-spacing:.18em; text-transform:uppercase; color: var(--coffee); margin-bottom:1.6rem; }
.breadcrumb a { color: var(--olive); }
.breadcrumb a:hover { text-decoration: underline; }

.wash { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .3; z-index: 0; pointer-events: none; }
.wash.a { background: radial-gradient(circle, rgba(207,201,184,.5), transparent 70%); }
.wash.b { background: radial-gradient(circle, rgba(74,74,46,.4), transparent 70%); }
.wash.c { background: radial-gradient(circle, rgba(156,138,94,.28), transparent 70%); }

/* ---------- Grid helpers ------------------------------------------------ */
.grid { display: grid; gap: clamp(1.6rem, 3vw, 3rem); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 7vw, 7rem); align-items: center; }
.split.wide-left { grid-template-columns: 1.2fr .8fr; }
.split.wide-right { grid-template-columns: .8fr 1.2fr; }

.feature-media { position: relative; }
.feature-media .frame { position: relative; border-radius: var(--radius); overflow: hidden; }
.feature-media .frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; transition: transform 1.4s var(--ease-out); }
.feature-media:hover .frame img { transform: scale(1.04); }
.feature-media .caption-tag { position: absolute; bottom: 1.2rem; left: 1.2rem; z-index: 2; background: rgba(247,245,240,.94); color: var(--espresso); font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 600; padding: .6em 1.2em; }
.feature-text h2 { margin-bottom: 1.6rem; }
.feature-text p + p { margin-top: 1.3rem; }
.feature-text .btn, .feature-text .link-underline { margin-top: 2.4rem; }
.feature-text .eyebrow { margin-bottom: 1.4rem; }

.card { background: transparent; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .6s var(--ease), transform .7s var(--ease-out); height: 100%; }
.card:hover { transform: translateY(-4px); border-color: var(--espresso); }

.portal { position: relative; display: block; border-radius: var(--radius); overflow: hidden; min-height: clamp(420px, 52vw, 660px); }
.portal img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s var(--ease-out); }
.portal::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(23,20,15,.05), rgba(23,20,15,.68)); transition: background .6s var(--ease); }
.portal:hover img { transform: scale(1.05); }
.portal:hover::after { background: linear-gradient(180deg, rgba(23,20,15,.12), rgba(23,20,15,.76)); }
.portal .portal-body { position: absolute; inset: auto 0 0 0; z-index: 2; padding: clamp(1.8rem, 3.4vw, 3rem); color: var(--paper); }
.portal .portal-body h3 { color: var(--paper); font-size: clamp(1.8rem,3vw,2.7rem); }
.portal .portal-body p { color: rgba(247,245,240,.9); font-family: var(--font-serif); font-style: italic; font-size: 1.2rem; margin-top: .6rem; max-width: 32ch; }
.portal .portal-body .go { display:inline-flex; align-items:center; gap:.6em; margin-top:1.4rem; font-size:.7rem; letter-spacing:.2em; text-transform:uppercase; font-weight:600; }
.portal .portal-body .go .arrow { transition: transform .55s var(--ease-out); }
.portal:hover .portal-body .go .arrow { transform: translateX(7px); }

.artist-card { display: block; position: relative; }
.artist-card .portrait { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 3/4; background: var(--sand); }
.artist-card .portrait img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s var(--ease-out); }
.artist-card:hover .portrait img { transform: scale(1.04); }
.artist-card .portrait::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 60%, rgba(23,20,15,.42)); opacity:0; transition: opacity .6s var(--ease); }
.artist-card:hover .portrait::after { opacity: 1; }
.artist-card .meta { padding-top: 1.3rem; }
.artist-card .meta .name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; }
.artist-card .meta .medium { font-family: var(--font-serif); font-style: italic; color: var(--coffee); font-size: 1.12rem; margin-top: .2rem; }
.artist-card .view { display:inline-flex; align-items:center; gap:.55em; margin-top:.9rem; font-size:.66rem; letter-spacing:.2em; text-transform:uppercase; font-weight:600; color: var(--olive); }
.artist-card .view .arrow { transition: transform .55s var(--ease-out); }
.artist-card:hover .view .arrow { transform: translateX(6px); }

.artwork-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.8rem, 4vw, 3.6rem); }
.artwork { background: var(--paper); padding: clamp(1rem, 1.8vw, 1.6rem); border-radius: 1px; box-shadow: var(--shadow-md); border: 1px solid var(--line-soft); transition: transform .7s var(--ease-out), box-shadow .7s var(--ease-out); cursor: zoom-in; height: 100%; display: flex; flex-direction: column; }
.artwork:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.artwork .mat { background: #fff; padding: clamp(.9rem, 1.6vw, 1.5rem); border: 1px solid var(--line-soft); box-shadow: inset 0 2px 16px rgba(23,20,15,.05); }
.artwork .mat .img-hold { overflow: hidden; background: var(--sand); }
.artwork .mat img { width: 100%; height: 100%; object-fit: contain; max-height: 440px; transition: transform 1.2s var(--ease-out); }
.artwork:hover .mat img { transform: scale(1.03); }
.artwork .plate { padding-top: 1.2rem; text-align: center; margin-top: auto; }
.artwork .plate .title { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 500; color: var(--espresso); line-height: 1.15; }
.artwork .plate .title.sold::before { content: "Sold "; color: var(--olive); font-family: var(--font-body); font-size: .62rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; vertical-align: middle; margin-right: .5em; }
.artwork .plate .spec { font-family: var(--font-body); font-size: .78rem; letter-spacing: .05em; color: var(--coffee); margin-top: .45rem; }

.masonry { columns: 3; column-gap: clamp(1.2rem, 2.4vw, 2rem); }
.masonry .tile { break-inside: avoid; margin-bottom: clamp(1.2rem, 2.4vw, 2rem); border-radius: var(--radius); overflow: hidden; position: relative; cursor: zoom-in; background: var(--sand); }
.masonry .tile img { width: 100%; display: block; transition: transform 1.3s var(--ease-out); }
.masonry .tile:hover img { transform: scale(1.05); }
.masonry .tile::after { content:""; position:absolute; inset:0; background: rgba(23,20,15,0); transition: background .6s var(--ease); }
.masonry .tile:hover::after { background: rgba(23,20,15,.14); }

.collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 2.6vw, 2.2rem); }
.collection { position: relative; display: flex; align-items: flex-end; min-height: clamp(280px, 34vw, 400px); border-radius: var(--radius); overflow: hidden; color: var(--paper); padding: clamp(1.5rem, 2.6vw, 2.2rem); }
.collection img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-out); z-index: 0; }
.collection::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(23,20,15,.05), rgba(23,20,15,.64)); z-index:1; transition: background .6s; }
.collection:hover img { transform: scale(1.06); }
.collection:hover::after { background: linear-gradient(180deg, rgba(74,74,46,.2), rgba(23,20,15,.72)); }
.collection .label { position: relative; z-index: 2; font-family: var(--font-display); font-size: clamp(1.5rem, 2.2vw, 2rem); font-weight: 500; }

/* ---------- Process / phases (no numbers) ------------------------------ */
.phase { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem,6vw,6rem); align-items: center; }
.phase + .phase { margin-top: clamp(4rem, 8vw, 8rem); }
.phase:nth-child(even) .phase-media { order: 2; }
.phase-media .frame { border-radius: var(--radius); overflow: hidden; aspect-ratio: 5/4; box-shadow: var(--shadow-md); }
.phase-media img { width:100%; height:100%; object-fit: cover; transition: transform 1.4s var(--ease-out); }
.phase:hover .phase-media img { transform: scale(1.04); }
.phase-text .phase-label { font-family: var(--font-serif); font-style: italic; font-size: 1.35rem; color: var(--olive); }
.phase-text h3 { margin: .5rem 0 1rem; }
.phase-text .link-underline { margin-top: 1.6rem; }

/* ---------- Service blocks --------------------------------------------- */
.service { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem,6vw,6rem); align-items: center; }
.service + .service { margin-top: clamp(4rem, 8vw, 8rem); }
.service:nth-child(even) .service-media { order: 2; }
.service-media .frame { border-radius: var(--radius); overflow: hidden; aspect-ratio: 5/4; box-shadow: var(--shadow-md); }
.service-media img { width:100%; height:100%; object-fit: cover; transition: transform 1.4s var(--ease-out); }
.service:hover .service-media img { transform: scale(1.04); }
.service .kicker { font-family: var(--font-serif); font-style: italic; font-size: 1.35rem; color: var(--olive); }
.service-text h2 { margin-top: .5rem; }

/* ---------- Value strip (no numbers) ----------------------------------- */
.value-strip { display:grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.6rem,3vw,3.5rem); }
.value { text-align: center; }
.value .v-mark { display:inline-block; width:34px; height:1px; background: var(--brass); margin-bottom: 1.4rem; }
.value h3 { font-size: 1.5rem; }
.value p { font-size: .96rem; color: var(--coffee); margin: .8rem auto 0; max-width: 32ch; }

.section-dark { background: var(--ink); color: var(--paper); }
.section-dark h1,.section-dark h2,.section-dark h3 { color: var(--paper); }
.section-dark p { color: rgba(247,245,240,.78); }
.section-dark .eyebrow { color: var(--brass); }
.section-dark .eyebrow::before, .section-dark .eyebrow.centered::after { background: var(--brass); }
.section-dark .lead { color: rgba(247,245,240,.92); }

.statement { text-align: center; max-width: min(92%, 34rem); margin-inline: auto; }
.statement .mark { font-family: var(--font-serif); font-size: 4.5rem; line-height: .3; color: var(--taupe); display:block; margin-bottom: 1.6rem; }
.statement blockquote { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.9rem, 3.6vw, 3.1rem); line-height: 1.22; color: var(--espresso); }
.section-dark .statement blockquote { color: var(--paper); }
.statement cite { display:block; font-style: normal; margin-top: 2rem; font-family: var(--font-body); font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; color: var(--olive); }
.section-dark .statement cite { color: var(--brass); }

/* ---------- Forms ------------------------------------------------------- */
.form-card { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: clamp(1.8rem, 4vw, 3.4rem); box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.field { margin-bottom: 1.5rem; display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .66rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--coffee); margin-bottom: .6rem; }
.field input, .field textarea, .field select { background: transparent; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; padding: .7em .1em; font-size: 1.02rem; color: var(--espresso); transition: border-color .4s; }
.field textarea { resize: vertical; min-height: 130px; border: 1px solid var(--line); padding: .9em 1em; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--olive); }
.form-note { font-size: .85rem; color: var(--coffee); margin-top: .4rem; }

.detail-list { display: grid; gap: 2rem; }
.detail { display: grid; grid-template-columns: auto 1fr; gap: 1.3rem; align-items: start; }
.detail .ic { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--brass); display: grid; place-items: center; color: var(--olive); flex-shrink: 0; }
.detail .ic svg { width: 18px; height: 18px; }
.detail .d-label { font-size: .66rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--coffee); }
.detail .d-value { font-family: var(--font-serif); font-size: 1.5rem; color: var(--espresso); line-height: 1.3; margin-top: .25rem; }
.detail .d-value a:hover { color: var(--olive); }

.soon { text-align: center; max-width: 50ch; margin-inline: auto; padding-block: clamp(2rem,5vw,4rem); }
.soon .mark { font-family: var(--font-serif); font-style: italic; font-size: 1.5rem; color: var(--olive); }
.soon h2 { margin: 1.2rem 0; }

.cta-band { position: relative; overflow: hidden; text-align: center; color: var(--paper); }
.cta-band .bg { position:absolute; inset:0; z-index:0; }
.cta-band .bg img { width:100%;height:100%;object-fit:cover; }
.cta-band .bg::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(23,20,15,.72), rgba(56,56,33,.8)); }
.cta-band .inner { position: relative; z-index: 2; max-width: min(92%, 38rem); margin-inline: auto; }
.cta-band h2 { color: var(--paper); }
.cta-band p { color: rgba(247,245,240,.85); margin: 1.4rem auto 2.4rem; }

/* ---------- Journal / blog --------------------------------------------- */
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.8rem, 3.5vw, 3rem); }
.post-card { display: block; }
.post-card .thumb { overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; background: var(--sand); }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s var(--ease-out); }
.post-card:hover .thumb img { transform: scale(1.05); }
.post-card .p-meta { margin-top: 1.2rem; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--olive); }
.post-card h3 { margin: .7rem 0 .5rem; font-size: 1.55rem; transition: color .4s; }
.post-card:hover h3 { color: var(--olive); }
.post-card .p-excerpt { color: var(--coffee); font-size: .98rem; }
.post-card .p-read { display:inline-flex; align-items:center; gap:.5em; margin-top:1rem; font-size:.68rem; letter-spacing:.2em; text-transform:uppercase; font-weight:600; color: var(--olive); }

.article-hero { position: relative; min-height: 62vh; display: flex; align-items: flex-end; color: var(--paper); overflow: hidden; }
.article-hero .bg { position:absolute; inset:0; z-index:0; }
.article-hero .bg img { width:100%; height:100%; object-fit: cover; }
.article-hero .bg::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(23,20,15,.4), rgba(23,20,15,.78)); }
.article-hero .inner { position: relative; z-index: 2; padding-block: 0 clamp(3rem,6vw,5rem); max-width: min(92%, 44rem); }
.article-hero .a-meta { font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--brass); margin-bottom: 1.2rem; }
.article-hero h1 { color: var(--paper); }
.article-body { max-width: 40rem; margin-inline: auto; }
.article-body p { max-width: none; }
.article-body p + p { margin-top: 1.5rem; }
.article-body h2 { font-size: clamp(1.6rem,2.6vw,2.2rem); margin: 2.6rem 0 1rem; }
.article-body .drop { font-family: var(--font-serif); font-style: italic; font-size: 1.5rem; color: var(--olive); line-height: 1.4; margin: 0 0 1.6rem; }
.article-body figure { margin: 2.6rem 0; }
.article-body figure img { width: 100%; border-radius: var(--radius); }
.article-body figcaption { font-size: .82rem; color: var(--coffee); margin-top: .7rem; text-align: center; font-style: italic; font-family: var(--font-serif); }

/* ---------- Footer ------------------------------------------------------ */
.site-footer { background: var(--ink); color: rgba(247,245,240,.78); position: relative; overflow: hidden; }
.site-footer .foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: clamp(2rem, 4vw, 4rem); padding-block: clamp(4rem, 7vw, 6.5rem); }
.site-footer .brand-block .brand-name { font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; letter-spacing: .03em; color: var(--paper); }
.site-footer .brand-block .brand-sub { font-size: .54rem; letter-spacing:.42em; text-transform:uppercase; color: var(--brass); margin-top:.7rem; }
.site-footer .brand-block p { margin-top: 1.5rem; color: rgba(247,245,240,.6); font-size: .96rem; max-width: 32ch; }
.site-footer h4 { font-family: var(--font-body); font-size: .66rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--taupe); margin-bottom: 1.5rem; }
.site-footer .f-links { display: grid; gap: .8rem; }
.site-footer .f-links a { color: rgba(247,245,240,.74); font-size: .95rem; transition: color .3s, padding-left .3s; }
.site-footer .f-links a:hover { color: var(--paper); padding-left: .4rem; }
.site-footer address { font-style: normal; color: rgba(247,245,240,.68); font-size: .96rem; line-height: 2; }
.site-footer address a:hover { color: var(--paper); }
.socials { display: flex; gap: .9rem; margin-top: 1.6rem; }
.socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(247,245,240,.18); display: grid; place-items: center; transition: background .4s, border-color .4s, transform .4s; }
.socials a:hover { background: var(--olive); border-color: var(--olive); transform: translateY(-3px); }
.socials a img { width: 19px; height: 19px; object-fit: contain; }
.foot-bottom { border-top: 1px solid rgba(247,245,240,.1); padding-block: 1.8rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .78rem; color: rgba(247,245,240,.5); letter-spacing: .04em; }
.foot-bottom a:hover { color: var(--paper); }

/* ---------- Lightbox ---------------------------------------------------- */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(18,15,11,.95); display: flex; align-items: center; justify-content: center; padding: 5vw; opacity: 0; visibility: hidden; transition: opacity .5s var(--ease); backdrop-filter: blur(8px); }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox figure { max-width: 92vw; max-height: 88vh; display: flex; flex-direction: column; align-items: center; gap: 1.2rem; transform: scale(.97); transition: transform .6s var(--ease-out); }
.lightbox.open figure { transform: scale(1); }
.lightbox img { max-width: 90vw; max-height: 76vh; object-fit: contain; box-shadow: 0 40px 90px rgba(0,0,0,.6); background: #fff; padding: clamp(.6rem,1.6vw,1.4rem); }
.lightbox figcaption { color: var(--paper); font-family: var(--font-serif); font-size: 1.35rem; text-align: center; }
.lightbox figcaption .spec { display:block; font-family: var(--font-body); font-size: .78rem; letter-spacing: .12em; color: var(--taupe); margin-top: .35rem; }
.lightbox .lb-close { position: absolute; top: 1.6rem; right: 1.8rem; width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(247,245,240,.3); background: none; color: var(--paper); font-size: 1.4rem; cursor: pointer; transition: background .3s, transform .3s; }
.lightbox .lb-close:hover { background: var(--olive); transform: rotate(90deg); }
.lightbox .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 56px; height: 56px; border-radius: 50%; border: 1px solid rgba(247,245,240,.28); background: rgba(0,0,0,.2); color: var(--paper); font-size: 1.5rem; cursor: pointer; transition: background .3s; display: grid; place-items: center; }
.lightbox .lb-nav:hover { background: var(--olive); }
.lightbox .lb-prev { left: 2.5vw; } .lightbox .lb-next { right: 2.5vw; }

/* ---------- Reveal ------------------------------------------------------
   Initial hidden states are gated behind html.js so that if JavaScript
   ever fails to run, ALL content (and every image) is visible by default. */
.js .reveal { opacity: 0; transform: translateY(38px); transition: opacity 1.15s var(--ease-out), transform 1.15s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; } .reveal.d2 { transition-delay: .2s; } .reveal.d3 { transition-delay: .3s; } .reveal.d4 { transition-delay: .4s; } .reveal.d5 { transition-delay: .5s; }
.js .reveal-img { clip-path: inset(0 0 100% 0); transition: clip-path 1.4s var(--ease-out); }
.reveal-img.in { clip-path: inset(0 0 0 0); }
.reveal-head .ln { display: block; padding-bottom: .04em; }
.js .reveal-head .ln { overflow: hidden; }
.reveal-head .ln > span { display: block; white-space: nowrap; }
.js .reveal-head .ln > span { transform: translateY(112%); transition: transform 1.1s var(--ease-out); }
.reveal-head.in .ln > span { transform: none; }
.reveal-head .ln:nth-child(2) > span { transition-delay: .08s; } .reveal-head .ln:nth-child(3) > span { transition-delay: .16s; } .reveal-head .ln:nth-child(4) > span { transition-delay: .24s; }
/* Failsafe: inline head script adds .reveal-all after 6s if main.js never runs */
.reveal-all .reveal, .reveal-all .reveal-img, .reveal-all .reveal-head, .reveal-all .reveal-head .ln > span { opacity: 1 !important; transform: none !important; clip-path: none !important; }

.marquee { overflow: hidden; border-block: 1px solid var(--line); padding-block: 1.8rem; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee .track { display: flex; gap: 4rem; width: max-content; animation: scroll-x 40s linear infinite; }
.marquee:hover .track { animation-play-state: paused; }
.marquee .item { font-family: var(--font-display); font-weight: 500; font-style: italic; font-size: clamp(1.6rem, 2.6vw, 2.4rem); color: var(--coffee); white-space: nowrap; display:flex; align-items:center; gap:4rem; }
.marquee .item::after { content: "✦"; color: var(--brass); font-size: .7em; font-style: normal; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

.brush-strip { width: 100%; height: clamp(100px, 13vw, 170px); overflow: hidden; background: var(--ink); }
.brush-strip img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.frieze-band { background: var(--sand); padding-block: clamp(3rem, 6vw, 5rem); text-align: center; }
.frieze { display: flex; justify-content: center; }
.frieze img { max-height: clamp(130px, 18vw, 220px); width: auto; object-fit: contain; }
.frieze-caption { margin: 1.6rem auto 0; font-family: var(--font-serif); font-style: italic; font-size: clamp(1.3rem,2.2vw,1.7rem); color: var(--coffee); max-width: 40ch; }
.gold-flourish { width: clamp(160px, 22vw, 240px); height: auto; margin: 0 auto 1.8rem; display: block; mix-blend-mode: screen; }

.visit-card { position: relative; display: block; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.visit-card img { width: 100%; height: 320px; object-fit: cover; transition: transform 1.3s var(--ease-out); }
.visit-card:hover img { transform: scale(1.05); }
.visit-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(23,20,15,0) 45%, rgba(23,20,15,.62)); }
.visit-tag { position: absolute; left: 1.3rem; bottom: 1.3rem; z-index: 2; display: inline-flex; align-items: center; gap: .6em; color: var(--paper); font-family: var(--font-body); font-weight: 600; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; }
.visit-tag .arrow { transition: transform .5s var(--ease-out); }
.visit-card:hover .visit-tag .arrow { transform: translateX(6px); }

.center { text-align: center; }
.mt-1{margin-top:1.2rem}.mt-2{margin-top:2rem}.mt-3{margin-top:3rem}
.divider-rule { height:1px; background: var(--line); border:0; }
.pill { display:inline-block; font-size:.66rem; font-weight:600; letter-spacing:.2em; text-transform:uppercase; color: var(--olive); border:1px solid var(--brass); border-radius:100px; padding:.5em 1.2em; }

/* ---------- Responsive -------------------------------------------------- */
@media (max-width: 980px) {
  .split, .service, .phase, .split.wide-left, .split.wide-right { grid-template-columns: 1fr; gap: clamp(2rem,6vw,3rem); }
  .service:nth-child(even) .service-media, .phase:nth-child(even) .phase-media { order: 0; }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .artwork-grid, .collection-grid, .journal-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry { columns: 2; }
  .menu-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .menu-aside { display: none; }
  .site-footer .foot-top { grid-template-columns: 1fr 1fr; }
  .site-footer .brand-block { grid-column: 1 / -1; }
  .value-strip { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .bar-cta { display: none; }
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .artwork-grid, .journal-grid { grid-template-columns: 1fr; }
  .collection-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .lead { max-width: none; }
  h1 { font-size: clamp(2.4rem, 10.5vw, 3.4rem); }
  .scroll-cue { display: none; }
  .reveal-head .ln { overflow: visible; padding-bottom: 0; }
  .reveal-head .ln > span { white-space: normal; transform: none !important; transition: none !important; }
  .js .reveal-head { opacity: 0; transform: translateY(22px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
  .reveal-head.in { opacity: 1; transform: none; }
  .menu-primary .m-link { font-size: clamp(1.9rem, 9vw, 2.6rem); }
}
@media (max-width: 480px) {
  .artwork-grid, .collection-grid { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
}
