/* ============================================================
   LLOYD BRUCE HOME · MASTER STYLESHEET
   Consolidated from all page templates.
   ============================================================ */

/* ------- DESIGN TOKENS ------- */
:root {
  --ivory:        #F6F2EA;
  --ivory-deep:   #EFE8DA;
  --stone:        #DDD2BD;
  --oak:          #B89773;
  --walnut:       #6B533D;
  --charcoal:     #1A1814;
  --ink:          #1F1B16;
  --body:         #4A453E;
  --muted:        #6B645B;
  --muted-soft:   #8A8278;
  --gold:         #9B7F4D;
  --gold-soft:    #C2A982;
  --line:         rgba(31, 27, 22, 0.13);
  --line-soft:    rgba(31, 27, 22, 0.07);

  --display: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease:      cubic-bezier(0.65, 0, 0.35, 1);
  --ease-luxe: cubic-bezier(0.86, 0, 0.07, 1);

  --gutter: clamp(20px, 4.5vw, 80px);
  --max:    1320px;
  --section-y: clamp(80px, 10vw, 140px);

  --read:      720px;
  --subnav-h:  64px;
  --filter-h:  64px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html.lightbox-open { overflow: hidden; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; padding: 0; }
::selection { background: var(--charcoal); color: var(--ivory); }

/* ------- PRIMITIVES ------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }

.display {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0;
}
.display em { font-style: italic; font-weight: 500; }

.link-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 14px 0;
  position: relative;
  transition: color 500ms var(--ease);
}
.link-btn::after {
  content: "";
  position: absolute;
  left: 0; bottom: 6px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: left center;
  transition: transform 600ms var(--ease-luxe);
}
.link-btn:hover { color: var(--gold); }
.link-btn .arrow { transition: transform 500ms var(--ease); }
.link-btn:hover .arrow { transform: translateX(8px); }
.link-btn--light { color: rgba(246, 242, 234, 0.96); }
.link-btn--light::after { background: rgba(246, 242, 234, 0.6); }
.link-btn--light:hover { color: var(--gold-soft); }

.outline-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 18px 36px;
  border: 1px solid currentColor;
  transition: color 600ms var(--ease);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.outline-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform 600ms var(--ease-luxe);
  z-index: -1;
}
.outline-btn:hover { color: var(--ivory); }
.outline-btn:hover::before { transform: translateY(0); }
.outline-btn:hover .arrow { transform: translateX(8px); }
.outline-btn .arrow { transition: transform 500ms var(--ease); }
.outline-btn--light { color: var(--ivory); border-color: rgba(246, 242, 234, 0.55); }
.outline-btn--light::before { background: var(--ivory); }
.outline-btn--light:hover { color: var(--charcoal); border-color: var(--ivory); }

.arrow {
  display: inline-block;
  width: 16px;
  height: 8px;
  position: relative;
}
.arrow::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 1px;
  background: currentColor;
}
.arrow::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

/* ------- SITE HEADER ------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 22px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  background: transparent;
  transition: padding 500ms var(--ease), background 500ms var(--ease),
              backdrop-filter 500ms var(--ease), border-color 500ms var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header--solid,
.site-header--always-solid {
  padding: 14px var(--gutter);
  background: rgba(246, 242, 234, 0.94);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom-color: var(--line-soft);
}
.site-header .nav-link,
.site-header .header-cta { color: rgba(246, 242, 234, 0.96); }
.site-header--solid .nav-link,
.site-header--solid .header-cta,
.site-header--always-solid .nav-link,
.site-header--always-solid .header-cta { color: var(--ink); }
.site-header .brand-mark img {
  filter: brightness(0) invert(1);
  transition: filter 500ms var(--ease), height 500ms var(--ease);
}
.site-header--solid .brand-mark img,
.site-header--always-solid .brand-mark img { filter: brightness(0); height: 48px; }

.nav-left  { display: flex; align-items: center; gap: clamp(24px, 3vw, 44px); justify-self: start; }
.nav-right { display: flex; align-items: center; gap: clamp(24px, 3vw, 44px); justify-self: end; }

.nav-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
  transition: color 400ms var(--ease);
  white-space: nowrap;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 500ms var(--ease-luxe);
}
.nav-link:hover::after,
.nav-link.is-active::after,
.current-menu-item > .nav-link::after,
.current_page_item > .nav-link::after {
  transform: scaleX(1);
  transform-origin: left center;
}
.nav-link.is-active,
.current-menu-item > .nav-link,
.current_page_item > .nav-link { color: var(--gold); }
.site-header:not(.site-header--solid):not(.site-header--always-solid) .nav-link.is-active,
.site-header:not(.site-header--solid):not(.site-header--always-solid) .current-menu-item > .nav-link,
.site-header:not(.site-header--solid):not(.site-header--always-solid) .current_page_item > .nav-link { color: var(--gold-soft); }

/* WordPress nav menu reset */
.nav-left ul, .nav-right ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 44px);
}

.brand-mark { display: flex; align-items: center; justify-content: center; justify-self: center; }
.brand-mark img { height: 60px; width: auto; transition: opacity 400ms var(--ease); }
.brand-mark:hover img { opacity: 0.78; }
.brand-mark__text {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.005em;
  color: rgba(246, 242, 234, 0.96);
  transition: color 400ms var(--ease), opacity 400ms var(--ease);
  white-space: nowrap;
}
.site-header--solid .brand-mark__text,
.site-header--always-solid .brand-mark__text { color: var(--ink); }
.brand-mark:hover .brand-mark__text { opacity: 0.78; }

.header-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
  white-space: nowrap;
}
.header-cta::after {
  content: "";
  position: absolute;
  left: 0; bottom: 2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: left center;
  transition: transform 500ms var(--ease-luxe);
}
.header-cta:hover::after { transform: scaleX(0); transform-origin: right center; }

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 220;
  color: rgba(246, 242, 234, 0.96);
}
.site-header--solid .menu-toggle,
.site-header--always-solid .menu-toggle { color: var(--ink); }
.menu-toggle__icon { width: 24px; height: 14px; position: relative; }
.menu-toggle__icon::before, .menu-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: currentColor;
  transition: transform 400ms var(--ease-luxe), top 400ms var(--ease-luxe), bottom 400ms var(--ease-luxe);
}
.menu-toggle__icon::before { top: 0; }
.menu-toggle__icon::after  { bottom: 0; }
.menu-open .menu-toggle { color: var(--ivory); }
.menu-open .menu-toggle__icon::before { top: 6px; transform: rotate(45deg); }
.menu-open .menu-toggle__icon::after  { bottom: 7px; transform: rotate(-45deg); }

/* ------- MOBILE DRAWER ------- */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 210;
  background: var(--charcoal);
  color: var(--ivory);
  padding: 110px var(--gutter) 50px;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform 700ms var(--ease-luxe), visibility 0s linear 700ms;
  overflow-y: auto;
}
.menu-open .mobile-drawer {
  transform: translateY(0);
  visibility: visible;
  transition: transform 700ms var(--ease-luxe), visibility 0s linear 0s;
}
.mobile-drawer__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 24px;
  counter-reset: menu-counter;
  list-style: none;
  padding: 0;
}
.mobile-drawer__nav li { display: block; }
.mobile-drawer__link, .mobile-drawer__nav li > a {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(34px, 9vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--ivory);
  padding: 10px 0;
  transition: color 400ms var(--ease), padding-left 500ms var(--ease-luxe);
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.mobile-drawer__link::before, .mobile-drawer__nav li > a::before {
  content: counter(menu-counter, decimal-leading-zero);
  counter-increment: menu-counter;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--gold-soft);
  align-self: center;
}
.mobile-drawer__link:hover,
.mobile-drawer__link.is-active,
.mobile-drawer__nav li > a:hover,
.mobile-drawer__nav .current-menu-item > a,
.mobile-drawer__nav .current_page_item > a { color: var(--gold-soft); padding-left: 12px; }
.mobile-drawer__link em { font-style: italic; color: var(--gold-soft); }
.mobile-drawer__foot {
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid rgba(246, 242, 234, 0.12);
  display: grid;
  gap: 18px;
  font-family: var(--display);
}
.mobile-drawer__foot a {
  font-size: 17px;
  color: rgba(246, 242, 234, 0.78);
  transition: color 400ms var(--ease);
}
.mobile-drawer__foot a:hover { color: var(--gold-soft); }
.mobile-drawer__address {
  font-style: italic;
  color: rgba(246, 242, 234, 0.6);
  line-height: 1.6;
  font-size: 15px;
}

/* ------- HOMEPAGE HERO ------- */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--ivory);
  text-align: center;
}
.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
  background: var(--charcoal);
}
.hero__media img,
.hero__media video {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(1.05);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  max-width: none;
  object-fit: cover;
  filter: brightness(0.62) saturate(0.92);
  animation: bannerBreath 16s var(--ease-luxe) forwards;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(20, 18, 14, 0.55) 0%,
    rgba(20, 18, 14, 0.30) 40%,
    rgba(20, 18, 14, 0.55) 100%);
}
.hero__inner {
  position: relative;
  max-width: 1100px;
  padding: 160px var(--gutter) 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.4s var(--ease-luxe) forwards;
  animation-delay: 0.3s;
}
.hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(52px, 7.5vw, 124px);
  line-height: 0.98;
  letter-spacing: -0.024em;
  color: var(--ivory);
  margin: 0;
}
.hero__title em { font-style: italic; font-weight: 500; color: var(--gold-soft); }
.hero__lede {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 26px);
  line-height: 1.5;
  color: rgba(246, 242, 234, 0.9);
  max-width: 56ch;
  margin: 0;
}
.hero__cta-row {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  margin-top: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ------- INNER PAGE HERO ------- */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 460px;
  max-height: 640px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--ivory);
  text-align: center;
}
.page-hero--short  { height: 55vh; min-height: 420px; max-height: 580px; }
.page-hero--medium { height: 60vh; min-height: 460px; max-height: 640px; }
.page-hero--tall   { height: 65vh; min-height: 480px; max-height: 680px; }

.page-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
  background: var(--charcoal);
}
.page-hero__media img {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(1.05);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  max-width: none;
  object-fit: cover;
  filter: brightness(0.62) saturate(0.92);
  animation: bannerBreath 16s var(--ease-luxe) forwards;
}
.page-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(20, 18, 14, 0.55) 0%,
    rgba(20, 18, 14, 0.30) 40%,
    rgba(20, 18, 14, 0.55) 100%);
}
.page-hero__inner {
  position: relative;
  max-width: 920px;
  padding: 130px var(--gutter) 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.2s var(--ease-luxe) forwards;
  animation-delay: 0.2s;
}
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(246, 242, 234, 0.7);
}
.page-hero__breadcrumb a { color: rgba(246, 242, 234, 0.7); transition: color 400ms var(--ease); }
.page-hero__breadcrumb a:hover { color: var(--gold-soft); }
.page-hero__breadcrumb span.sep { color: rgba(246, 242, 234, 0.4); font-size: 9px; }
.page-hero__breadcrumb span.current { color: var(--gold-soft); }
.page-hero__brand-mark {
  max-height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: 8px;
}
.page-hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(44px, 6.4vw, 104px);
  line-height: 1.0;
  letter-spacing: -0.022em;
  color: var(--ivory);
  margin: 0;
}
.page-hero__title em { font-style: italic; font-weight: 500; color: var(--gold-soft); }
.page-hero__lede {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.5;
  color: rgba(246, 242, 234, 0.88);
  max-width: 50ch;
  margin: 8px 0 0;
}

@keyframes bannerBreath {
  from { transform: translate(-50%, -50%) scale(1.12); }
  to   { transform: translate(-50%, -50%) scale(1.0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ------- SECTIONS ------- */
section { padding: var(--section-y) var(--gutter); }
.container { max-width: var(--max); margin: 0 auto; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.2s var(--ease-luxe), transform 1.2s var(--ease-luxe);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal--d1 { transition-delay: 0.1s; }
.reveal--d2 { transition-delay: 0.2s; }
.reveal--d3 { transition-delay: 0.3s; }

/* ------- HOMEPAGE SECTIONS ------- */
.intro-section {
  background: var(--ivory);
  text-align: center;
}
.intro-section__inner { max-width: 820px; margin: 0 auto; }
.intro-section__roman {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--gold);
  display: block;
  margin-bottom: 22px;
}
.intro-section__heading {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 32px;
}
.intro-section__heading em { font-style: italic; font-weight: 500; }
.intro-section__body {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(18px, 1.4vw, 23px);
  line-height: 1.55;
  color: var(--body);
  max-width: 56ch;
  margin: 0 auto;
}
.intro-section__body em { font-style: normal; color: var(--gold); }
.intro-section__rule {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: clamp(40px, 5vw, 60px) auto 0;
}

/* ------- FEATURED CATEGORIES (HOMEPAGE) ------- */
.categories-section {
  background: var(--ivory-deep);
  border-top: 1px solid var(--line-soft);
}
.categories-section__head {
  max-width: var(--max);
  margin: 0 auto clamp(50px, 6vw, 80px);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}
.categories-section__head-left { max-width: 520px; }
.categories-section__heading {
  font-size: clamp(34px, 4.4vw, 60px);
  margin: 22px 0 0;
}
.categories-section__caption {
  font-family: var(--display);
  font-style: italic;
  color: var(--muted);
  font-size: clamp(15px, 1.1vw, 18px);
  max-width: 26ch;
  line-height: 1.55;
  margin: 0;
}

/* ------- TILE GRIDS (asymmetric editorial layout) ------- */
.tile-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(16px, 1.8vw, 28px);
}
.tile {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--stone);
  cursor: pointer;
  isolation: isolate;
}
.tile--wide   { grid-column: span 4; aspect-ratio: 16 / 9.7; }
.tile--narrow { grid-column: span 2; aspect-ratio: 4 / 5; }
.tile--half   { grid-column: span 3; aspect-ratio: 4 / 3; }

.tile__media { position: absolute; inset: 0; width: 100%; height: 100%; overflow: hidden; }
.tile__media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.6s var(--ease-luxe), filter 1.0s var(--ease);
  filter: saturate(0.94) brightness(0.94);
}
.tile:hover .tile__media img {
  transform: scale(1.10);
  filter: saturate(1.05) brightness(1);
}
.tile__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 45%, rgba(20,18,14,0.65) 100%);
  transition: opacity 600ms var(--ease);
}
.tile__copy {
  position: absolute;
  left: clamp(20px, 2.4vw, 36px);
  bottom: clamp(20px, 2.4vw, 36px);
  right: clamp(20px, 2.4vw, 36px);
  color: var(--ivory);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tile__num {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.tile__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 2.8vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--ivory);
  margin: 0;
}
.tile__title em { font-style: italic; font-weight: 500; }
.tile__sub {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(14px, 1.05vw, 16px);
  color: rgba(246, 242, 234, 0.78);
  line-height: 1.4;
  margin: 4px 0 12px;
}
.tile__cta {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(246, 242, 234, 0.92);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: color 400ms var(--ease);
}
.tile:hover .tile__cta { color: var(--gold-soft); }
.tile:hover .tile__cta .arrow { transform: translateX(8px); }
.tile__cta .arrow { transition: transform 500ms var(--ease); }

/* ============================================================
   § PROLOGUE — full-width pull quote intro (About page)
   ============================================================ */
.prologue {
  background: var(--ivory);
  text-align: center;
  padding-top: clamp(70px, 9vw, 120px);
  padding-bottom: clamp(70px, 9vw, 120px);
}
.prologue__inner {
  max-width: 920px;
  margin: 0 auto;
}
.prologue__roman {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--gold);
  display: block;
  margin-bottom: 22px;
}
.prologue__quote {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.3;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0;
}
.prologue__quote em { font-style: italic; font-weight: 400; color: var(--gold); }
.prologue__rule {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: clamp(40px, 5vw, 64px) auto 0;
}

/* ============================================================
   § FOUNDER PROFILE — portrait + bio, alternating left/right
   ============================================================ */
.founder { background: var(--ivory); padding: 0; }
.founder__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--section-y) var(--gutter);
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
}
.founder--alt { background: var(--ivory-deep); }
.founder--alt .founder__inner {
  grid-template-columns: 7fr 5fr;
}
.founder--alt .founder__media { order: 2; }
.founder--alt .founder__copy { order: 1; }

.founder__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--stone);
}
.founder__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.02);
  transition: transform 1.6s var(--ease-luxe);
  filter: brightness(0.96) saturate(0.94);
}
.founder__media:hover img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1);
}
.founder__caption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(246, 242, 234, 0.92);
}
.founder__caption span {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 6px;
}

.founder__copy { max-width: 560px; }
.founder__role {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: inline-block;
}
.founder__name {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 6px;
}
.founder__name em { font-style: italic; font-weight: 500; }
.founder__credit {
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 28px;
}
.founder__rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 28px 0;
}
.founder__body p {
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--body);
  margin: 0 0 18px;
}
.founder__body p:last-child { margin-bottom: 0; }
.founder__body em { font-style: italic; color: var(--ink); }
.founder__body p:first-of-type::first-letter {
  font-family: var(--display);
  font-style: italic;
  font-size: 4em;
  float: left;
  line-height: 0.9;
  padding: 6px 12px 0 0;
  color: var(--gold);
  font-weight: 400;
}

/* ============================================================
   § TEAM (About page) — 4-column grid
   ============================================================ */
.team { background: var(--ivory); }
.team__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(50px, 7vw, 80px);
}
.team__head .eyebrow { justify-content: center; }
.team__head .eyebrow::before { display: none; }
.team__heading {
  font-size: clamp(34px, 4.4vw, 64px);
  margin: 22px 0 22px;
}
.team__caption {
  font-family: var(--display);
  font-style: italic;
  color: var(--body);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.55;
  max-width: 38ch;
  margin: 0 auto;
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 44px);
}
.team-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.team-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--stone);
}
.team-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.02);
  transition: transform 1.4s var(--ease-luxe), filter 1.4s var(--ease-luxe);
  filter: brightness(0.96) saturate(0.92);
}
.team-card:hover .team-card__media img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1);
}
.team-card__role {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
}
.team-card__name {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 6px 0 0;
}
.team-card__name em { font-style: italic; font-weight: 500; }

/* ============================================================
   § VALUES — three principles row (About page)
   ============================================================ */
.values { background: var(--ivory-deep); border-top: 1px solid var(--line-soft); }
.values__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(50px, 7vw, 80px);
}
.values__head .eyebrow { justify-content: center; }
.values__head .eyebrow::before { display: none; }
.values__heading {
  font-size: clamp(32px, 4.2vw, 60px);
  margin: 22px 0 0;
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.value {
  padding: clamp(40px, 5vw, 64px) clamp(24px, 3vw, 44px);
  text-align: left;
  position: relative;
}
.value + .value { border-left: 1px solid var(--line-soft); }
.value__num {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 22px;
}
.value__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 18px;
}
.value__title em { font-style: italic; font-weight: 500; color: var(--gold); }
.value__body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--body);
  margin: 0;
}

/* ------- CTA contact (About-style "Or call ...") ------- */
.cta__contact {
  margin-top: 16px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(246, 242, 234, 0.62);
}
.cta__contact a {
  color: rgba(246, 242, 234, 0.95);
  border-bottom: 1px solid rgba(246, 242, 234, 0.35);
  padding-bottom: 2px;
  transition: all 400ms var(--ease);
}
.cta__contact a:hover { color: var(--gold-soft); border-color: var(--gold-soft); }

/* ------- PHILOSOPHY/QUOTE BLOCK ------- */
.philosophy {
  background: var(--charcoal);
  color: var(--ivory);
  text-align: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.philosophy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%,
    rgba(184, 151, 115, 0.10) 0%, transparent 70%);
  z-index: -1;
}
.philosophy__inner { max-width: 820px; margin: 0 auto; }
.philosophy .eyebrow { color: var(--gold-soft); justify-content: center; }
.philosophy .eyebrow::before { display: none; }
.philosophy__heading {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 64px);
  color: var(--ivory);
  line-height: 1.1;
  letter-spacing: -0.012em;
  margin: 26px 0 36px;
}
.philosophy__heading em { font-style: italic; font-weight: 500; color: var(--gold-soft); }
.philosophy__body {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.55;
  color: rgba(246, 242, 234, 0.88);
  margin: 0 0 22px;
}
.philosophy__rule {
  width: 56px;
  height: 1px;
  background: var(--gold-soft);
  margin: clamp(40px, 5vw, 60px) auto 0;
}

/* ------- CTA SECTION ------- */
.cta {
  position: relative;
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.cta--dark { background: var(--charcoal); color: var(--ivory); }
.cta--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%,
    rgba(184, 151, 115, 0.12) 0%, transparent 70%);
  z-index: -1;
}
.cta--light { background: var(--ivory-deep); color: var(--ink); border-top: 1px solid var(--line-soft); }
.cta__inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.cta__heading {
  font-size: clamp(36px, 5.6vw, 84px);
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.cta--dark  .cta__heading { color: var(--ivory); }
.cta--dark  .cta__heading em { color: var(--gold-soft); }
.cta--light .cta__heading { color: var(--ink); }
.cta--light .cta__heading em { color: var(--gold); }
.cta__sub {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(18px, 1.4vw, 23px);
  max-width: 42ch;
  line-height: 1.5;
  margin: 0;
}
.cta--dark  .cta__sub { color: rgba(246, 242, 234, 0.85); }
.cta--light .cta__sub { color: var(--body); }
.cta--dark  .eyebrow { color: var(--gold-soft); justify-content: center; }
.cta--dark  .eyebrow::before { display: none; }
.cta--light .eyebrow { justify-content: center; }
.cta--light .eyebrow::before { display: none; }

/* ------- CONTACT / ENQUIRY FORM ------- */
.enquiry { background: var(--ivory); }
.enquiry__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: start;
}
.enquiry__intro { max-width: 480px; position: sticky; top: 120px; }
.enquiry__roman {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}
.enquiry__heading {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 28px;
}
.enquiry__heading em { font-style: italic; font-weight: 500; }
.enquiry__lede {
  font-size: 17px;
  line-height: 1.75;
  color: var(--body);
  margin: 0 0 24px;
}
.enquiry__lede em { font-style: italic; color: var(--gold); }
.enquiry__rule { width: 48px; height: 1px; background: var(--gold); margin: 32px 0 28px; }
.enquiry__sign {
  font-family: var(--display);
  font-style: italic;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}
.enquiry__sign strong {
  display: block;
  font-style: normal;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.enquiry-form { display: grid; gap: 24px; }
.enquiry-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field { display: flex; flex-direction: column; gap: 6px; position: relative; }
.field__label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}
.field__label .required { color: var(--gold-soft); margin-left: 2px; }
.field input, .field textarea, .field select {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 12px 0 14px;
  width: 100%;
  transition: border-color 400ms var(--ease);
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3e%3cpath d='M1 1l5 5 5-5' stroke='%239B7F4D' stroke-width='1' fill='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
  cursor: pointer;
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.6; padding-top: 14px; }
.field input::placeholder, .field textarea::placeholder {
  color: var(--muted-soft);
  font-style: italic;
  font-family: var(--display);
  font-size: 17px;
  opacity: 1;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.field--full { grid-column: 1 / -1; }

.enquiry-form__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 16px;
  margin-top: 8px;
  border-top: 1px solid var(--line-soft);
}
.enquiry-form__note {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  max-width: 36ch;
  line-height: 1.5;
}
.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--charcoal);
  padding: 18px 36px;
  transition: background 500ms var(--ease);
  cursor: pointer;
  border: none;
}
.submit-btn:hover { background: var(--ink); }
.submit-btn:hover .arrow { transform: translateX(8px); }
.submit-btn .arrow { transition: transform 500ms var(--ease); }

/* ------- VISIT BAND ------- */
.visit { background: var(--ivory-deep); padding-top: clamp(70px, 9vw, 110px); padding-bottom: clamp(70px, 9vw, 110px); }
.visit__head { max-width: 720px; margin: 0 auto clamp(48px, 6vw, 72px); text-align: center; }
.visit__head .eyebrow { justify-content: center; }
.visit__head .eyebrow::before { display: none; }
.visit__heading { font-size: clamp(32px, 4.2vw, 60px); margin: 22px 0 0; }
.visit__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.visit__cell { padding: clamp(36px, 4.5vw, 56px) clamp(20px, 2.4vw, 36px); text-align: left; }
.visit__cell + .visit__cell { border-left: 1px solid var(--line-soft); }
.visit__cell-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}
.visit__cell-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 10px;
}
.visit__cell-value {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
}
.visit__cell-value em { font-style: italic; }
.visit__cell-value a { transition: color 400ms var(--ease); }
.visit__cell-value a:hover { color: var(--gold); }
.visit__cell-aside {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  letter-spacing: 0.01em;
  font-style: normal;
}

/* ------- MAP ------- */
.map { padding: 0; background: var(--ivory-deep); position: relative; }
.map__frame {
  position: relative;
  width: 100%;
  height: clamp(420px, 56vw, 620px);
  overflow: hidden;
  background: var(--stone);
}
.map__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.45) contrast(1.05) brightness(0.96);
}
.map__card {
  position: absolute;
  left: clamp(20px, 4vw, 60px);
  top: 50%;
  transform: translateY(-50%);
  width: min(440px, calc(100% - 80px));
  background: var(--ivory);
  padding: clamp(36px, 4vw, 52px);
  box-shadow: 0 24px 60px -20px rgba(20, 18, 14, 0.30);
  border: 1px solid var(--line-soft);
}
.map__card-roman {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.map__card-heading {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 24px;
}
.map__card-heading em { font-style: italic; font-weight: 500; }
.map__card-rule { width: 40px; height: 1px; background: var(--gold); margin: 0 0 24px; }
.map__card-address {
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.55;
  color: var(--body);
  margin: 0 0 28px;
}
.map__card-meta {
  display: grid;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  margin-bottom: 28px;
}
.map__card-meta-row { display: grid; grid-template-columns: 110px 1fr; gap: 20px; align-items: baseline; }
.map__card-meta-label {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.map__card-meta-value {
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  color: var(--body);
}

/* ------- GALLERY (showroom + categories) ------- */
.gallery {
  background: var(--ivory-deep);
  border-top: 1px solid var(--line-soft);
  padding-top: clamp(70px, 9vw, 120px);
  padding-bottom: clamp(70px, 9vw, 120px);
}
.gallery__head {
  max-width: var(--max);
  margin: 0 auto clamp(50px, 6vw, 80px);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}
.gallery__head-left { max-width: 600px; }
.gallery__heading { font-size: clamp(34px, 4.4vw, 60px); margin: 22px 0 0; }
.gallery__count {
  font-family: var(--display);
  font-style: italic;
  color: var(--muted);
  font-size: clamp(15px, 1.1vw, 18px);
  white-space: nowrap;
}
.gallery__count em {
  font-style: normal;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-right: 14px;
}
.gallery__grid {
  max-width: var(--max);
  margin: 0 auto;
  column-count: 3;
  column-gap: clamp(14px, 1.6vw, 24px);
}
.gallery__item {
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: clamp(14px, 1.6vw, 24px);
  overflow: hidden;
  background: var(--stone);
  cursor: pointer;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}
.gallery__item img {
  width: 100%;
  height: auto;
  transform: scale(1.02);
  transition: transform 1.4s var(--ease-luxe), filter 600ms var(--ease);
  filter: saturate(0.95);
}
.gallery__item:hover img { transform: scale(1.06); filter: saturate(1.05); }
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 18, 14, 0.55) 0%, rgba(20, 18, 14, 0) 50%);
  opacity: 0;
  transition: opacity 500ms var(--ease);
  pointer-events: none;
}
.gallery__item:hover::after { opacity: 1; }
.gallery__caption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: rgba(246, 242, 234, 0.95);
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 500ms var(--ease), transform 600ms var(--ease-luxe);
  pointer-events: none;
}
.gallery__caption span {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 4px;
}
.gallery__item:hover .gallery__caption { opacity: 1; transform: translateY(0); }

/* ------- LIGHTBOX ------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(20, 18, 14, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms var(--ease), visibility 0s linear 500ms;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 500ms var(--ease), visibility 0s linear 0s;
}
.lightbox__close {
  position: fixed;
  top: clamp(20px, 3vw, 40px);
  right: clamp(20px, 3vw, 40px);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(246, 242, 234, 0.85);
  transition: color 400ms var(--ease), transform 400ms var(--ease);
  z-index: 10;
}
.lightbox__close:hover { color: var(--gold-soft); transform: rotate(90deg); }
.lightbox__close::before, .lightbox__close::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 1px;
  background: currentColor;
}
.lightbox__close::before { transform: rotate(45deg); }
.lightbox__close::after  { transform: rotate(-45deg); }
.lightbox__counter {
  position: fixed;
  top: clamp(20px, 3vw, 40px);
  left: clamp(20px, 3vw, 40px);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(246, 242, 234, 0.7);
  z-index: 10;
}
.lightbox__counter em {
  font-style: italic;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0;
  color: var(--gold-soft);
  text-transform: none;
  margin: 0 8px;
}
.lightbox__stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(80px, 10vw, 120px) clamp(60px, 9vw, 110px);
}
.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 24px 80px -20px rgba(0,0,0,0.6);
  opacity: 0;
  transition: opacity 400ms var(--ease);
}
.lightbox__img.is-loaded { opacity: 1; }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(48px, 6vw, 64px);
  height: clamp(48px, 6vw, 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(246, 242, 234, 0.7);
  transition: color 400ms var(--ease), transform 400ms var(--ease);
  z-index: 10;
}
.lightbox__nav:hover { color: var(--gold-soft); }
.lightbox__nav--prev { left: clamp(12px, 2vw, 28px); }
.lightbox__nav--next { right: clamp(12px, 2vw, 28px); }
.lightbox__nav:hover.lightbox__nav--prev { transform: translateY(-50%) translateX(-4px); }
.lightbox__nav:hover.lightbox__nav--next { transform: translateY(-50%) translateX(4px); }
.lightbox__nav-arrow { width: 24px; height: 14px; position: relative; }
.lightbox__nav-arrow::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 1px;
  background: currentColor;
}
.lightbox__nav--prev .lightbox__nav-arrow::after {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 10px; height: 10px;
  border-bottom: 1px solid currentColor;
  border-left: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.lightbox__nav--next .lightbox__nav-arrow::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  width: 10px; height: 10px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.lightbox__caption {
  position: fixed;
  bottom: clamp(20px, 3vw, 40px);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: rgba(246, 242, 234, 0.7);
  letter-spacing: 0.04em;
  z-index: 10;
  text-align: center;
  max-width: 80%;
}

/* ------- CATEGORY SUB-NAV (sticky pill bar) ------- */
.subnav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ivory);
  border-bottom: 1px solid var(--line-soft);
  transition: top 500ms var(--ease);
}
body.header-solid .subnav { top: 76px; }
.subnav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: var(--subnav-h);
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.subnav__inner::-webkit-scrollbar { display: none; }
.subnav__label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
  padding-right: 28px;
  border-right: 1px solid var(--line-soft);
  margin-right: 28px;
}
.subnav__list {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 36px);
  flex-shrink: 0;
}
.subnav__link {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  padding: 8px 0;
  position: relative;
  transition: color 400ms var(--ease);
}
.subnav__link:hover { color: var(--ink); }
.subnav__link.is-active { color: var(--ink); }
.subnav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: var(--gold);
}

/* ------- JOURNAL FEATURED + ARCHIVE ------- */
.featured-post { background: var(--ivory); }
.featured-post__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.featured-post__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--stone);
}
.featured-post__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.6s var(--ease-luxe);
  filter: saturate(0.95);
}
.featured-post__media:hover img { transform: scale(1.06); filter: saturate(1.05); }
.featured-post__tag {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 9px 16px;
  background: var(--ivory);
  color: var(--ink);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}
.featured-post__copy { max-width: 520px; }
.featured-post__roman {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--gold);
  display: block;
  margin-bottom: 22px;
}
.featured-post__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}
.featured-post__meta-sep { width: 18px; height: 1px; background: var(--gold); opacity: 0.5; }
.featured-post__meta-cat { color: var(--gold-soft); }
.featured-post__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 24px;
}
.featured-post__title em { font-style: italic; font-weight: 500; }
.featured-post__title a { transition: color 400ms var(--ease); }
.featured-post__title a:hover { color: var(--gold); }
.featured-post__rule { width: 48px; height: 1px; background: var(--gold); margin: 0 0 24px; }
.featured-post__excerpt {
  font-size: 17px;
  line-height: 1.85;
  color: var(--body);
  margin: 0 0 32px;
}

.archive-list {
  background: var(--ivory-deep);
  border-top: 1px solid var(--line-soft);
}
.archive-list__head {
  max-width: var(--max);
  margin: 0 auto clamp(50px, 6vw, 80px);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}
.archive-list__head-left { max-width: 640px; }
.archive-list__heading { font-size: clamp(34px, 4.4vw, 60px); margin: 22px 0 0; }
.archive-list__caption {
  font-family: var(--display);
  font-style: italic;
  color: var(--muted);
  font-size: clamp(15px, 1.1vw, 18px);
  max-width: 30ch;
  line-height: 1.55;
  margin: 0;
}
.archive-list__items {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.post-row {
  display: grid;
  grid-template-columns: 1fr 4fr 3fr;
  gap: clamp(28px, 4vw, 60px);
  padding: clamp(40px, 5vw, 64px) 0;
  border-top: 1px solid var(--line-soft);
  align-items: center;
  transition: padding-left 600ms var(--ease-luxe);
}
.post-row:last-child { border-bottom: 1px solid var(--line-soft); }
.post-row:hover { padding-left: 12px; }
.post-row__date {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}
.post-row__date strong {
  display: block;
  font-style: normal;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.post-row__num {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 10px;
}
.post-row__copy { max-width: 600px; }
.post-row__cat {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 14px;
}
.post-row__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 16px;
}
.post-row__title em { font-style: italic; font-weight: 500; }
.post-row__title a { transition: color 400ms var(--ease); }
.post-row__title a:hover { color: var(--gold); }
.post-row__excerpt {
  font-size: 16px;
  line-height: 1.75;
  color: var(--body);
  margin: 0 0 22px;
}
.post-row__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--stone);
}
.post-row__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.4s var(--ease-luxe);
  filter: saturate(0.94);
}
.post-row:hover .post-row__media img { transform: scale(1.06); filter: saturate(1.05); }

/* ------- NEWSLETTER ------- */
.newsletter {
  background: var(--charcoal);
  color: var(--ivory);
  text-align: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(184, 151, 115, 0.10) 0%, transparent 70%);
  z-index: -1;
}
.newsletter__inner { max-width: 760px; margin: 0 auto; }
.newsletter .eyebrow { color: var(--gold-soft); justify-content: center; }
.newsletter .eyebrow::before { display: none; }
.newsletter__heading {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 64px);
  color: var(--ivory);
  line-height: 1.1;
  letter-spacing: -0.012em;
  margin: 26px 0 24px;
}
.newsletter__heading em { font-style: italic; font-weight: 500; color: var(--gold-soft); }
.newsletter__sub {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.55;
  color: rgba(246, 242, 234, 0.82);
  margin: 0 0 40px;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}
.newsletter__form {
  display: flex;
  gap: 0;
  max-width: 520px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(246, 242, 234, 0.30);
  transition: border-color 400ms var(--ease);
}
.newsletter__form:focus-within { border-bottom-color: var(--gold-soft); }
.newsletter__form input {
  flex: 1;
  background: transparent;
  border: none;
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--ivory);
  padding: 14px 0;
  outline: none;
}
.newsletter__form input::placeholder { color: rgba(246, 242, 234, 0.45); }
.newsletter__form button {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(246, 242, 234, 0.92);
  padding: 14px 0 14px 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: color 400ms var(--ease);
  cursor: pointer;
  background: none;
  border: none;
}
.newsletter__form button:hover { color: var(--gold-soft); }
.newsletter__form button:hover .arrow { transform: translateX(8px); }
.newsletter__form button .arrow { transition: transform 500ms var(--ease); }
.newsletter__note {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(246, 242, 234, 0.4);
  margin: 28px 0 0;
}

/* ------- SINGLE ARTICLE ------- */
.article-head {
  padding: clamp(120px, 16vw, 200px) var(--gutter) clamp(40px, 5vw, 70px);
  text-align: center;
  background: var(--ivory);
}
.article-head__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.article-head__breadcrumb a { transition: color 400ms var(--ease); }
.article-head__breadcrumb a:hover { color: var(--gold); }
.article-head__breadcrumb span.sep { color: var(--muted-soft); font-size: 9px; }
.article-head__breadcrumb span.current { color: var(--gold); }
.article-head__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}
.article-head__meta-sep { width: 18px; height: 1px; background: var(--gold); opacity: 0.5; }
.article-head__meta-cat { color: var(--gold-soft); }
.article-head__meta-date { color: var(--muted); }
.article-head__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(38px, 5.5vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 18ch;
  margin: 0 auto 32px;
}
.article-head__title em { font-style: italic; font-weight: 500; }
.article-head__lede {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.5;
  color: var(--body);
  max-width: 36ch;
  margin: 0 auto;
}
.article-head__rule { width: 56px; height: 1px; background: var(--gold); margin: 40px auto 0; }

.article-image { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.article-image__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--stone);
}
.article-image__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.0);
  transition: transform 1.6s var(--ease-luxe);
}
.article-image__frame:hover img { transform: scale(1.04); }
.article-image__caption {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  margin: 16px 0 0;
  max-width: var(--read);
}
.article-image__caption span {
  color: var(--gold);
  font-style: normal;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-right: 10px;
}

.article-body {
  max-width: var(--read);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) var(--gutter);
}
.article-body p,
.article-body ul,
.article-body ol {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.7;
  color: var(--body);
  margin: 0 0 22px;
  letter-spacing: 0.005em;
}
.article-body p em, .article-body li em { font-style: italic; color: var(--ink); }
.article-body p strong, .article-body li strong { color: var(--ink); font-weight: 500; }
.article-body a {
  color: var(--gold);
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
  transition: color 400ms var(--ease), border-color 400ms var(--ease);
}
.article-body a:hover { color: var(--ink); border-bottom-color: var(--gold); }
.article-body > p:first-of-type::first-letter {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 4.4em;
  float: left;
  line-height: 0.88;
  padding: 8px 14px 0 0;
  color: var(--gold);
}
.article-body h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: clamp(40px, 5vw, 60px) 0 18px;
}
.article-body h2 em { font-style: italic; font-weight: 500; }
.article-body h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.2;
  color: var(--ink);
  margin: clamp(32px, 4vw, 48px) 0 14px;
}
.article-body img { width: 100%; height: auto; margin: clamp(32px, 4vw, 48px) 0; }
.article-body blockquote {
  margin: clamp(48px, 6vw, 72px) 0;
  padding: 0;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.article-body blockquote::before, .article-body blockquote::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 32px;
}
.article-body blockquote::after { margin: 32px auto 0; }
.article-body blockquote p { font-family: inherit; font-size: inherit; line-height: inherit; color: inherit; margin: 0 0 24px; }
.article-body blockquote em { font-weight: 400; color: var(--gold); }
.article-body blockquote cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}
.article-body ul, .article-body ol { padding-left: 28px; }
.article-body li { margin-bottom: 10px; }

.article-foot {
  max-width: var(--read);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(60px, 7vw, 90px);
}
.article-foot__rule { width: 100%; height: 1px; background: var(--line-soft); margin: 0 0 36px; }
.article-foot__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.article-foot__byline { display: flex; align-items: center; gap: 16px; }
.article-foot__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--stone);
  overflow: hidden;
  flex-shrink: 0;
}
.article-foot__avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.article-foot__byline-meta {
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.4;
}
.article-foot__byline-meta strong {
  display: block;
  font-style: normal;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.article-foot__share { display: flex; align-items: center; gap: 14px; }
.article-foot__share-label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 6px;
}
.article-foot__share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color 400ms var(--ease), border-color 400ms var(--ease);
}
.article-foot__share-btn:hover { color: var(--gold); border-color: var(--gold); }
.article-foot__share-btn svg { width: 14px; height: 14px; fill: currentColor; }

/* ------- RELATED POSTS ------- */
.related {
  background: var(--ivory-deep);
  border-top: 1px solid var(--line-soft);
}
.related__head { max-width: var(--max); margin: 0 auto clamp(50px, 6vw, 80px); text-align: center; }
.related__head .eyebrow { justify-content: center; }
.related__head .eyebrow::before { display: none; }
.related__heading { font-size: clamp(34px, 4.4vw, 60px); margin: 22px 0 0; }
.related__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 50px);
}
.related-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform 600ms var(--ease-luxe);
}
.related-card:hover { transform: translateY(-4px); }
.related-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--stone);
}
.related-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.4s var(--ease-luxe);
  filter: saturate(0.95);
}
.related-card:hover .related-card__media img { transform: scale(1.06); filter: saturate(1.05); }
.related-card__date {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}
.related-card__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 8px 0 0;
  transition: color 400ms var(--ease);
}
.related-card__title em { font-style: italic; font-weight: 500; }
.related-card:hover .related-card__title { color: var(--gold); }

/* ------- COLLECTION HOUSE TILES ------- */
.house-tile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: clamp(440px, 50vw, 620px);
}
.house-tile:nth-child(odd)  { background: var(--ivory); }
.house-tile:nth-child(even) { background: var(--ivory-deep); }
.house-tile--alt .house-tile__media { order: 2; }
.house-tile--alt .house-tile__copy  { order: 1; }
.house-tile__media {
  position: relative;
  overflow: hidden;
  background: var(--stone);
  min-height: clamp(360px, 50vw, 620px);
}
.house-tile__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 1.6s var(--ease-luxe), filter 1.0s var(--ease);
  filter: saturate(0.94);
}
.house-tile:hover .house-tile__media img { transform: scale(1.08); filter: saturate(1.05); }
.house-tile__copy {
  padding: clamp(50px, 7vw, 90px) clamp(36px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.house-tile__num {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.house-tile__num::after { content: ""; width: 36px; height: 1px; background: var(--gold); }
.house-tile__logo {
  max-height: 46px;
  max-width: 200px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 28px;
  filter: grayscale(0.2) opacity(0.92);
}
.house-tile__name-text {
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(28px, 3vw, 38px);
  color: var(--ink);
  margin: 0 0 28px;
  line-height: 1;
  letter-spacing: -0.012em;
}
.house-tile__city {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 16px;
}
.house-tile__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 24px;
  max-width: 14ch;
}
.house-tile__title em { font-style: italic; font-weight: 500; }
.house-tile__rule { width: 48px; height: 1px; background: var(--gold); margin: 0 0 24px; }
.house-tile__body {
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--body);
  margin: 0 0 32px;
  max-width: 50ch;
}
.house-tile__body em { font-style: italic; color: var(--ink); }
.house-tile__meta {
  display: flex;
  gap: clamp(20px, 3vw, 36px);
  margin-bottom: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  flex-wrap: wrap;
}
.house-tile__meta-item { display: flex; flex-direction: column; gap: 4px; }
.house-tile__meta-label {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
}
.house-tile__meta-value {
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  color: var(--body);
}

/* ------- COLLECTION SUB-FILTER + HIERARCHY ------- */
.filter {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ivory);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  transition: top 500ms var(--ease);
}
body.header-solid .filter { top: 76px; }
.filter__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: var(--filter-h);
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.filter__inner::-webkit-scrollbar { display: none; }
.filter__label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
  padding-right: 28px;
  border-right: 1px solid var(--line-soft);
  margin-right: 28px;
}
.filter__list { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 36px); flex-shrink: 0; }
.filter__btn {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  padding: 8px 0;
  position: relative;
  transition: color 400ms var(--ease);
  cursor: pointer;
}
.filter__btn:hover { color: var(--ink); }
.filter__btn.is-active { color: var(--ink); }
.filter__btn.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: var(--gold);
}

.sub-collection {
  max-width: var(--max);
  margin: 0 auto;
  padding-bottom: clamp(60px, 8vw, 100px);
}
.sub-collection.is-hidden { display: none; }
.sub-collection:last-child { padding-bottom: 0; }
.sub-collection__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: clamp(32px, 4vw, 56px);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-soft);
}
.sub-collection__head-left {
  display: flex;
  align-items: baseline;
  gap: clamp(20px, 2.5vw, 36px);
  flex-wrap: wrap;
}
.sub-collection__num {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--gold);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.sub-collection__name {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0;
}
.sub-collection__name em { font-style: italic; font-weight: 500; }
.sub-collection__rooms {
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  color: var(--muted);
  letter-spacing: 0.03em;
}
.sub-collection__rooms span {
  font-family: var(--sans);
  font-style: normal;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-right: 12px;
}
.rooms { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 1.8vw, 28px); }
.room {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--stone);
  cursor: pointer;
  isolation: isolate;
}
.room--feature  { grid-row: span 2; aspect-ratio: 4 / 5; }
.room--standard { aspect-ratio: 4 / 3; }
.room__media { position: absolute; inset: 0; width: 100%; height: 100%; overflow: hidden; }
.room__media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.6s var(--ease-luxe), filter 1.0s var(--ease);
  filter: saturate(0.94);
}
.room:hover .room__media img { transform: scale(1.10); filter: saturate(1.05); }
.room__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 55%, rgba(20,18,14,0.65) 100%);
}
.room__copy {
  position: absolute;
  left: clamp(16px, 2vw, 28px);
  bottom: clamp(16px, 2vw, 28px);
  right: clamp(16px, 2vw, 28px);
  color: var(--ivory);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.room__num {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.room__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--ivory);
  margin: 0;
}
.room__title em { font-style: italic; font-weight: 500; }

/* ------- FOOTER ------- */
.site-footer {
  background: #14120F;
  color: rgba(246, 242, 234, 0.82);
  padding: clamp(70px, 10vw, 120px) var(--gutter) 36px;
}
.site-footer__top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  padding-bottom: clamp(56px, 7vw, 90px);
  border-bottom: 1px solid rgba(246, 242, 234, 0.10);
  align-items: start;
}
.site-footer__brand img {
  height: 56px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  margin-bottom: 26px;
}
.site-footer__brand .brand-mark__text {
  display: inline-block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.005em;
  color: rgba(246, 242, 234, 0.95);
  margin-bottom: 26px;
}
.site-footer__tag {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(246, 242, 234, 0.7);
  max-width: 32ch;
  margin: 0 0 30px;
}
.site-footer__social { display: flex; gap: 14px; margin-top: 8px; }
.site-footer__social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(246, 242, 234, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(246, 242, 234, 0.7);
  transition: color 400ms var(--ease), border-color 400ms var(--ease), background 400ms var(--ease);
}
.site-footer__social a:hover {
  color: var(--charcoal);
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}
.site-footer__social svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }
.site-footer__col h4 {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 24px;
}
.site-footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.site-footer__col a, .site-footer__col p {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  color: rgba(246, 242, 234, 0.85);
  transition: color 400ms var(--ease);
  margin: 0;
  line-height: 1.55;
}
.site-footer__col--contact a[href^="mailto"] {
  font-size: 16px;
  letter-spacing: -0.005em;
  word-break: break-word;
}
.site-footer__col a:hover { color: var(--gold-soft); }
.site-footer__bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(246, 242, 234, 0.45);
}
.site-footer__bottom a:hover { color: var(--gold-soft); }
.site-footer__legal { display: flex; gap: 28px; flex-wrap: wrap; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .site-header {  padding-top: 18px; padding-bottom: 18px;  justify-content: space-between;
        display: flex;}
  .nav-left, .nav-right .header-cta, .nav-right nav, .nav-right > ul { display: none; }
  .nav-right { gap: 0; }
  .menu-toggle { display: flex; }
  .brand-mark img { height: 52px; }
  .site-header--solid .brand-mark img,
  .site-header--always-solid .brand-mark img { height: 44px; }

  .tile-grid { grid-template-columns: repeat(2, 1fr); }
  .tile--wide   { grid-column: span 2; aspect-ratio: 16/10; }
  .tile--narrow { grid-column: span 1; aspect-ratio: 4/5; }
  .tile--half   { grid-column: span 1; aspect-ratio: 4/5; }

  .founder__inner { grid-template-columns: 1fr; gap: 40px; }
  .founder--alt .founder__inner { grid-template-columns: 1fr; }
  .founder--alt .founder__media { order: 1; }
  .founder--alt .founder__copy  { order: 2; }
  .founder__media { aspect-ratio: 16/11; max-width: 600px; }

  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .values__grid { grid-template-columns: 1fr; }
  .value + .value { border-left: none; border-top: 1px solid var(--line-soft); }

  .enquiry__inner { grid-template-columns: 1fr; gap: 60px; }
  .enquiry__intro { position: static; max-width: 600px; }

  .visit__grid { grid-template-columns: repeat(2, 1fr); }
  .visit__cell:nth-child(3) { border-left: none; border-top: 1px solid var(--line-soft); }
  .visit__cell:nth-child(4) { border-top: 1px solid var(--line-soft); }

  .map__card {
    position: relative;
    left: auto; top: auto; transform: none;
    margin: -80px auto 0;
    width: calc(100% - 40px);
  }
  .map { padding-bottom: 60px; }

  .featured-post__inner { grid-template-columns: 1fr; gap: 40px; }
  .featured-post__media { aspect-ratio: 16/11; max-width: 600px; }

  .post-row { grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
  .post-row__date {
    grid-column: 1 / -1;
    order: -1;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 8px;
  }
  .post-row__date strong { margin-bottom: 0; }
  .post-row__copy { max-width: none; }

  .related__grid { grid-template-columns: repeat(2, 1fr); }

  .house-tile { grid-template-columns: 1fr; min-height: 0; }
  .house-tile--alt .house-tile__media { order: 1; }
  .house-tile--alt .house-tile__copy  { order: 2; }
  .house-tile__media { aspect-ratio: 16 / 10; min-height: 0; }

  .rooms { grid-template-columns: repeat(2, 1fr); }
  .room--feature { grid-row: auto; aspect-ratio: 4/5; }

  .gallery__grid { column-count: 2; }

  .site-footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  :root {
    --section-y: clamp(60px, 14vw, 100px);
    --subnav-h: 56px;
    --filter-h: 56px;
  }
  .brand-mark img { height: 46px; }
  .site-header--solid .brand-mark img,
  .site-header--always-solid .brand-mark img { height: 40px; }
  .page-hero { height: 50vh; min-height: 380px; }
  .page-hero__inner { padding-top: 110px; padding-bottom: 50px; }

  .subnav__label, .filter__label { display: none; }

  .tile-grid { grid-template-columns: 1fr; }
  .tile--wide, .tile--narrow, .tile--half { grid-column: span 1; aspect-ratio: 4/5; }

  .team__grid { grid-template-columns: 1fr; gap: 36px; }
  .team-card { max-width: 360px; margin: 0 auto; }
  .founder__body p:first-of-type::first-letter { font-size: 3.4em; }

  .enquiry-form__row { grid-template-columns: 1fr; gap: 20px; }
  .enquiry-form__foot { flex-direction: column; align-items: flex-start; }
  .submit-btn { width: 100%; justify-content: center; padding: 20px 32px; }

  .visit__grid { grid-template-columns: 1fr; }
  .visit__cell + .visit__cell { border-left: none; border-top: 1px solid var(--line-soft); }
  .map__card-meta-row { grid-template-columns: 1fr; gap: 4px; }

  .post-row { grid-template-columns: 1fr; gap: 24px; padding: 36px 0; }
  .post-row:hover { padding-left: 0; }
  .post-row__media { order: -1; aspect-ratio: 16/10; }

  .archive-list__head, .gallery__head, .categories-section__head { flex-direction: column; align-items: flex-start; }

  .newsletter__form { flex-direction: column; gap: 12px; border-bottom: none; }
  .newsletter__form input { text-align: center; border-bottom: 1px solid rgba(246, 242, 234, 0.30); }
  .newsletter__form button { padding: 18px 32px; justify-content: center; border: 1px solid rgba(246, 242, 234, 0.55); }

  .related__grid { grid-template-columns: 1fr; gap: 36px; }
  .article-foot__row { flex-direction: column; align-items: flex-start; }
  .article-body p, .article-body ul, .article-body ol { font-size: 18px; line-height: 1.65; }
  .article-body > p:first-of-type::first-letter { font-size: 3.4em; }

  .rooms { grid-template-columns: 1fr; }
  .gallery__grid { column-count: 1; }

  .site-footer__top { grid-template-columns: 1fr; gap: 40px; }
  .site-footer__bottom { justify-content: flex-start; }
}

/* ============================================================
   § PORTFOLIO COLLECTION GRID
   Used on legacy portfolio-item collection pages (Giorgio etc.).
   Renders child portfolio-items as 3-column cards with caption band.
   ============================================================ */
.coll-intro {
  background: var(--ivory);
  padding: clamp(50px, 7vw, 90px) var(--gutter) clamp(30px, 4vw, 50px);
  text-align: center;
}
.coll-intro__text {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
  color: var(--body);
  max-width: 760px;
  margin: 0 auto;
}
.coll-intro__text em {
  font-style: normal;
  color: var(--gold);
}

.coll-grid-section {
  background: var(--ivory);
  padding: 0 0 clamp(40px, 6vw, 70px);
}
.coll-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.coll-card {
  display: block;
  background: var(--ivory);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  color: inherit;
  text-decoration: none;
}
.coll-card.is-hidden { display: none; }

.coll-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--stone);
}
.coll-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.4s var(--ease-luxe), filter 1.0s var(--ease);
  filter: saturate(0.94);
}
.coll-card:hover .coll-card__media img {
  transform: scale(1.06);
  filter: saturate(1.05);
}
.coll-card__copy {
  padding: clamp(28px, 3.5vw, 48px) clamp(20px, 2vw, 32px);
  background: var(--ivory-deep);
  text-align: center;
}
.coll-card__title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 8px;
  transition: color 400ms var(--ease);
}
.coll-card:hover .coll-card__title { color: var(--gold); }
.coll-card__sub {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .coll-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .coll-grid { grid-template-columns: 1fr; padding: 0; }
  .coll-card__copy { padding: 24px 20px; }
}

/* ============================================================
   WORDPRESS-SPECIFIC ADJUSTMENTS
   ============================================================ */
.alignleft  { float: left;  margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { display: block; margin: 1em auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
}
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.skip-link {
  background: var(--charcoal);
  color: var(--ivory);
  display: block;
  font-size: 14px;
  font-weight: 500;
  left: -9999rem;
  outline: none;
  padding: 15px 23px;
  text-decoration: none;
  text-transform: uppercase;
  top: -9999rem;
  z-index: 100000;
}
.skip-link:focus { left: 6px; top: 7px; }

/* Pagination */
.pagination {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(40px, 5vw, 60px) var(--gutter);
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ink);
  transition: all 400ms var(--ease);
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: var(--charcoal);
  color: var(--ivory);
  border-color: var(--charcoal);
}

/* Comments (default) */
.comments-area {
  max-width: var(--read);
  margin: 0 auto;
  padding: clamp(60px, 7vw, 90px) var(--gutter);
}
.comments-area h2.comments-title,
.comments-area h3.comment-reply-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  margin: 0 0 32px;
}

/* Search */
.search-form {
  display: flex;
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
}
.search-form .search-field {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  padding: 8px 0;
  outline: none;
}
.search-form .search-submit {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px 0 8px 16px;
  color: var(--ink);
}

/* Page content fallback for raw page.php */
.page-content {
  max-width: var(--read);
  margin: 0 auto;
  padding: clamp(120px, 14vw, 180px) var(--gutter) clamp(60px, 7vw, 90px);
}
.page-content h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  margin: 0 0 32px;
}
.page-content p, .page-content ul, .page-content ol {
  font-family: var(--display);
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.7;
  color: var(--body);
  margin: 0 0 22px;
}

/* No-results / 404 */
.no-results {
  max-width: var(--read);
  margin: 0 auto;
  padding: clamp(120px, 14vw, 180px) var(--gutter);
  text-align: center;
}
.no-results h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1;
  margin: 0 0 24px;
}
.no-results p {
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  color: var(--muted);
  margin: 0 0 32px;
}
