/* ==========================================================================
   Woodhouse Design Studio — style.css
   Palette and type drawn from the studio's logo and portfolio:
   ink/espresso interiors, gallery-plaster cream, matte brass gold.
   Signature motif: the lit display niche (recessed panel, downlight glow).
   ========================================================================== */

/* ---------- Fonts (self-hosted) ---------- */
@font-face {
  font-family: 'Cinzel';
  src: url('../fonts/cinzel-v26-latin-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-v21-latin-300.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-v21-latin-regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-v21-latin-italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-v21-latin-500italic.woff2') format('woff2');
  font-weight: 500; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('../fonts/jost-v20-latin-300.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('../fonts/jost-v20-latin-regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('../fonts/jost-v20-latin-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --ink: #131110;
  --espresso: #211c17;
  --espresso-deep: #191512;
  --cream: #f2eee6;
  --bone: #e9e2d4;
  --text-dark: #2b2621;
  --text-mute: #776d5e;
  --text-light: #e5ddcd;
  --text-light-mute: #a99e8c;
  --gold: #c19a56;
  --gold-soft: #d9bc82;
  --hairline: rgba(193, 154, 86, .38);
  --hairline-dim: rgba(193, 154, 86, .22);

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --brand: 'Cinzel', 'Times New Roman', serif;
  --sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;

  --ease: cubic-bezier(.22, .61, .21, 1);
  --pad-x: clamp(1.25rem, 5vw, 3rem);
  --section-y: clamp(4.5rem, 10vw, 8.5rem);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--gold-soft);
  padding: .6em 1.2em; font-size: .8rem; letter-spacing: .12em;
}
.skip-link:focus { left: 0; }

.container { max-width: 1180px; margin-inline: auto; padding-inline: var(--pad-x); }

/* ---------- Shared type roles ---------- */
.eyebrow {
  display: flex; align-items: center; gap: .9rem;
  font-size: .72rem; font-weight: 400;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before { content: ''; width: 34px; height: 1px; background: var(--hairline); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ''; width: 34px; height: 1px; background: var(--hairline); }

.display {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.14;
  letter-spacing: .01em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans); font-weight: 400;
  font-size: .74rem; letter-spacing: .3em; text-transform: uppercase;
  padding: 1.05em 2.7em 1em 3em; /* optical: tracking adds right-side space */
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  background: transparent;
  transition: background-color .45s var(--ease), color .45s var(--ease);
  cursor: pointer;
}
.btn:hover, .btn:focus-visible { background: var(--gold); color: var(--ink); }
.btn--dark { color: #8a6c33; border-color: #a8863f; }
.btn--dark:hover, .btn--dark:focus-visible { background: #a8863f; color: var(--cream); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background-color .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(19, 17, 16, .92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--hairline-dim);
}
.header-inner {
  max-width: 1320px; margin-inline: auto;
  padding: 1.1rem var(--pad-x);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.lockup { display: flex; align-items: center; gap: .8rem; }
.lockup img { height: 34px; width: auto; }
.lockup-text { display: flex; flex-direction: column; line-height: 1.25; }
.lockup-name {
  font-family: var(--brand); font-weight: 600;
  font-size: .92rem; letter-spacing: .2em;
  color: var(--cream);
}
.lockup-sub {
  font-size: .56rem; font-weight: 400;
  letter-spacing: .5em; text-transform: uppercase;
  color: var(--gold-soft);
}
.site-nav { display: flex; gap: clamp(1.4rem, 3vw, 2.6rem); }
.site-nav a {
  font-size: .74rem; font-weight: 400;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--text-light);
  padding-block: .35em;
  background: linear-gradient(var(--gold), var(--gold)) bottom left / 0 1px no-repeat;
  transition: color .35s var(--ease), background-size .35s var(--ease);
}
.site-nav a:hover, .site-nav a:focus-visible, .site-nav a[aria-current] {
  color: var(--gold-soft);
  background-size: 100% 1px;
}

.menu-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  padding: .5rem; margin: -.5rem;
}
.menu-toggle span {
  display: block; width: 26px; height: 1px; background: var(--cream);
  margin: 7px 0; transition: transform .35s var(--ease), opacity .35s var(--ease);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid; place-items: center;
  isolation: isolate;
  color: var(--cream);
  text-align: center;
  padding: 7rem var(--pad-x) 5rem;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 60%; }
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(62% 58% at 50% 46%, rgba(12, 10, 8, .52), transparent 74%),
    radial-gradient(120% 90% at 50% 105%, rgba(12, 10, 8, .72), transparent 55%),
    linear-gradient(180deg, rgba(12, 10, 8, .62) 0%, rgba(12, 10, 8, .34) 34%, rgba(12, 10, 8, .55) 76%, rgba(12, 10, 8, .78) 100%);
}
.hero-mono { height: clamp(72px, 11vw, 108px); width: auto; margin-inline: auto; filter: drop-shadow(0 4px 18px rgba(0,0,0,.55)); }
.hero-name {
  font-family: var(--brand); font-weight: 600;
  font-size: clamp(2rem, 5.6vw, 3.4rem);
  letter-spacing: .24em; text-indent: .24em; /* recenters tracked caps */
  margin-top: 1.6rem;
  text-shadow: 0 2px 24px rgba(0,0,0,.5);
}
.hero-sub {
  font-size: clamp(.72rem, 1.4vw, .9rem); font-weight: 300;
  letter-spacing: .58em; text-indent: .58em; text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: .5rem;
  text-shadow: 0 1px 14px rgba(0, 0, 0, .7);
}
.hero-rule { width: 72px; height: 1px; background: var(--gold); border: 0; margin: 2rem auto; }
.hero-tagline {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.35rem, 2.8vw, 1.8rem);
  letter-spacing: .02em;
}
.hero-services {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem 1.1rem;
  margin-top: 1.4rem;
  font-size: .72rem; font-weight: 400;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--text-light);
  text-shadow: 0 1px 12px rgba(0, 0, 0, .65);
}
.hero-services .sep { color: var(--gold); }
.hero .btn { margin-top: 2.8rem; }

/* Hero load sequence */
@media (prefers-reduced-motion: no-preference) {
  .hero-seq { opacity: 0; transform: translateY(14px); animation: rise 1.1s var(--ease) forwards; }
  .hero-seq:nth-child(1) { animation-delay: .15s; }
  .hero-seq:nth-child(2) { animation-delay: .35s; }
  .hero-seq:nth-child(3) { animation-delay: .5s; }
  .hero-seq:nth-child(4) { animation-delay: .7s; }
  .hero-seq:nth-child(5) { animation-delay: .85s; }
  .hero-seq:nth-child(6) { animation-delay: 1s; }
  .hero-seq:nth-child(7) { animation-delay: 1.2s; }
  @keyframes rise { to { opacity: 1; transform: none; } }
}

/* ---------- Sections ---------- */
.section { padding-block: var(--section-y); }
.section--dark { background: var(--espresso); color: var(--text-light); }
.section--ink { background: var(--ink); color: var(--text-light); }
.section--bone { background: var(--bone); }
.section--cream { background: var(--cream); }

/* Lit-niche panel: the studio's recessed, downlit display niches as a header device */
.niche {
  position: relative;
  background: var(--espresso-deep);
  box-shadow: inset 0 14px 34px rgba(0, 0, 0, .55), inset 0 -6px 18px rgba(0, 0, 0, .3);
  padding: clamp(2.4rem, 5vw, 3.6rem) var(--pad-x) clamp(2rem, 4vw, 3rem);
  text-align: center;
  overflow: hidden;
}
.niche::before { /* downlight */
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(58% 130% at 50% -12%, rgba(217, 188, 130, .2), transparent 62%);
  pointer-events: none;
}
.niche::after { /* shelf */
  content: ''; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: min(320px, 60%); height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.niche .display { color: var(--cream); font-size: clamp(1.9rem, 4.4vw, 3rem); margin-top: 1.1rem; }

/* ---------- Intro ---------- */
.intro-grid {
  display: grid; grid-template-columns: 1.04fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.intro-copy h2 { font-size: clamp(2rem, 4.2vw, 3rem); margin: 1.3rem 0 1.6rem; color: #241f1a; }
.intro-copy p + p { margin-top: 1.1rem; }
.intro-copy .lead-link { margin-top: 2.2rem; display: inline-block; }
.lead-link {
  font-size: .74rem; font-weight: 400;
  letter-spacing: .28em; text-transform: uppercase;
  color: #8a6c33;
  background: linear-gradient(var(--gold), var(--gold)) bottom left / 100% 1px no-repeat;
  padding-bottom: .5em;
  transition: color .35s var(--ease), letter-spacing .35s var(--ease);
}
.lead-link:hover, .lead-link:focus-visible { color: var(--text-dark); letter-spacing: .32em; }
.lead-link--light { color: var(--gold-soft); }
.lead-link--light:hover, .lead-link--light:focus-visible { color: var(--cream); }

.framed { position: relative; }
.framed img { width: 100%; height: auto; }
.framed::before { /* offset hairline frame, like a hung canvas */
  content: ''; position: absolute; inset: -14px 14px 14px -14px;
  border: 1px solid var(--hairline);
  pointer-events: none;
}
.framed figcaption {
  margin-top: 1.1rem;
  font-size: .68rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--text-mute);
}

/* ---------- Work ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.5rem, 3vw, 2.4rem);
  margin-top: clamp(3rem, 6vw, 4.5rem);
}
.work-item { display: flex; flex-direction: column; }
.work-item figure { overflow: hidden; }
.work-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.work-item:hover img { transform: scale(1.035); }
.work-meta { margin-top: 1.05rem; }
.work-label {
  font-size: .68rem; font-weight: 400;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold);
}
.work-title {
  font-family: var(--serif); font-weight: 400;
  font-size: 1.3rem; line-height: 1.3;
  color: var(--cream);
  margin-top: .3rem;
}
.work-item--res { grid-column: 1 / 8; }
.work-item--hosp { grid-column: 8 / 13; grid-row: 1 / 3; margin-top: 5rem; }
.work-item--det { grid-column: 1 / 8; }
.work-item--guest { grid-column: 3 / 13; margin-top: 1rem; }
.work-item--hosp figure { flex: 1; }
.work-more { margin-top: clamp(3rem, 6vw, 4.5rem); text-align: center; }

/* ---------- Quote band ---------- */
.quote-band { position: relative; text-align: center; overflow: hidden; }
.quote-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(52% 90% at 50% -10%, rgba(217, 188, 130, .13), transparent 60%);
  pointer-events: none;
}
.quote-mono { height: 52px; width: auto; margin-inline: auto; opacity: .95; }
.quote-band blockquote p {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 2.7rem); line-height: 1.3;
  color: var(--cream);
  max-width: 21em; margin: 1.8rem auto 0;
}
.quote-band cite {
  display: block; font-style: normal;
  margin-top: 1.6rem;
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--text-light-mute);
}

/* ---------- Contact band ---------- */
.contact-band { text-align: center; }
.contact-band .display { font-size: clamp(2rem, 4.4vw, 3.1rem); color: #241f1a; margin-top: 1.2rem; }
.contact-band p.sub {
  max-width: 34em; margin: 1.4rem auto 0;
  color: var(--text-mute);
}
.contact-band .btn { margin-top: 2.6rem; }
.contact-place {
  margin-top: 2.8rem;
  font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--text-mute);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink); color: var(--text-light-mute);
  border-top: 1px solid var(--hairline-dim);
  padding: 3.2rem 0 2.6rem;
}
.footer-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 2rem;
}
.footer-lockup { display: flex; align-items: center; gap: .8rem; }
.footer-lockup img { height: 30px; width: auto; }
.footer-place {
  text-align: center;
  font-size: .66rem; letter-spacing: .28em; text-transform: uppercase;
  line-height: 2.1;
}
.footer-social { display: flex; gap: 1.2rem; }
.footer-social a { color: var(--gold); opacity: .8; transition: opacity .3s var(--ease); }
.footer-social a:hover, .footer-social a:focus-visible { opacity: 1; }
.footer-social svg { width: 19px; height: 19px; display: block; }
.footer-legal {
  margin-top: 2.4rem; text-align: center;
  font-size: .68rem; letter-spacing: .14em;
}

/* ---------- Interior pages (no hero) ---------- */
.site-header--page {
  background: rgba(19, 17, 16, .96);
  border-bottom-color: var(--hairline-dim);
}
.page-banner {
  position: relative;
  background: var(--espresso);
  color: var(--text-light);
  text-align: center;
  padding: 10rem var(--pad-x) 4.5rem;
  overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(56% 120% at 50% -10%, rgba(217, 188, 130, .16), transparent 62%);
  pointer-events: none;
}
.page-banner h1 { color: var(--cream); font-size: clamp(2.2rem, 5vw, 3.4rem); margin-top: 1.1rem; }

/* ---------- Contact page ---------- */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}
.contact-aside .display { font-size: clamp(1.6rem, 3vw, 2.1rem); color: #241f1a; }
.contact-aside p + p { margin-top: 1.1rem; }
.contact-email {
  display: inline-block; margin-top: 1.6rem;
  font-size: .98rem; letter-spacing: .05em; text-transform: none;
  color: #8a6c33;
  background: linear-gradient(var(--gold), var(--gold)) bottom left / 100% 1px no-repeat;
  padding-bottom: .35em;
  transition: color .35s var(--ease);
}
.contact-email:hover, .contact-email:focus-visible { color: var(--text-dark); }
.contact-aside .place {
  margin-top: 2.2rem;
  font-size: .68rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--text-mute);
}

.inquiry-form { display: grid; grid-template-columns: 1fr 1fr; gap: 2.1rem 2rem; }
.field--wide { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: .66rem; font-weight: 400;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: .55rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--sans); font-weight: 300; font-size: 1rem;
  color: var(--text-dark);
  background: transparent;
  border: 0; border-bottom: 1px solid rgba(43, 38, 33, .28);
  border-radius: 0;
  padding: .55em 0;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field textarea { resize: vertical; min-height: 7.5em; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
  box-shadow: 0 1px 0 var(--gold);
}
.field select { cursor: pointer; }
.inquiry-form .btn { justify-self: start; margin-top: .4rem; }
.inquiry-form .btn[disabled] { opacity: .55; cursor: default; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-note {
  grid-column: 1 / -1;
  display: none;
  padding: 1.1rem 1.4rem;
  font-size: .95rem;
  border: 1px solid var(--hairline);
  background: rgba(193, 154, 86, .07);
}
.form-note.show { display: block; }
.form-note--error { border-color: rgba(140, 60, 40, .5); background: rgba(140, 60, 40, .06); }

/* ---------- Spotlight page ---------- */
.page-banner .lede {
  max-width: 42em; margin: 1.9rem auto 0;
  color: var(--text-light-mute);
  font-size: 1.05rem;
}
.page-banner .lede + .lede { margin-top: 1rem; }

.spot-hint {
  margin-top: 1.4rem;
  font-size: .66rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--text-light-mute);
}

.spot { padding-block: clamp(3.4rem, 7vw, 5.6rem); }
.spot-inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(2.2rem, 4vw, 3.2rem) clamp(1.6rem, 3vw, 2.8rem);
  align-items: start;
}
/* The copy sits above the pair and shifts side to side down the page, so the
   photographs always get the full measure of the container. */
.spot-head { grid-column: 1 / 8; }
.spot-pair { grid-column: 1 / 13; }
.spot--flip .spot-head { grid-column: 6 / 13; }

.spot-index {
  font-family: var(--serif); font-weight: 300;
  font-size: 2.9rem; line-height: 1;
  color: var(--gold);
}
.spot-label {
  margin-top: .7rem;
  font-size: .68rem; font-weight: 400;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold);
}
.spot-title { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-top: .9rem; color: #241f1a; }
.section--dark .spot-title, .section--ink .spot-title { color: var(--cream); }
.spot-note { margin-top: 1.1rem; max-width: 46em; font-size: 1rem; color: var(--text-mute); }
.section--dark .spot-note, .section--ink .spot-note { color: var(--text-light-mute); }

/* Before / after: the "after" column runs wider, echoing the home page's
   asymmetric grid — the resolved room gets the larger frame. */
/* Bottom-aligned so the BEFORE / AFTER captions sit on one line; the tops
   fall where the photographs' proportions put them, the same staggered
   rhythm the home page's work grid uses. */
.spot-pair {
  display: grid; grid-template-columns: .84fr 1fr;
  gap: clamp(1rem, 2.2vw, 1.8rem);
  align-items: end;
}
.spot-pair--even { grid-template-columns: 1fr 1fr; }
.spot-group { display: flex; flex-direction: column; }
.spot-shots { display: grid; grid-template-columns: 1fr; gap: clamp(.5rem, 1vw, .8rem); }
.spot-shots--two { grid-template-columns: 1fr 1fr; }
.spot-shot { position: relative; }
.spot-shot img { width: 100%; height: auto; }

.spot-open { display: block; position: relative; overflow: hidden; }
.spot-open img { transition: transform 1.1s var(--ease); }
.spot-open:hover img, .spot-open:focus-visible img { transform: scale(1.035); }
.spot-open::after { /* "closer look" affordance */
  content: '+';
  position: absolute; right: .7rem; bottom: .7rem;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  font-family: var(--sans); font-size: 1.1rem; line-height: 1;
  color: var(--cream);
  background: rgba(19, 17, 16, .55);
  border: 1px solid var(--hairline);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.spot-open:hover::after, .spot-open:focus-visible::after { opacity: 1; }

.spot-tag {
  display: flex; align-items: center; gap: .9rem;
  margin-top: 1rem;
  font-size: .66rem; font-weight: 400;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--text-mute);
}
.spot-tag::after { content: ''; flex: 1; height: 1px; background: var(--hairline-dim); }
.section--dark .spot-tag { color: var(--text-light-mute); }
.spot-group--after .spot-tag { color: var(--gold); }
.spot-group--after .spot-tag::after { background: var(--hairline); }

/* ---------- Design-details feature ---------- */
.feature-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2.6rem, 6vw, 5rem);
  align-items: center;
}
.section--ink .framed figcaption { color: var(--text-light-mute); }
.feature-title { font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--cream); margin-top: 1.2rem; }
.feature-note { margin-top: 1.3rem; color: var(--text-light-mute); }
.feature-list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem 2.4rem;
  margin-top: 2.6rem;
  padding-top: 2.4rem;
  border-top: 1px solid var(--hairline-dim);
}
.feature-list dt {
  font-size: .68rem; font-weight: 400;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold);
}
.feature-list dd { margin-top: .55rem; font-size: .95rem; line-height: 1.7; color: var(--text-light-mute); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  display: none;
  background: rgba(12, 10, 8, .95);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: clamp(3.4rem, 7vw, 5rem) clamp(1rem, 5vw, 4.5rem);
}
.lightbox.open { display: grid; place-items: center; }
.lightbox figure { margin: 0; text-align: center; max-height: 100%; }
.lightbox img {
  max-width: 100%; max-height: calc(100svh - 12rem);
  width: auto; margin-inline: auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
}
.lightbox figcaption {
  margin-top: 1.2rem;
  font-size: .68rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--text-light-mute);
}
.lightbox button {
  position: absolute;
  background: transparent; border: 1px solid var(--hairline-dim);
  color: var(--gold-soft); cursor: pointer;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.5rem; line-height: 1;
  transition: border-color .3s var(--ease), color .3s var(--ease), background-color .3s var(--ease);
}
.lightbox button:hover, .lightbox button:focus-visible {
  border-color: var(--gold); color: var(--ink); background: var(--gold);
}
.lb-close { top: clamp(.9rem, 2vw, 1.6rem); right: clamp(.9rem, 2vw, 1.6rem); }
.lb-prev { left: clamp(.6rem, 2vw, 1.6rem); top: 50%; transform: translateY(-50%); }
.lb-next { right: clamp(.6rem, 2vw, 1.6rem); top: 50%; transform: translateY(-50%); }
.lb-count {
  position: absolute; left: 50%; transform: translateX(-50%);
  bottom: clamp(1rem, 2.4vw, 1.8rem);
  font-size: .66rem; letter-spacing: .3em;
  color: var(--text-light-mute);
}
body.lb-open { overflow: hidden; }

@media (prefers-reduced-motion: no-preference) {
  .lightbox.open figure { animation: lb-in .5s var(--ease); }
  @keyframes lb-in { from { opacity: 0; transform: scale(.985); } }
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); }
.reveal.in { opacity: 1; transform: none; transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal-img img { filter: brightness(.55); }
.reveal-img.in img { filter: brightness(1); transition: filter 1.3s var(--ease); }
.work-item.in img { transition: filter 1.3s var(--ease), transform 1.1s var(--ease); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-img img { opacity: 1; transform: none; filter: none; }
  .work-item img, .btn, .site-nav a { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .site-nav {
    position: fixed; inset: 0;
    flex-direction: column; align-items: center; justify-content: center; gap: 2.2rem;
    background: rgba(19, 17, 16, .97);
    opacity: 0; visibility: hidden;
    transition: opacity .4s var(--ease), visibility .4s;
  }
  .site-nav.open { opacity: 1; visibility: visible; }
  .site-nav a { font-family: var(--serif); font-size: 1.6rem; letter-spacing: .18em; text-transform: none; }
  .menu-toggle { display: block; position: relative; z-index: 110; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .intro-grid { grid-template-columns: 1fr; }
  .framed { max-width: 560px; }

  .contact-layout { grid-template-columns: 1fr; }
  .inquiry-form { grid-template-columns: 1fr; }

  .spot-inner { grid-template-columns: 1fr; }
  .spot-head, .spot-pair,
  .spot--flip .spot-head, .spot--flip .spot-pair { grid-column: 1 / -1; grid-row: auto; }
  .spot--flip .spot-head { order: -1; }
  .feature-grid { grid-template-columns: 1fr; }
  .framed { max-width: 560px; }

  .work-grid { grid-template-columns: 1fr; gap: 2.6rem; }
  .work-item--res, .work-item--hosp, .work-item--det, .work-item--guest {
    grid-column: 1 / -1; grid-row: auto; margin-top: 0;
  }
  .work-item--hosp img { max-height: 78vh; }
  .footer-inner { flex-direction: column; }
}

@media (max-width: 540px) {
  .spot-pair { grid-template-columns: 1fr; gap: 1.8rem; }
  .feature-list { grid-template-columns: 1fr; }
  .lightbox .lb-prev, .lightbox .lb-next { top: auto; bottom: clamp(1rem, 2.4vw, 1.8rem); transform: none; }
  .lb-count { display: none; }
}
