@import url("./colors_and_type.css");

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { margin: 0; padding: 0; background: var(--bg-page); color: var(--fg-1); font-family: var(--font-serif); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
em { font-style: italic; }
button { background: none; border: 0; cursor: pointer; font: inherit; color: inherit; }

:root {
  --pad-x: 112px;
}
@media (max-width: 1200px) {
  :root { --pad-x: 80px; }
}
@media (max-width: 900px) {
  :root { --pad-x: 24px; }
}

/* ============== Scroll animations ============== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bh-welcome,
.bh-pillars,
.bh-spaces,
.bh-map,
.bh-press,
.bh-sust,
.bh-edm,
.bh-pillar-section {
  animation: fadeInUp 900ms var(--ease-out) both;
  animation-timeline: view();
  animation-range: entry 0% cover 35%;
}

/* ============== Keyboard focus — site-wide ============== */
/* Uses :where() so specificity stays at 0 and never fights component rules.
   :focus-visible only fires for keyboard focus, not mouse clicks. */
:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--bh-clay-deep);
  outline-offset: 3px;
  border-radius: 2px;
}
/* Light variant — for focus on dark sections (clay, olive, sand backgrounds) */
:where(.bh-pillar-section--clay, .bh-pillar-section--olive, .bh-pillar-section--sand,
       .bh-pillar-hero, .bh-pillar-cinematic, .bh-stats, .bh-modal, .bh-welcome)
  :where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline-color: var(--bh-paper);
}

/* ============== CTA pills ============== */
.bh-cta-pill {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-wider); font-size: 12px;
  padding: 16px 32px; border-radius: 999px; background: var(--bh-clay-deep); color: var(--bh-beige);
  transition: background 200ms var(--ease-out), transform 200ms var(--ease-out); cursor: pointer; border: 0;
  white-space: nowrap; min-height: 48px;
}
.bh-cta-pill:hover { background: #5d4a3d; transform: translateY(-2px); }
.bh-cta-pill:active { transform: translateY(0); }
.bh-cta-pill:disabled { opacity: 0.4; cursor: not-allowed; }
.bh-cta-pill--inverse { background: var(--bh-beige); color: var(--bh-clay-deep); }
.bh-cta-pill--inverse:hover { background: var(--bh-paper); }
.bh-cta-pill--ghost-light { background: transparent; color: var(--bh-paper); border: 1px solid rgba(247,245,238,0.55); }
.bh-cta-pill--ghost-light:hover { background: rgba(247,245,238,0.10); border-color: var(--bh-paper); }
.bh-cta-pill--ghost-dark { background: transparent; color: var(--bh-clay-deep); border: 1px solid var(--line-2); }
.bh-cta-pill--ghost-dark:hover { background: var(--bh-paper); border-color: var(--bh-clay-deep); }

.bh-cta-text {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-wider); font-size: 12px;
  color: var(--bh-clay-deep); padding: 8px 0; border-bottom: 1px solid var(--bh-clay-deep);
  transition: color 180ms var(--ease-out), border-color 180ms var(--ease-out);
}
.bh-cta-text:hover { color: var(--bh-clay); border-color: var(--bh-clay); }
.bh-cta-text--light { color: var(--bh-beige); border-bottom-color: rgba(235,233,223,0.6); }
.bh-cta-text--light:hover { color: var(--bh-paper); border-color: var(--bh-paper); }

.bh-eyebrow-line {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-widest);
  font-size: 11px; color: var(--fg-3); margin: 0;
  display: inline-flex; align-items: center; gap: 14px;
}
.bh-eyebrow-line::before {
  content: ""; display: inline-block; width: 28px; height: 1px; background: currentColor; opacity: 0.6;
}
.bh-welcome .bh-eyebrow-line { color: var(--bh-paper); }

/* ============== Header ============== */
.bh-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); align-items: center; gap: 32px;
  padding: 22px var(--pad-x);
  box-sizing: border-box;
  transition: background var(--dur-base) var(--ease-out), padding var(--dur-base) var(--ease-out);
}
.bh-header__logo { justify-self: start; display: inline-flex; min-width: 0; max-width: 100%; }
.bh-header__logo img { height: 48px; width: auto; max-width: 100%; transition: opacity var(--dur-base); }
.bh-header__logo-pos { display: none; }
.bh-header__nav { display: flex; gap: 32px; justify-self: center; align-items: center; flex-wrap: nowrap; min-width: 0; }
.bh-header__nav a {
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: var(--tracking-wider); font-size: 11px; color: var(--bh-beige);
  transition: opacity var(--dur-base);
}
.bh-header__nav a:hover { opacity: 0.7; }
.bh-header__right { justify-self: end; display: inline-flex; align-items: center; gap: 18px; }
.bh-header .bh-cta-pill { background: var(--bh-beige); color: var(--bh-clay-deep); }
.bh-header .bh-cta-pill:hover { background: var(--bh-paper); }

.bh-header.is-scrolled { background: var(--bh-beige); padding: 12px var(--pad-x); box-shadow: 0 1px 0 var(--line-1); }
.bh-header.is-scrolled .bh-header__logo img { height: 38px; }
.bh-header.is-scrolled .bh-header__logo-neg { display: none; }
.bh-header.is-scrolled .bh-header__logo-pos { display: block; }
.bh-header.is-scrolled .bh-header__nav a { color: var(--bh-clay-deep); }
.bh-header.is-scrolled .bh-cta-pill { background: #ffffff; color: #7f7a66; }
.bh-header.is-scrolled .bh-cta-pill:hover { background: #5d4a3d; }

.bh-burger { display: none; }

/* Header — intermediate widths: shrink nav gap before collapsing to burger */
@media (max-width: 1280px) {
  .bh-header { gap: 20px; }
  .bh-header__nav { gap: 22px; }
  .bh-header__nav a { letter-spacing: 0.08em; }
}
@media (max-width: 1180px) {
  .bh-header__nav { gap: 18px; }
  .bh-header__nav a { font-size: 10px; letter-spacing: 0.06em; }
}


/* ============== Hero ============== */
.bh-hero { position: relative; height: 100vh; min-height: 720px; overflow: hidden; color: var(--bh-paper); }
.bh-hero__media { position: absolute; inset: 0; }
.bh-hero__photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  background-size: cover; background-position: center;
}
.bh-hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,29,26,0.55) 0%, rgba(31,29,26,0.05) 28%, rgba(31,29,26,0.05) 60%, rgba(31,29,26,0.78) 100%);
  z-index: 3;
}
.bh-hero__icon-stamp {
  position: absolute; top: 124px; right: var(--pad-x); z-index: 4;
  width: 60px; height: 60px; opacity: 0.85;
}
.bh-hero__copy {
  position: relative; z-index: 4; max-width: 1280px; margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: 18vh;
}
.bh-hero__eyebrow {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-widest);
  font-size: 12px; color: var(--bh-beige); margin: 0 0 32px;
  display: inline-flex; align-items: center; gap: 14px;
}
.bh-hero__eyebrow::before { content: ""; width: 36px; height: 1px; background: var(--bh-beige); opacity: 0.7; }
.bh-hero__title {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(44px, 6vw, 96px); line-height: 1.1;
  color: var(--bh-paper); margin: 0; letter-spacing: -0.015em; max-width: 14ch;
  padding-bottom: 0.08em;
}
.bh-hero__title em { font-style: italic; }
.bh-hero__line { display: block; }
.bh-hero__sub {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px); line-height: 1.5;
  color: var(--bh-beige); margin: 28px 0 0; max-width: 56ch;
}
.bh-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 20px; }
.bh-hero__chrome {
  position: absolute; left: 0; right: 0; bottom: 28px; z-index: 4;
  padding: 0 var(--pad-x);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-widest); font-size: 10px; color: var(--bh-beige);
}
.bh-hero__loc-group { display: inline-flex; align-items: center; gap: 12px; }
.bh-hero__loc-dot { width: 6px; height: 6px; border-radius: 999px; background: var(--bh-beige); display: inline-block; }
.bh-hero__scroll {
  display: inline-flex; align-items: center; gap: 10px; opacity: 0.85;
}
.bh-hero__scroll-track {
  width: 1px; height: 36px; background: var(--bh-beige); opacity: 0.5; position: relative; overflow: hidden;
}
.bh-hero__scroll-track::after {
  content: ""; position: absolute; left: 0; right: 0; top: -40%; height: 40%; background: var(--bh-beige);
  animation: scroll-tick 2.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}
@keyframes scroll-tick { 0% { top: -40%; opacity: 1; } 65% { opacity: 1; } 100% { top: 100%; opacity: 0; } }

/* ============== Stat strip ============== */
.bh-stats {
  background: var(--bh-clay-deep); color: var(--bh-paper);
  padding: 88px var(--pad-x);
}
.bh-stats__inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.bh-stats--five .bh-stats__inner { grid-template-columns: repeat(5, 1fr); gap: 24px; }
/* Multi-word italic numbers (e.g. "One place", "Exclusive") must not wrap.
   Allow a slightly smaller font in the 5-up grid to fit alongside numeric peers. */
.bh-stats--five .bh-stat__num { white-space: nowrap; font-size: clamp(28px, 2.4vw, 38px); }
.bh-stats--five .bh-stat__num em { font-style: italic; }
@media (max-width: 1100px) {
  .bh-stats--five .bh-stats__inner { grid-template-columns: repeat(4, 1fr); gap: 32px 16px; }
}
@media (max-width: 720px) {
  .bh-stats { padding: 56px var(--pad-x); }
  .bh-stats__inner { gap: 28px 20px; }
  .bh-stats--five .bh-stats__inner { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .bh-stats--five .bh-stat__num { font-size: clamp(26px, 7vw, 34px); }
  .bh-stat { padding-right: 0; border-right: 0; padding-bottom: 24px; border-bottom: 1px solid var(--line-on-dark); }
  .bh-stat:nth-last-child(-n+2) { border-bottom: 0; padding-bottom: 0; }
  .bh-stats--five .bh-stat:nth-last-child(2) { border-bottom: 1px solid var(--line-on-dark); padding-bottom: 24px; }
  .bh-stats--five .bh-stat:last-child { border-bottom: 0; padding-bottom: 0; grid-column: span 2; text-align: left; }
}
@media (max-width: 420px) {
  .bh-stats--five .bh-stats__inner { grid-template-columns: 1fr; gap: 24px; }
  .bh-stats--five .bh-stat:nth-last-child(2),
  .bh-stats--five .bh-stat:last-child { border-bottom: 1px solid var(--line-on-dark); padding-bottom: 24px; grid-column: auto; }
  .bh-stats--five .bh-stat:last-child { border-bottom: 0; padding-bottom: 0; }
}
.bh-stat { display: flex; flex-direction: column; gap: 10px; padding-right: 24px; border-right: 1px solid var(--line-on-dark); }
.bh-stat:last-child { border-right: 0; }
.bh-stat__num {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(34px, 3.4vw, 50px); line-height: 1; letter-spacing: -0.01em;
  color: var(--bh-paper); margin: 0;
}
.bh-stat__num sup { font-size: 0.42em; vertical-align: super; font-style: normal; padding-left: 2px; letter-spacing: 0; }
.bh-stat__label {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-widest);
  font-size: 11px; color: var(--bh-beige); opacity: 0.78; margin: 0;
}
.bh-stat__caption {
  font-family: var(--font-serif); font-style: italic; font-size: 14px; line-height: 1.5;
  color: var(--bh-beige); opacity: 0.85; margin: 0;
}

/* ============== Welcome ============== */
.bh-welcome {
  position: relative;
  overflow: hidden;
  height: 100vh;
  min-height: 720px;
  padding: 0;
  background: #3d6b5b;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.bh-welcome__bg { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; overflow: hidden; }
.bh-welcome__video {
  position: absolute; left: 0; right: 0; top: -8%; width: 100%; height: 116%;
  object-fit: cover; object-position: center;
  display: block; pointer-events: none;
}
.bh-welcome__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(31,29,26,0.78) 0%, rgba(31,29,26,0.55) 45%, rgba(31,29,26,0.32) 100%),
    linear-gradient(180deg, rgba(73,55,42,0.18) 0%, rgba(73,55,42,0.18) 100%);
}
.bh-welcome__inner {
  max-width: 1280px; width: 100%; margin: 0 auto;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  position: relative; z-index: 2;
  padding: 0 var(--pad-x);
  height: 100%;
}
.bh-welcome__content { max-width: 640px; }
.bh-welcome__title {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(48px, 5.5vw, 80px); line-height: 1.06; letter-spacing: -0.015em;
  color: var(--bh-paper); margin: 24px 0 36px;
}
.bh-welcome__title em { font-style: italic; font-weight: 400; }
.bh-welcome__body {
  font-family: var(--font-serif); font-size: 14px; line-height: 1.8;
  color: var(--bh-paper); margin: 0 0 20px; max-width: 65ch;
}
.bh-welcome__body em { font-style: italic; }

/* ============== Pillar grid (5 cards) ============== */
.bh-pillars { padding: 128px var(--pad-x) 144px; background: var(--bg-page); }
.bh-pillars__inner { max-width: 1280px; margin: 0 auto; }
.bh-pillars__head {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px;
  align-items: end; margin-bottom: 88px;
}
.bh-pillars__head h2 {
  font-family: var(--font-serif); font-size: clamp(32px, 3.4vw, 52px);
  margin: 18px 0 0; color: var(--fg-heading); font-weight: 400;
  line-height: 1.08; letter-spacing: -0.012em;
}
.bh-pillars__head h2 em { font-style: italic; }
.bh-pillars__head p {
  font-family: var(--font-serif); font-size: 14px; line-height: 1.6;
  color: var(--fg-2); margin: 0 0 6px;
}
.bh-pillars__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px; }
.bh-pillars__card {
  display: flex; flex-direction: column; gap: 24px; cursor: pointer; position: relative;
}
.bh-pillars__media { position: relative; overflow: hidden; aspect-ratio: 3/4;  }
.bh-pillars__img {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 600ms var(--ease-out);
}
.bh-pillars__card:hover .bh-pillars__img { transform: scale(1.05); }
.bh-pillars__signage {
  position: absolute; left: 20px; bottom: 20px; z-index: 2;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-wider);
  font-size: 20px; color: var(--bh-paper); line-height: 1.1;
}
.bh-pillars__num {
  position: absolute; top: 16px; left: 20px; z-index: 2;
  font-family: var(--font-display); letter-spacing: var(--tracking-wider); font-size: 10px; color: rgba(247,245,238,0.7);
}
.bh-pillars__meta { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.bh-pillars__meta h3 {
  font-family: var(--font-serif); font-size: 18px; margin: 0;
  font-weight: 400; color: var(--fg-heading); line-height: 1.3;
}
.bh-pillars__meta h3 em { font-style: italic; }
.bh-pillars__meta p {
  font-family: var(--font-serif); font-size: 13px; line-height: 1.6;
  color: var(--fg-2); margin: 0; flex: 1;
}
.bh-pillars__more {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-wider);
  font-size: 10px; color: var(--fg-3); margin: 12px 0 0 0;
  display: inline-flex; align-items: center; gap: 6px;
  opacity: 0.6; transition: opacity var(--dur-base); width: fit-content;
}
.bh-pillars__more svg { transition: transform var(--dur-base) var(--ease-out); }
.bh-pillars__card:hover .bh-pillars__more { opacity: 1; }
.bh-pillars__card:hover .bh-pillars__more svg { transform: translateX(4px); }

/* ============== Featured spaces ============== */
.bh-spaces { padding: 128px 0 144px; background: var(--bh-paper); position: relative; }
.bh-spaces__head {
  display: grid; grid-template-columns: 1fr auto; gap: 48px;
  padding: 0 var(--pad-x); margin: 0 auto 72px;
  align-items: end; max-width: 1280px; width: 100%;
}
.bh-spaces__eyebrow {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-widest);
  font-size: 11px; color: var(--fg-3); margin: 0 0 14px;
}
.bh-spaces__head h2 {
  font-family: var(--font-serif); font-size: clamp(30px, 3.2vw, 46px);
  margin: 0; color: var(--fg-heading); font-weight: 400;
  line-height: 1.1; letter-spacing: -0.01em; max-width: 18ch;
}
.bh-spaces__head h2 em { font-style: italic; }
.bh-spaces__head-right { display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }
.bh-spaces__head-right p { font-family: var(--font-serif); font-style: italic; font-size: 14px; color: var(--fg-2); margin: 0; max-width: 32ch; text-align: right; }
.bh-spaces__controls { display: flex; gap: 8px; }
.bh-spaces__controls button {
  width: 48px; height: 48px; border-radius: 999px; border: 1px solid var(--line-2);
  color: var(--fg-1); font-size: 18px; transition: background var(--dur-base), color var(--dur-base);
}
.bh-spaces__controls button:hover { background: var(--bh-clay-deep); color: var(--bh-paper); border-color: var(--bh-clay-deep); }
.bh-spaces__track {
  display: flex; gap: 28px; overflow-x: auto;
  scroll-snap-type: x mandatory; padding: 0 var(--pad-x) 32px;
  scrollbar-width: thin;
}
.bh-spaces__track::-webkit-scrollbar { height: 4px; }
.bh-spaces__track::-webkit-scrollbar-thumb { background: var(--line-2); }
.bh-spaces__card { flex: 0 0 380px; scroll-snap-align: start; cursor: pointer; }
.bh-spaces__img-wrap { position: relative; aspect-ratio: 4/5; overflow: hidden;  }
.bh-spaces__img {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 700ms var(--ease-out);
}
.bh-spaces__card:hover .bh-spaces__img { transform: scale(1.04); }
.bh-spaces__cap {
  position: absolute; top: 16px; left: 16px;
  background: rgba(247,245,238,0.92); color: var(--fg-heading);
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-wider);
  font-size: 10px; padding: 6px 10px;
}
.bh-spaces__meta { display: grid; grid-template-columns: auto 1fr; gap: 16px; padding-top: 22px; align-items: baseline; }
.bh-spaces__num {
  font-family: var(--font-display); letter-spacing: var(--tracking-wider);
  font-size: 11px; color: var(--fg-3);
}
.bh-spaces__meta h3 { font-family: var(--font-serif); font-size: 19px; margin: 0 0 4px; font-weight: 400; color: var(--fg-heading); }
.bh-spaces__meta p { font-family: var(--font-serif); font-size: 14px; line-height: 1.55; color: var(--fg-2); margin: 0; }
.bh-spaces__end {
  flex: 0 0 320px; scroll-snap-align: start; aspect-ratio: 5/6;
  background: var(--bh-clay-deep); color: var(--bh-paper);
  display: flex; flex-direction: column; justify-content: space-between; gap: 12px; padding: 24px;
}
.bh-spaces__end-eyebrow {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-widest);
  font-size: 10px; color: var(--bh-beige); opacity: 0.78; margin: 0 0 8px;
}
.bh-spaces__end p {
  font-family: var(--font-serif); font-style: italic; font-size: 16px; line-height: 1.25; margin: 0;
}
.bh-spaces__end-icon { width: 28px; height: 28px; opacity: 0.5; }

/* ============== Property map teaser ============== */
.bh-map { padding: 144px var(--pad-x); background: var(--bg-page); border-top: 1px solid var(--line-1); }
.bh-map__inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 0.65fr 1.6fr; gap: 72px; align-items: center;
}
.bh-map__copy h2 {
  font-family: var(--font-serif); font-size: clamp(30px, 3.2vw, 46px);
  margin: 20px 0 32px; color: var(--fg-heading); font-weight: 400;
  line-height: 1.1; letter-spacing: -0.01em;
}
.bh-map__copy h2 em { font-style: italic; }
.bh-map__copy p {
  font-family: var(--font-serif); font-size: 14px; line-height: 1.6;
  color: var(--fg-1); margin: 0 0 28px; max-width: 42ch;
}
.bh-map__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.bh-map__visual {
  position: relative; aspect-ratio: 16/11;
  background:
    radial-gradient(circle at 30% 60%, rgba(103,151,184,0.18) 0%, transparent 45%),
    linear-gradient(180deg, var(--bh-mustard) 0%, var(--bh-sand) 35%, var(--bh-olive) 70%, var(--bh-river) 100%);
  border: 1px solid var(--line-2);
}
.bh-map__visual--fullbleed {
  aspect-ratio: unset; width: 100%; height: 82vh; min-height: 520px;
  border-left: 0; border-right: 0;
}
.bh-map__visual::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(31,29,26,0.18) 100%);
}
.bh-map__paper {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.46  0 0 0 0 0.37  0 0 0 0 0.31  0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply; opacity: 0.5;
}
.bh-map__river { position: absolute; inset: 0; pointer-events: none; }
.bh-map__pin {
  position: absolute; transform: translate(-50%, -100%);
  display: inline-flex; flex-direction: column; align-items: center; gap: 8px;
  cursor: pointer; z-index: 3;
}
.bh-map__pin-dot {
  width: 14px; height: 14px; border-radius: 999px;
  background: var(--bh-clay-deep); border: 2px solid var(--bh-paper);
  box-shadow: 0 2px 6px rgba(31,29,26,0.3);
  transition: transform var(--dur-base) var(--ease-out);
}
.bh-map__pin:hover .bh-map__pin-dot { transform: scale(1.3); }
.bh-map__pin-label {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-wider);
  font-size: 10px; color: var(--bh-clay-deep);
  background: var(--bh-paper); padding: 4px 10px; white-space: nowrap;
  opacity: 0; transition: opacity var(--dur-base);
}
.bh-map__pin:hover .bh-map__pin-label,
.bh-map__pin.is-active .bh-map__pin-label { opacity: 1; }
.bh-map__compass {
  position: absolute; top: 24px; right: 24px;
  width: 60px; height: 60px;
  border: 1px solid rgba(247,245,238,0.6);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); text-transform: uppercase;
  font-size: 11px; letter-spacing: var(--tracking-wider);
  color: var(--bh-paper); opacity: 0.85;
}
.bh-map__legend {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--bh-paper); padding: 10px 14px;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-widest);
  font-size: 10px; color: var(--fg-3);
}

/* ---- Map popup card ---- */
.bh-map__popup {
  position: absolute; width: 230px;
  background: var(--bh-paper);
  box-shadow: 0 12px 40px rgba(31,29,26,0.22), 0 2px 8px rgba(31,29,26,0.12);
  opacity: 0; pointer-events: none;
  transform: translateY(6px) scale(0.98);
  transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out);
  z-index: 10;
}
.bh-map__popup.is-open {
  opacity: 1; pointer-events: auto; transform: none;
}
/* Caret pointing down (popup above pin) */
.bh-map__popup.caret-down::after {
  content: ""; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%);
  border-left: 9px solid transparent; border-right: 9px solid transparent;
  border-top: 9px solid var(--bh-paper);
  filter: drop-shadow(0 3px 2px rgba(31,29,26,0.08));
}
/* Caret pointing up (popup below pin) */
.bh-map__popup.caret-up::before {
  content: ""; position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  border-left: 9px solid transparent; border-right: 9px solid transparent;
  border-bottom: 9px solid var(--bh-paper);
  filter: drop-shadow(0 -3px 2px rgba(31,29,26,0.08));
}
.bh-map__popup-img {
  width: 100%; height: 200px;
  background-size: cover; background-position: center;
}
.bh-map__popup-body {
  padding: 14px 14px 12px; position: relative;
}
.bh-map__popup-eyebrow {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-wider);
  font-size: 9px; color: var(--fg-3); margin: 0 0 4px;
}
.bh-map__popup-title {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.05em;
  font-size: 13px; font-weight: 700; color: var(--fg-heading);
  margin: 0 0 6px; padding-right: 22px;
}
.bh-map__popup-cap {
  font-family: var(--font-display); font-size: 9px; text-transform: uppercase;
  letter-spacing: var(--tracking-wider); color: var(--bh-clay-deep);
  margin: 0 0 8px;
}
.bh-map__popup-desc {
  font-size: 12px; line-height: 1.65; color: var(--fg-2); margin: 0 0 12px;
}
.bh-map__popup-link {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-wider);
  font-size: 9px; color: var(--bh-clay-deep);
  display: inline-flex; align-items: center; gap: 5px; text-decoration: none;
}
.bh-map__popup-link:hover { opacity: 0.7; }
.bh-map__popup-close {
  position: absolute; top: 10px; right: 10px;
  width: 22px; height: 22px;
  background: none; border: none; cursor: pointer;
  font-size: 15px; line-height: 1; color: var(--fg-3); padding: 0;
  display: flex; align-items: center; justify-content: center;
}
.bh-map__popup-close:hover { color: var(--fg-1); }

/* ============== Map dedicated page ============== */
.bh-mappage__intro {
  background: var(--bg-page); padding: 80px var(--pad-x) 56px;
  border-top: 1px solid var(--line-1);
}
.bh-mappage__intro-inner { max-width: 680px; }
.bh-mappage__title {
  font-family: var(--font-serif); font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 400; color: var(--fg-heading); line-height: 1.1; letter-spacing: -0.01em;
  margin: 20px 0 24px;
}
.bh-mappage__title em { font-style: italic; }
.bh-mappage__desc {
  font-family: var(--font-serif); font-size: 15px; line-height: 1.65;
  color: var(--fg-1); margin: 0 0 32px; max-width: 52ch;
}
.bh-mappage { padding: 0; background: var(--bg-page); }

/* ============== Custom select ============== */
.bh-custom-select { position: relative; }
.bh-custom-select[aria-expanded="true"] { z-index: 100; }
.bh-custom-select__trigger {
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--line-2);
  padding: 10px 0; cursor: pointer; text-align: left;
  font-family: var(--font-serif); font-size: 15.5px; color: var(--fg-3);
  transition: border-color 180ms var(--ease-out);
}
.bh-custom-select__trigger:hover,
.bh-custom-select[aria-expanded="true"] .bh-custom-select__trigger { border-bottom-color: var(--bh-clay-deep); }
.bh-custom-select__trigger.has-value { color: var(--fg-heading); }
.bh-custom-select__chevron {
  flex-shrink: 0; transition: transform 0.18s var(--ease-out); color: var(--fg-3);
}
.bh-custom-select[aria-expanded="true"] .bh-custom-select__chevron { transform: rotate(180deg); }
.bh-custom-select__list {
  position: absolute; top: calc(100% + 1px); left: 0; right: 0; z-index: 999;
  background: var(--bh-paper); border: 1px solid var(--line-2);
  list-style: none; margin: 0; padding: 6px 0;
  opacity: 0; pointer-events: none; transform: translateY(4px);
  transition: opacity 0.15s var(--ease-out), transform 0.15s var(--ease-out);
  box-shadow: 0 4px 12px rgba(31,29,26,0.12);
}
.bh-custom-select[aria-expanded="true"] .bh-custom-select__list {
  opacity: 1; pointer-events: auto; transform: none;
}
.bh-custom-select__option {
  font-family: var(--font-serif); font-size: 15px; color: var(--fg-1);
  padding: 11px 18px; cursor: pointer; transition: background 100ms;
}
.bh-custom-select__option:hover { background: var(--bh-beige); color: var(--fg-heading); }
.bh-custom-select__option[aria-selected="true"] {
  color: var(--bh-clay-deep);
  background: var(--bh-beige);
}

/* ============== FAQs ============== */
.bh-faq {
  background: rgba(189, 170, 109, 0.12); padding: 96px var(--pad-x);
  border-top: 1px solid var(--line-1); border-bottom: 1px solid var(--line-1);
}
.bh-faq__inner {
  max-width: 800px; margin: 0 auto;
}
.bh-faq__head {
  margin-bottom: 56px;
}
.bh-faq__head h2 {
  font-family: var(--font-serif); font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 400; color: var(--fg-heading); line-height: 1.1; letter-spacing: -0.01em;
  margin: 16px 0 0;
}
.bh-faq__list {
  display: flex; flex-direction: column; gap: 1px; margin-bottom: 40px;
  border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2);
}
.bh-faq__item {
  border-bottom: 1px solid var(--line-2);
}
.bh-faq__item:last-child {
  border-bottom: 0;
}
.bh-faq__trigger {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  width: 100%; background: transparent; border: 0; padding: 18px 0; cursor: pointer;
  font-family: var(--font-serif); font-size: 15px; font-weight: 600; color: var(--fg-1); text-align: left;
  transition: color 150ms var(--ease-out);
}
.bh-faq__trigger:hover,
.bh-faq__item.is-open .bh-faq__trigger {
  color: var(--fg-heading);
}
.bh-faq__icon {
  flex-shrink: 0; color: var(--fg-3); transition: transform 0.22s var(--ease-out);
}
.bh-faq__item.is-open .bh-faq__icon {
  transform: rotate(180deg); color: var(--bh-clay-deep);
}
.bh-faq__content {
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.25s var(--ease-out), opacity 0.25s var(--ease-out);
}
.bh-faq__item.is-open .bh-faq__content {
  opacity: 1;
}
.bh-faq__item.is-open .bh-faq__content {
  max-height: 500px;
}
.bh-faq__content p {
  font-family: var(--font-serif); font-size: 13px; line-height: 1.7;
  color: var(--fg-2); margin: 0 0 16px;
  padding-bottom: 8px;
}
.bh-faq__content p:last-child {
  margin-bottom: 0;
}
.bh-faq__footer {
  display: flex; justify-content: flex-start;
  margin-top: 48px;
}

/* Spaces section — footer CTA left-aligned with the heading column.
   Constrained to the same 1200px max-width as .bh-spaces__head so it
   sits on the same left edge instead of the outer viewport edge. */
.bh-spaces__footer {
  display: flex; justify-content: flex-start;
  max-width: 1280px; width: 100%; margin: 0 auto;
  padding: 24px var(--pad-x) 0;
}

/* -----------------------------------------------------------------------
   Alternative editorial layout for the spaces module.
   Use class `bh-spaces--editorial` on the section to opt in.

   Layout rationale:
     - Eyebrow, heading, intro stack in a single left-aligned column.
     - Carousel arrows sit at the right edge of the same heading container
       (1200px max-width), aligned with the bottom of the heading row.
     - Reads as one intentional editorial block — heading column on left,
       compact arrow controls on right, footer CTA below the carousel.

   Replicate by adding `bh-spaces--editorial` to any .bh-spaces section.
   ----------------------------------------------------------------------- */
.bh-spaces--editorial .bh-spaces__head {
  align-items: end;   /* arrows align to the bottom edge of the heading */
}
.bh-spaces--editorial .bh-spaces__head > div:first-child {
  display: flex; flex-direction: column; gap: 20px;
  max-width: 56ch;
}
.bh-spaces--editorial .bh-spaces__head h2 { max-width: 18ch; }
.bh-spaces--editorial .bh-spaces__head-intro {
  font-family: var(--font-serif); font-size: 14.5px; line-height: 1.65;
  color: var(--fg-2); margin: 0; max-width: 52ch;
}
.bh-spaces--editorial .bh-spaces__head-right {
  align-items: flex-end;   /* hug the right edge of the grid column */
}
.bh-spaces--editorial .bh-spaces__head-right p { display: none; }
@media (max-width: 980px) {
  .bh-spaces--editorial .bh-spaces__head { grid-template-columns: 1fr; }
  .bh-spaces--editorial .bh-spaces__head-right { align-items: flex-start; margin-top: 8px; }
}

/* Statement section — inline CTA below the body copy */
.bh-pillar-statement__cta { margin: 32px 0 0; }

/* Capacity chapter — editorial mega-section that holds a feature, a deck,
   and a reverse feature inside one umbrella. Spacing alternates between
   sub-blocks so the chapter reads as a magazine spread, not a stack. */
.bh-capacity-chapter { padding: 96px 0; }
.bh-capacity-chapter__head {
  max-width: 1280px; margin: 0 auto 88px;
  padding: 0 var(--pad-x);
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px 64px; align-items: end;
}
.bh-capacity-chapter__head > .bh-pillar__meta { grid-column: 1; }
.bh-capacity-chapter__head > h2              { grid-column: 1; margin: 0; }
.bh-capacity-chapter__intro {
  grid-column: 2;
  font-family: var(--font-serif); font-size: 15.5px; line-height: 1.7;
  color: var(--fg-2); margin: 0; max-width: 48ch;
}

/* Inline sub-features: zero outer padding (chapter handles it),
   intentional vertical rhythm between sibling sub-blocks */
.bh-capacity-chapter__feature {
  padding: 0 var(--pad-x);
  margin-bottom: 112px;
}
.bh-capacity-chapter__feature:last-child { margin-bottom: 0; }
.bh-capacity-chapter__feature .bh-feature__inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px 72px; align-items: center;
}
.bh-capacity-chapter__feature.bh-feature--reverse .bh-feature__visual { order: 2; }
.bh-capacity-chapter__feature.bh-feature--reverse .bh-feature__copy   { order: 1; }

.bh-capacity-chapter__deck { margin-bottom: 112px; }
.bh-capacity-chapter__deck .bh-spaces__head {
  max-width: 1280px; margin: 0 auto 56px;
  padding: 0 var(--pad-x);
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px 64px; align-items: end;
}
.bh-capacity-chapter__deck .bh-spaces__head h3 {
  font-family: var(--font-serif); font-weight: 400; margin: 16px 0 0;
  font-size: clamp(28px, 2.6vw, 38px); line-height: 1.1; letter-spacing: -0.01em;
  color: var(--fg-heading);
}
.bh-capacity-chapter__deck .bh-spaces__head-right {
  display: flex; flex-direction: column; align-items: flex-start; gap: 24px;
}
.bh-capacity-chapter__deck .bh-spaces__head-right p {
  font-family: var(--font-serif); font-style: italic; font-size: 15px; line-height: 1.6;
  color: var(--fg-2); margin: 0; max-width: 38ch;
}

.bh-capacity-chapter__sub-h {
  font-family: var(--font-serif); font-weight: 400; margin: 16px 0 0;
  font-size: clamp(28px, 2.6vw, 38px); line-height: 1.1; letter-spacing: -0.01em;
  color: var(--fg-heading);
}

@media (max-width: 980px) {
  .bh-capacity-chapter { padding: 72px 0; }
  .bh-capacity-chapter__head,
  .bh-capacity-chapter__deck .bh-spaces__head {
    grid-template-columns: 1fr; gap: 24px;
  }
  .bh-capacity-chapter__head { margin-bottom: 56px; }
  .bh-capacity-chapter__feature .bh-feature__inner { grid-template-columns: 1fr; gap: 32px; }
  .bh-capacity-chapter__feature.bh-feature--reverse .bh-feature__visual { order: 0; }
  .bh-capacity-chapter__feature.bh-feature--reverse .bh-feature__copy   { order: 1; }
  .bh-capacity-chapter__feature { margin-bottom: 72px; }
  .bh-capacity-chapter__deck { margin-bottom: 72px; }
}

/* Feature — single image + copy module, 50/50 split.
   Used for self-contained feature sections (Unique Ceremony Spaces,
   Recovery + Wellness, etc.). Alternates side via --reverse modifier. */
.bh-feature { padding: 96px var(--pad-x); }
.bh-feature__inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px 72px; align-items: center;
}
.bh-feature--reverse .bh-feature__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.bh-feature--reverse .bh-feature__visual { order: 2; }
.bh-feature--reverse .bh-feature__copy   { order: 1; }
.bh-feature__visual { min-width: 0; }
.bh-feature__photo {
  width: 100%; aspect-ratio: 4 / 5;
  background-size: cover; background-position: center;
  
}
.bh-feature__copy {
  display: flex; flex-direction: column; gap: 22px;
  max-width: 48ch;
}
.bh-feature__copy h2 {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(32px, 3.4vw, 48px); line-height: 1.05; letter-spacing: -0.01em;
  color: var(--fg-heading); margin: 0;
}
.bh-feature__copy p {
  font-family: var(--font-serif); font-size: 14.5px; line-height: 1.7;
  color: var(--fg-2); margin: 0;
}
.bh-feature__cta { margin-top: 8px; }
@media (max-width: 980px) {
  .bh-feature { padding: 64px var(--pad-x); }
  .bh-feature__inner { grid-template-columns: 1fr; gap: 40px; }
  .bh-feature--reverse .bh-feature__visual { order: 0; }
  .bh-feature--reverse .bh-feature__copy   { order: 1; }
  .bh-feature__photo { aspect-ratio: 16 / 11; }
}

/* Editorial — triptych: copy header + three equal-height figures.
   Each image keeps a unified 3:4 frame (with background-size:cover) so
   the row sits clean and the rhythm reads as a magazine spread, not a collage. */
.bh-editorial { padding: 96px var(--pad-x); }
.bh-editorial__inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 72px;
}

/* Header — left-aligned, contained width */
.bh-editorial__copy {
  display: flex; flex-direction: column; gap: 20px;
  max-width: 56ch;
}
.bh-editorial__h {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(32px, 3.4vw, 48px); line-height: 1.05; letter-spacing: -0.01em;
  color: var(--fg-heading); margin: 0;
}
.bh-editorial__copy p {
  font-family: var(--font-serif); font-size: 14.5px; line-height: 1.7;
  color: var(--fg-2); margin: 0; max-width: 56ch;
}

/* Image row — three equal columns, equal aspect, shared baseline */
.bh-editorial__row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.bh-editorial__fig { margin: 0; display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.bh-editorial__img {
  width: 100%; aspect-ratio: 3 / 4;
  background-size: cover; background-position: center;
  
}
.bh-editorial__fig figcaption {
  font-family: var(--font-serif); font-style: italic; font-size: 13px; line-height: 1.55;
  color: var(--fg-3); max-width: 36ch;
}

/* Tablet — 2 columns, third image takes the full width below for a clean break */
@media (max-width: 980px) {
  .bh-editorial { padding: 80px var(--pad-x); }
  .bh-editorial__inner { gap: 56px; }
  .bh-editorial__row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .bh-editorial__row > .bh-editorial__fig:nth-child(3) {
    grid-column: 1 / -1;
  }
  .bh-editorial__row > .bh-editorial__fig:nth-child(3) .bh-editorial__img {
    aspect-ratio: 16 / 9;
  }
}

/* Mobile — single column, each figure full width */
@media (max-width: 720px) {
  .bh-editorial__row { grid-template-columns: 1fr; gap: 32px; }
  .bh-editorial__row > .bh-editorial__fig:nth-child(3) .bh-editorial__img {
    aspect-ratio: 3 / 4;
  }
}

/* ============== Press / recognition strip ============== */
.bh-press {
  background: var(--bh-paper); padding: 72px var(--pad-x);
  border-top: 1px solid var(--line-1); border-bottom: 1px solid var(--line-1);
}
.bh-press__inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr; gap: 72px; align-items: center;
}
.bh-press__label {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-widest);
  font-size: 11px; color: var(--fg-3); margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.bh-press__label em {
  font-family: var(--font-serif); font-style: italic;
  text-transform: none; letter-spacing: 0; font-size: 18px; color: var(--fg-heading);
}
.bh-press__logos {
  display: grid; grid-auto-flow: column; grid-auto-columns: 1fr;
  gap: 24px; align-items: center;
}
.bh-press__logo {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(16px, 1.4vw, 20px); color: var(--fg-2); opacity: 0.8;
  text-align: center; letter-spacing: -0.005em; white-space: nowrap;
}
.bh-press__logo--caps {
  font-family: var(--font-display); font-style: normal;
  letter-spacing: var(--tracking-widest); font-size: 13px; text-transform: uppercase;
}

/* ============== Sustainability ============== */
.bh-sust { padding: 160px var(--pad-x); background: var(--bh-olive); color: var(--bh-paper); }
.bh-sust__inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 120px; align-items: center;
}
.bh-sust__eyebrow {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-widest);
  font-size: 11px; color: var(--bh-paper); opacity: 0.78; margin: 0 0 22px;
}
.bh-sust__title {
  font-family: var(--font-serif); font-size: clamp(30px, 3.2vw, 46px);
  margin: 0 0 36px; color: var(--bh-paper); font-weight: 400;
  line-height: 1.1; letter-spacing: -0.01em;
}
.bh-sust__title em { font-style: italic; }
.bh-sust__body {
  font-family: var(--font-serif); font-size: 14px; line-height: 1.7;
  color: var(--bh-beige); margin: 0 0 40px; max-width: 50ch;
}
.bh-sust__list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px 32px;
  margin: 0 0 36px; padding: 0; list-style: none;
}
.bh-sust__list li {
  display: flex; flex-direction: column; gap: 6px;
  padding-left: 16px; border-left: 1px solid rgba(247,245,238,0.3);
}
.bh-sust__list-num {
  font-family: var(--font-serif); font-style: italic; font-size: 24px;
  color: var(--bh-paper); line-height: 1;
}
.bh-sust__list-label {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-wider);
  font-size: 10px; color: var(--bh-beige); opacity: 0.78;
}

/* ============== Instagram Feed ============== */
.bh-instagram {
  padding: 120px var(--pad-x); background: var(--bh-paper);
  border-top: 1px solid var(--line-1); border-bottom: 1px solid var(--line-1);
}
.bh-instagram__inner { max-width: 1280px; margin: 0 auto; }
.bh-instagram__head {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  margin-bottom: 56px; text-align: center;
}
.bh-instagram__eyebrow {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-widest);
  font-size: 11px; color: var(--fg-3); margin: 0;
}
.bh-instagram__title {
  font-family: var(--font-serif); font-style: italic;
  font-size: 18px; color: var(--fg-2); margin: 0;
}
.bh-instagram__title a {
  color: inherit; text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color 180ms var(--ease-out), border-color 180ms var(--ease-out);
}
.bh-instagram__title a:hover { color: var(--bh-clay-deep); }
.bh-instagram__track {
  display: flex; gap: 16px; overflow-x: auto;
  scroll-snap-type: x mandatory; padding-bottom: 24px;
  scrollbar-width: thin;
}
.bh-instagram__track::-webkit-scrollbar { height: 4px; }
.bh-instagram__track::-webkit-scrollbar-thumb { background: var(--line-2); }
.bh-instagram__card {
  flex: 0 0 300px; scroll-snap-align: start; cursor: pointer;
  position: relative; overflow: hidden; aspect-ratio: 1/1;
  border: 1px solid var(--line-1);
}
.bh-instagram__img {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 600ms var(--ease-out);
}
.bh-instagram__card:hover .bh-instagram__img { transform: scale(1.06); }
.bh-instagram__overlay {
  position: absolute; inset: 0; background: rgba(31,29,26,0.5);
  opacity: 0; transition: opacity 400ms var(--ease-out);
  display: flex; align-items: center; justify-content: center; z-index: 2;
}
.bh-instagram__card:hover .bh-instagram__overlay { opacity: 1; }
.bh-instagram__icon { width: 48px; height: 48px; opacity: 0.9; }
.bh-instagram__cta-wrap { text-align: center; margin-top: 32px; }
.bh-instagram__cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-wider);
  font-size: 11px; color: var(--bh-clay-deep);
  background: var(--bh-beige);
  padding: 12px 24px; border-radius: 999px;
  transition: background 200ms var(--ease-out), transform 200ms var(--ease-out);
}
.bh-instagram__cta:hover { background: var(--bh-paper); transform: translateY(-2px); }

/* ============== eDM ============== */
.bh-edm { padding: 160px var(--pad-x); background: var(--bh-beige); }
.bh-edm__inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center;
}
.bh-edm__copy { display: flex; flex-direction: column; }
.bh-edm__eyebrow {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-widest);
  font-size: 11px; color: var(--fg-3); margin: 0 0 18px;
}
.bh-edm__copy h2 {
  font-family: var(--font-serif); font-size: clamp(30px, 3.2vw, 46px);
  margin: 0 0 28px; color: var(--fg-heading); font-weight: 400;
  line-height: 1.1; letter-spacing: -0.01em;
}
.bh-edm__copy h2 em { font-style: italic; }
.bh-edm__sub { font-family: var(--font-serif); font-size: 15px; line-height: 1.7; color: var(--fg-1); max-width: 44ch; margin: 0 0 28px; }
.bh-edm__bullets { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.bh-edm__bullets li {
  font-family: var(--font-serif); font-style: italic; font-size: 15px;
  color: var(--fg-2); padding-left: 22px; position: relative; line-height: 1.5;
}
.bh-edm__bullets li::before { content: "—"; position: absolute; left: 0; top: 0; color: var(--bh-clay-deep); font-style: normal; }

/* Form: vertical stack of (fields-grid) and (success) */
.bh-edm__form { display: flex; flex-direction: column; gap: 0; padding-top: 6px; }
.bh-edm__form-fields {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 22px 24px;
}
.bh-edm__field { display: flex; flex-direction: column; gap: 8px; min-width: 0; position: relative; }
.bh-edm__field--full { grid-column: 1 / -1; }
.bh-edm__field:has(.bh-custom-select[aria-expanded="true"]) { z-index: 50; }
.bh-edm__field span {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-wider);
  font-size: 10px; color: var(--fg-3);
}
.bh-edm__field input, .bh-edm__field select {
  font-family: var(--font-serif); font-size: 16px; padding: 10px 0;
  background: transparent; border: 0; border-bottom: 1px solid var(--line-2);
  color: var(--fg-heading); outline: none; width: 100%;
  transition: border-color 180ms var(--ease-out);
}
.bh-edm__field input:hover, .bh-edm__field select:hover { border-bottom-color: var(--bh-clay-deep); }
.bh-edm__field input:focus, .bh-edm__field select:focus { border-bottom-color: var(--bh-clay-deep); }

.bh-edm__actions {
  grid-column: 1 / -1;
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px;
  margin-top: 12px;
}
.bh-edm__legal {
  font-family: var(--font-serif); font-style: italic;
  font-size: 12px; color: var(--fg-3); margin: 0; max-width: 38ch; line-height: 1.5;
}

.bh-edm__form-success {
  display: none;
  font-family: var(--font-serif); font-size: 14.5px; line-height: 1.6; color: var(--fg-heading);
  padding: 36px 36px; background: var(--bh-paper); border: 1px solid var(--line-1);
  flex-direction: column; gap: 12px;
}
.bh-edm__form-success em { font-style: italic; font-size: 26px; color: var(--fg-heading); line-height: 1.1; }
.bh-edm__form.is-submitted .bh-edm__form-fields { display: none; }
.bh-edm__form.is-submitted .bh-edm__form-success { display: flex; }

/* ============== Footer ============== */
.bh-footer { background: var(--bh-clay-deep); color: var(--fg-on-dark); padding: 128px var(--pad-x) 48px; }
.bh-footer__inner { max-width: 1280px; margin: 0 auto; }
.bh-footer__top {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: end;
  margin-bottom: 112px; padding-bottom: 72px; border-bottom: 1px solid var(--line-on-dark);
}
.bh-footer__mark { height: 64px; }
.bh-footer__top-right { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.bh-footer__cta-line {
  font-family: var(--font-serif); font-style: italic; font-size: clamp(18px, 1.5vw, 22px);
  color: var(--bh-beige); margin: 0; max-width: 28ch; line-height: 1.45;
}
.bh-footer__cta-line em { font-style: italic; }
.bh-footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.bh-footer__cols h4 {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-widest);
  font-size: 11px; color: var(--bh-beige); margin: 0 0 18px; font-weight: 400;
}
.bh-footer__cols a {
  display: block; font-family: var(--font-serif); font-size: 14px;
  color: var(--fg-on-dark-2); padding: 6px 0; cursor: pointer;
  transition: color var(--dur-base);
}
.bh-footer__cols a:hover { color: var(--bh-paper); }
.bh-footer__base {
  display: grid; grid-template-columns: auto 1fr auto; gap: 32px;
  margin-top: 80px; padding-top: 24px; border-top: 1px solid var(--line-on-dark);
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-widest); font-size: 10px; color: var(--fg-on-dark-2);
  align-items: center;
}
.bh-footer__base p { margin: 0; max-width: 60ch; }
.bh-footer__base a { color: var(--fg-on-dark-2); }
.bh-footer__base a:hover { color: var(--bh-paper); }
.bh-footer__ackn {
  font-family: var(--font-serif); font-style: italic; text-transform: none; letter-spacing: 0;
  font-size: 13px; color: var(--bh-beige); opacity: 0.75; max-width: 64ch;
}

/* ============== Floating CTA + sticky bar ============== */
.bh-floating {
  position: fixed; z-index: 60;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-wider); font-size: 12px;
  padding: 16px 24px; border-radius: 999px;
  background: var(--bh-paper); color: var(--bh-clay-deep);
  border: 1px solid rgba(31,29,26,0.08);
  box-shadow: 0 6px 18px rgba(31,29,26,0.08);
  transition: transform var(--dur-base) var(--ease-out), background var(--dur-base), box-shadow var(--dur-base) var(--ease-out);
  cursor: pointer;
}
.bh-floating:hover { transform: translateY(-2px); background: #ffffff; }
.bh-floating--desktop { right: 28px; bottom: 28px; }
.bh-stickybar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  padding: 14px 20px; background: var(--bh-paper); border-top: 1px solid var(--line-1);
  align-items: center; justify-content: space-between; gap: 12px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
}
.bh-stickybar p { margin: 0; font-family: var(--font-serif); font-style: italic; font-size: 16px; color: var(--fg-heading); }

/* =============================================================
   Pillar pages — editorial design system
   Reusable across Weddings, Team Off-Sites, Retreats,
   Private Events and Brand Activations / Shoots.
   ============================================================= */

/* Pillar hero (refined) */
.bh-pillar-hero {
  position: relative; min-height: 92vh; height: 92vh; overflow: hidden;
  color: var(--bh-paper);
}
.bh-pillar-hero__media { position: absolute; inset: 0; overflow: hidden; }
.bh-pillar-hero__photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  background-size: cover; background-position: center;
}
.bh-pillar-hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block; pointer-events: none;
}
.bh-pillar-hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(31,29,26,0.32) 0%, rgba(31,29,26,0) 30%, rgba(31,29,26,0) 65%, rgba(31,29,26,0.55) 100%);
  z-index: 2;
}
/* Deeper tint for heroes over bright/busy photos — keeps mid-section legible (e.g. FAQ page) */
.bh-pillar-hero__overlay--deep {
  background:
    linear-gradient(180deg, rgba(31,29,26,0.5) 0%, rgba(31,29,26,0.28) 35%, rgba(31,29,26,0.3) 65%, rgba(31,29,26,0.62) 100%);
}
.bh-pillar-hero__content {
  position: relative; z-index: 3; max-width: 1280px; margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: 18vh;
}
.bh-pillar-hero__eyebrow {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-widest);
  font-size: 11px; color: var(--bh-beige); margin: 0 0 28px;
  display: inline-flex; align-items: center; gap: 14px;
}
.bh-pillar-hero__eyebrow::before {
  content: ""; width: 36px; height: 1px; background: var(--bh-beige); opacity: 0.7;
}
.bh-pillar-hero__title {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(48px, 8vw, 100px); line-height: 0.96;
  color: var(--bh-paper); margin: 0; letter-spacing: -0.018em;
}
.bh-pillar-hero__subtitle {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px); line-height: 1.5;
  color: var(--bh-beige); margin: 24px 0 0; max-width: 56ch;
}
.bh-pillar-hero__chrome {
  position: absolute; left: 0; right: 0; bottom: 28px; z-index: 4;
  padding: 0 var(--pad-x);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-widest);
  font-size: 10px; color: var(--bh-beige);
}
.bh-pillar-hero__scroll-track {
  display: inline-block;
  width: 1px; height: 36px; margin-left: 10px; vertical-align: middle;
  background: var(--bh-beige); opacity: 0.5; position: relative; overflow: hidden;
}
.bh-pillar-hero__scroll-track::after {
  content: ""; position: absolute; left: 0; right: 0; top: -40%; height: 40%; background: var(--bh-beige);
  animation: scroll-tick 2.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

/* Hand-drawn brand divider — single centered mark, no flanking rules.
   Confident editorial break, not a generic "line / icon / line" template.
   Use the brown monogram on light backgrounds, beige variant on dark.
     <div class="bh-divider"><img src="assets/logos/icon-brown.svg" alt=""></div>
   Modifier `.bh-divider--mark` doubles the scale for major narrative pivots. */
.bh-divider {
  display: flex; align-items: center; justify-content: center;
  padding: 56px var(--pad-x);
}
.bh-divider img,
.bh-divider svg {
  width: 48px; height: 48px; opacity: 0.55;
}
.bh-divider--mark img,
.bh-divider--mark svg { width: 80px; height: 80px; opacity: 0.7; }
@media (max-width: 720px) {
  .bh-divider { padding: 40px var(--pad-x); }
  .bh-divider img,
  .bh-divider svg { width: 40px; height: 40px; }
  .bh-divider--mark img,
  .bh-divider--mark svg { width: 56px; height: 56px; }
}

/* Reusable section primitives — intentional rhythm.
   Variants get slightly different padding so the page doesn't feel like
   one repeated block. Dark sections breathe a touch more; cream sits
   tighter to read as an inset between paper modules. */
.bh-pillar-section { padding: 160px var(--pad-x); }
.bh-pillar-section--paper { background: var(--bh-paper); }
.bh-pillar-section--beige { background: var(--bg-page); padding-top: 144px; padding-bottom: 144px; }
.bh-pillar-section--cream { background: #d6c5a8; padding-top: 128px; padding-bottom: 128px; }  /* warm tan — brown-leaning off-white, on-brand */
.bh-pillar-section--clay  { background: var(--bh-clay-deep); color: var(--bh-paper); padding-top: 176px; padding-bottom: 176px; }
.bh-pillar-section--olive { background: var(--bh-olive); color: var(--bh-paper); padding-top: 176px; padding-bottom: 176px; }
.bh-pillar-section--sand  { background: var(--bh-sand); color: var(--bh-paper); padding-top: 168px; padding-bottom: 168px; }

.bh-pillar__eyebrow {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-widest);
  font-size: 10px; margin: 0;
  color: var(--fg-3);
}
.bh-pillar-section--clay .bh-pillar__eyebrow,
.bh-pillar-section--olive .bh-pillar__eyebrow,
.bh-pillar-section--sand .bh-pillar__eyebrow { color: var(--bh-beige); opacity: 0.78; }

/* Editorial section meta row: index + label */
.bh-pillar__meta {
  display: flex; align-items: center; gap: 24px;
  margin-bottom: 28px;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-widest);
  font-size: 10px;
}
.bh-pillar__meta .bh-pillar__index {
  color: var(--fg-3); opacity: 0.6;
  font-variant-numeric: tabular-nums;
}
.bh-pillar__meta .bh-pillar__index span { opacity: 0.5; padding: 0 6px; }
.bh-pillar-section--clay .bh-pillar__meta .bh-pillar__index,
.bh-pillar-section--olive .bh-pillar__meta .bh-pillar__index,
.bh-pillar-section--sand .bh-pillar__meta .bh-pillar__index { color: var(--bh-beige); opacity: 0.55; }

.bh-pillar__h2 {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(34px, 4vw, 60px); line-height: 1.05; letter-spacing: -0.014em;
  color: var(--fg-heading); margin: 0;
}
.bh-pillar__h2 em { font-style: italic; }
.bh-pillar__h2--anchor {
  font-size: clamp(48px, 6.4vw, 104px); line-height: 0.98; letter-spacing: -0.02em;
}
.bh-pillar-section--clay .bh-pillar__h2,
.bh-pillar-section--olive .bh-pillar__h2,
.bh-pillar-section--sand .bh-pillar__h2 { color: var(--bh-paper); }

/* Cinematic atmosphere break (full-bleed) */
.bh-pillar-cinematic {
  position: relative; height: 80vh; min-height: 540px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--bh-paper); padding: 0 var(--pad-x);
  animation: fadeInUp 900ms var(--ease-out) both;
  animation-timeline: view();
  animation-range: entry 0% cover 35%;
}
.bh-pillar-cinematic__photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.bh-pillar-cinematic__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(31,29,26,0.35) 0%, rgba(31,29,26,0.15) 50%, rgba(31,29,26,0.5) 100%);
}
.bh-pillar-cinematic__copy {
  position: relative; z-index: 2; text-align: center; max-width: 820px;
}
.bh-pillar-cinematic__copy h2 {
  font-family: var(--font-serif); font-weight: 400; font-style: italic;
  font-size: clamp(40px, 5.4vw, 84px); line-height: 1.05; letter-spacing: -0.018em;
  color: var(--bh-paper); margin: 0;
}
.bh-pillar-cinematic__copy p {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-widest);
  font-size: 11px; color: var(--bh-beige); opacity: 0.85; margin: 24px 0 0;
}

.bh-pillar__lead {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(20px, 1.9vw, 27px); line-height: 1.4; letter-spacing: -0.005em;
  color: var(--fg-1); margin: 0;
}
.bh-pillar__lead em { font-style: italic; }
.bh-pillar-section--clay .bh-pillar__lead,
.bh-pillar-section--olive .bh-pillar__lead,
.bh-pillar-section--sand .bh-pillar__lead { color: var(--bh-paper); }

.bh-pillar__body {
  font-family: var(--font-serif);
  font-size: 14.5px; line-height: 1.75; color: var(--fg-1); margin: 0;
  max-width: 60ch;
}
.bh-pillar-section--clay .bh-pillar__body,
.bh-pillar-section--olive .bh-pillar__body,
.bh-pillar-section--sand .bh-pillar__body { color: var(--bh-beige); }

/* Opening statement */
.bh-pillar-statement__inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; gap: 48px;
}
.bh-pillar-statement__lead { font-style: italic; }
.bh-pillar-statement__bodies { display: flex; flex-direction: column; gap: 22px; max-width: 640px; }
/* Tighter variant — pulls the CTA closer to the body copy (off-sites intro) */
.bh-pillar-statement--tight .bh-pillar-statement__inner { gap: 28px; }
.bh-pillar-statement--tight .bh-pillar-statement__cta { margin-top: 0; }
.bh-pillar-statement__cta { margin-top: 12px; }

/* Photo essay (premium asymmetric image-led gallery) */
.bh-pillar-essay { padding-left: 0; padding-right: 0; }
.bh-pillar-essay__inner { max-width: 1640px; margin: 0 auto; padding: 0 var(--pad-x); }
.bh-pillar-essay__head { max-width: 880px; margin: 0 auto 88px; text-align: center; }
.bh-pillar-essay__head .bh-pillar__meta { justify-content: center; }
.bh-pillar-essay__head .bh-pillar__h2 { margin-top: 14px; }

/* Asymmetric grid gallery */
.bh-pillar-essay__gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(40px, 4.5vw, 72px);
  grid-auto-rows: auto;
}
.bh-pillar-essay__item {
  margin: 0; display: flex; flex-direction: column; gap: 16px; cursor: pointer;
}
.bh-pillar-essay__item--wide {
  grid-column: 1 / -1;
}

/* "View more" toggle — hide tagged items until expanded.
   display:none removes them from the grid entirely so the layout stays clean. */
.bh-pillar-essay__item--more { display: none; }
.bh-pillar-essay__gallery.is-expanded .bh-pillar-essay__item--more { display: flex; }

/* Toggle button — left-aligned with the gallery's first column edge */
.bh-pillar-essay__more-toggle {
  display: flex; justify-content: flex-start;
  margin-top: 56px;
}
.bh-pillar-essay__more-toggle [aria-expanded="true"] svg { transform: rotate(180deg); }
.bh-pillar-essay__more-toggle svg { transition: transform 0.25s var(--ease-out); }
.bh-pillar-essay__item--landscape {
  grid-column: span 4;
}
.bh-pillar-essay__item--portrait {
  grid-column: span 2;
}

.bh-pillar-essay__img-wrap {
  position: relative; overflow: hidden;
  /* Grow to fill the grid cell so shorter items don't leave white space below.
     Aspect-ratio still sets the intrinsic height (so rows size correctly); the
     image uses background cover, so filling crops rather than distorts. */
  flex-grow: 1;
}
.bh-pillar-essay__img-wrap--landscape { aspect-ratio: 4/3; }
.bh-pillar-essay__img-wrap--portrait  { aspect-ratio: 3/4; }
.bh-pillar-essay__img-wrap--wide      { aspect-ratio: 16/7; }

.bh-pillar-essay__img {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 800ms var(--ease-out);
}
.bh-pillar-essay__item:hover .bh-pillar-essay__img { transform: scale(1.02); }
.bh-pillar-essay__item:hover .bh-pillar-essay__caption { color: var(--fg-1); }

.bh-pillar-essay__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}

.bh-pillar-essay__caption {
  font-family: var(--font-serif); font-style: italic; font-size: 14px; line-height: 1.6;
  color: var(--fg-2); margin: 0; max-width: 100%;
  padding: 0; transition: color 300ms var(--ease-out);
  /* Reserve a uniform 2 lines so a longer caption doesn't steal height from its
     image — keeps paired images in a row the same height (bottom-aligned). */
  min-height: 3.2em;
}

/* Gallery lightbox */
.bh-gallery-lightbox {
  position: fixed; inset: 0; z-index: 99; display: none;
  flex-direction: column; align-items: center; justify-content: center;
  padding: 24px;
  overflow-y: auto;
}
.bh-gallery-lightbox.is-open { display: flex; }
.bh-gallery-lightbox__scrim {
  position: fixed; inset: 0;
  background: rgba(31, 29, 26, 0.95);
  backdrop-filter: blur(4px);
  z-index: 0;
}
.bh-gallery-lightbox__content {
  position: relative; z-index: 1;
  width: 100%; max-width: 1200px; max-height: 75vh;
  display: flex; flex-direction: column; gap: 24px;
  margin: auto;
}
.bh-gallery-lightbox__image {
  position: relative; aspect-ratio: 16/10;
  overflow: hidden; 
  width: 100%; max-height: 50vh;
}
.bh-gallery-lightbox__img {
  position: absolute; inset: 0;
  background-size: contain; background-repeat: no-repeat; background-position: center;
  background-color: rgba(0,0,0,0.3);
}
.bh-gallery-lightbox__video {
  width: 100%; height: 100%; object-fit: contain; background-color: rgba(0,0,0,0.3);
}
.bh-gallery-lightbox__info {
  display: flex; flex-direction: column; gap: 20px; align-items: flex-start;
}
.bh-gallery-lightbox__caption {
  font-family: var(--font-serif); font-style: italic; font-size: 16px; line-height: 1.6;
  color: var(--bh-paper); margin: 0; max-width: 70ch;
}
.bh-gallery-lightbox__nav {
  display: flex; align-items: center; gap: 32px;
}
.bh-gallery-lightbox__counter {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-wider);
  font-size: 11px; color: var(--bh-beige); opacity: 0.8; min-width: 60px;
}
.bh-gallery-lightbox__arrow {
  width: 48px; height: 48px;
  border-radius: 999px; border: 1px solid rgba(247,245,238,0.3);
  background: transparent; color: var(--bh-paper);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 240ms var(--ease-out);
}
.bh-gallery-lightbox__arrow:hover {
  background: rgba(247,245,238,0.1); border-color: rgba(247,245,238,0.6);
}
.bh-gallery-lightbox__close {
  position: absolute; top: 20px; right: 20px; z-index: 2;
  width: 40px; height: 40px;
  border-radius: 999px; border: 1px solid rgba(247,245,238,0.3);
  background: rgba(31,29,26,0.6); color: var(--bh-paper);
  font-size: 24px; line-height: 1; cursor: pointer;
  transition: all 240ms var(--ease-out);
}
.bh-gallery-lightbox__close:hover {
  background: rgba(31,29,26,0.8); border-color: rgba(247,245,238,0.6);
}

/* Capacity section — image-led scrollable carousel */
.bh-pillar-capacity { padding-left: 0; padding-right: 0; }
.bh-pillar-capacity__inner { max-width: 1640px; margin: 0 auto; }

/* Header with controls */
.bh-pillar-capacity__head {
  display: grid; grid-template-columns: 1fr auto; gap: 32px;
  align-items: end; padding: 0 var(--pad-x); margin: 0 auto 80px;
  max-width: 1280px;
  text-align: left;
}
.bh-pillar-capacity__head > div { text-align: left; }
.bh-pillar-capacity__head h2 {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(28px, 3vw, 44px); line-height: 1.05; letter-spacing: -0.01em;
  color: var(--bh-paper); margin: 16px 0 0;
}
.bh-pillar-capacity__controls { display: flex; gap: 8px; }
.bh-pillar-capacity__controls button {
  width: 48px; height: 48px; border-radius: 999px; border: 1px solid rgba(247,245,238,0.3);
  color: var(--bh-paper); font-size: 18px; background: transparent;
  transition: background var(--dur-base), color var(--dur-base), border-color var(--dur-base);
  cursor: pointer;
}
.bh-pillar-capacity__controls button:hover {
  background: rgba(247,245,238,0.1); border-color: rgba(247,245,238,0.6);
}

/* Scrollable carousel track */
.bh-pillar-capacity__track {
  display: flex; gap: 28px; overflow-x: auto;
  scroll-snap-type: x mandatory; padding: 0 var(--pad-x) 32px;
  scrollbar-width: thin;
}
.bh-pillar-capacity__track::-webkit-scrollbar { height: 4px; }
.bh-pillar-capacity__track::-webkit-scrollbar-thumb { background: rgba(247,245,238,0.25); }

/* Capacity cards */
.bh-pillar-capacity__card {
  flex: 0 0 380px; scroll-snap-align: start;
  display: flex; flex-direction: column; gap: 20px;
  cursor: pointer; transition: transform 300ms var(--ease-out);
}
.bh-pillar-capacity__card:hover { transform: translateY(-2px); }

/* Image container */
.bh-pillar-capacity__image {
  position: relative; aspect-ratio: 3/2;
  background-size: cover; background-position: center;
   overflow: hidden;
  transition: transform 700ms var(--ease-out);
}
.bh-pillar-capacity__card:hover .bh-pillar-capacity__image { transform: scale(1.03); }

/* Info section */
.bh-pillar-capacity__info {
  display: flex; flex-direction: column; gap: 16px;
}
.bh-pillar-capacity__info h3 {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: 20px; line-height: 1.2; letter-spacing: -0.005em;
  color: var(--bh-paper); margin: 0;
}

/* Specs display */
.bh-pillar-capacity__specs {
  display: flex; gap: 28px; flex-wrap: wrap;
}
.bh-pillar-capacity__spec {
  display: flex; flex-direction: column; gap: 6px;
}
.bh-pillar-capacity__spec-label {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-wider);
  font-size: 10px; color: var(--bh-beige); opacity: 0.75;
}
.bh-pillar-capacity__spec-number {
  font-family: var(--font-serif); font-style: italic;
  font-size: 28px; line-height: 1; letter-spacing: -0.01em;
  color: var(--bh-paper);
}

/* Notes and CTA — left-aligned to the carousel's first card via track's pad-x */
.bh-pillar-capacity__note {
  font-family: var(--font-serif); font-style: italic; font-size: 14px; line-height: 1.6;
  color: var(--bh-beige); opacity: 0.85; margin: 0 0 24px; max-width: 70ch;
  padding: 0 var(--pad-x);
}
.bh-pillar-capacity__cta {
  margin: 0; padding: 0 var(--pad-x);
  text-align: left;
}
.bh-pillar-capacity__cta a { color: var(--bh-paper); border-bottom-color: rgba(247,245,238,0.5); }
.bh-pillar-capacity__cta a:hover { color: var(--bh-beige); border-bottom-color: var(--bh-paper); }

/* Inclusions */
.bh-pillar-inclusions__inner { max-width: 1280px; margin: 0 auto; }
.bh-pillar-inclusions__head { max-width: 720px; margin-bottom: 72px; }
.bh-pillar-inclusions__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px 80px;
}
.bh-pillar-inclusions__group h3 {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: 22px; line-height: 1.1; letter-spacing: -0.005em;
  color: var(--fg-heading); margin: 0 0 20px;
  padding-bottom: 16px; border-bottom: 1px solid var(--line-1);
}
.bh-pillar-inclusions__group ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.bh-pillar-inclusions__group li {
  font-family: var(--font-serif); font-size: 15px; line-height: 1.55;
  color: var(--fg-1); padding-left: 22px; position: relative;
}
.bh-pillar-inclusions__group li::before {
  content: ""; position: absolute; left: 0; top: 0.6em;
  width: 12px; height: 1px; background: var(--bh-clay-deep);
}

/* Run of day — animated hour-by-hour timeline */
.bh-pillar-runsheet__inner { max-width: 1280px; margin: 0 auto; }
.bh-pillar-runsheet__head { max-width: 720px; margin-bottom: 72px; }
.bh-pillar-runsheet__timeline {
  list-style: none; padding: 0 0 0 32px; margin: 0;
  position: relative;
  border-top: 1px solid var(--line-1);
}
/* Vertical line that draws as the section enters view */
.bh-pillar-runsheet__timeline::before {
  content: ""; position: absolute; left: 4px; top: 0; bottom: 0;
  width: 1px; background: var(--line-2);
  transform-origin: top; transform: scaleY(0);
  animation: runsheet-line 1400ms var(--ease-out) both;
  animation-timeline: view();
  animation-range: entry 0% cover 70%;
}
@keyframes runsheet-line { to { transform: scaleY(1); } }

.bh-pillar-runsheet__row {
  position: relative;
  display: grid; grid-template-columns: 220px 1fr; gap: 64px;
  padding: 32px 0; border-bottom: 1px solid var(--line-1);
  align-items: baseline;
  opacity: 0; transform: translateY(20px);
  animation: runsheet-row-in 800ms var(--ease-out) both;
  animation-timeline: view();
  animation-range: entry 5% cover 28%;
}
.bh-pillar-runsheet__row::before {
  content: ""; position: absolute; left: -32px; top: 44px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--bh-clay-deep); border: 2px solid var(--bh-paper);
  box-shadow: 0 0 0 1px var(--line-2);
  opacity: 0; transform: scale(0.4);
  animation: runsheet-dot-in 700ms var(--ease-out) 120ms both;
  animation-timeline: view();
  animation-range: entry 5% cover 28%;
}
.bh-pillar-section--beige .bh-pillar-runsheet__row::before { border-color: var(--bg-page); }

@keyframes runsheet-row-in { to { opacity: 1; transform: translateY(0); } }
@keyframes runsheet-dot-in { to { opacity: 1; transform: scale(1); } }

@supports not (animation-timeline: view()) {
  .bh-pillar-runsheet__timeline::before { transform: scaleY(1); animation: none; }
  .bh-pillar-runsheet__row { opacity: 1; transform: none; animation: none; }
  .bh-pillar-runsheet__row::before { opacity: 1; transform: scale(1); animation: none; }
}
@media (prefers-reduced-motion: reduce) {
  .bh-pillar-runsheet__timeline::before { transform: scaleY(1); animation: none; }
  .bh-pillar-runsheet__row { opacity: 1; transform: none; animation: none; }
  .bh-pillar-runsheet__row::before { opacity: 1; transform: scale(1); animation: none; }
}

/* When GSAP is driving animations, suppress competing CSS animations on the
   elements GSAP controls. Initial state is set inline by gsap.set() before paint.
   Pseudo-elements (line, dots) can't be GSAP-targeted, so we reset them to
   their final visible state and let the row stagger carry the storytelling. */
body.gsap-ready .bh-pillar-section,
body.gsap-ready .bh-pillar-cinematic,
body.gsap-ready .bh-pillar-brochure { animation: none; }
body.gsap-ready .bh-pillar-runsheet__row { animation: none; }
body.gsap-ready .bh-pillar-runsheet__timeline::before {
  animation: none; transform: scaleY(1);
}
body.gsap-ready .bh-pillar-runsheet__row::before {
  animation: none; opacity: 1; transform: scale(1);
}

/* Homepage CSS scroll-driven animations also stand down when GSAP runs. */
body.gsap-ready .bh-welcome,
body.gsap-ready .bh-pillars,
body.gsap-ready .bh-spaces,
body.gsap-ready .bh-map,
body.gsap-ready .bh-press,
body.gsap-ready .bh-sust,
body.gsap-ready .bh-edm { animation: none; }

.bh-pillar-runsheet__time { display: flex; flex-direction: column; gap: 4px; }
.bh-pillar-runsheet__day {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-widest);
  font-size: 11px; color: var(--fg-3);
}
.bh-pillar-runsheet__hour {
  font-family: var(--font-serif); font-style: italic;
  font-size: 32px; line-height: 1.05; letter-spacing: -0.012em;
  color: var(--fg-heading);
}
.bh-pillar-runsheet__copy {
  font-family: var(--font-serif); font-size: 14.5px; line-height: 1.65; color: var(--fg-1);
  max-width: 56ch; margin: 0;
}
.bh-pillar-runsheet__note {
  font-family: var(--font-serif); font-style: italic; font-size: 14px;
  color: var(--fg-3); margin-top: 32px; max-width: 56ch;
}

/* Testimonials — scrollable card carousel */
.bh-pillar-testimonials { padding-left: 0; padding-right: 0; }
.bh-pillar-testimonials__inner { max-width: 1640px; margin: 0 auto; }
.bh-pillar-testimonials__head {
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: end;
  padding: 0 var(--pad-x); margin-bottom: 80px;
  max-width: 1280px; margin-left: auto; margin-right: auto;
}
.bh-pillar-testimonials__head .bh-pillar__h2 {
  font-size: clamp(24px, 2.4vw, 36px);
}
.bh-pillar-testimonials__controls { display: flex; gap: 8px; }
.bh-pillar-testimonials__controls button {
  width: 48px; height: 48px; border-radius: 999px;
  border: 1px solid rgba(247,245,238,0.45);
  color: var(--bh-paper); font-size: 18px; background: transparent;
  transition: background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.bh-pillar-testimonials__controls button:hover {
  background: var(--bh-paper); color: var(--bh-clay-deep); border-color: var(--bh-paper);
}
.bh-pillar-testimonials__track {
  display: flex; gap: 32px; overflow-x: auto;
  scroll-snap-type: x mandatory; scroll-padding-left: var(--pad-x);
  padding: 0 var(--pad-x) 28px;
  scrollbar-width: thin;
}
.bh-pillar-testimonials__track::-webkit-scrollbar { height: 4px; }
.bh-pillar-testimonials__track::-webkit-scrollbar-thumb { background: rgba(247,245,238,0.25); }
.bh-pillar-testimonial {
  flex: 0 0 min(540px, 84vw); scroll-snap-align: start;
  display: flex; flex-direction: column; gap: 32px;
  padding: 40px 36px 32px;
  background: rgba(31,29,26,0.4);
  border: 1px solid rgba(247,245,238,0.2);
  margin: 0;
}
.bh-pillar-testimonial__quote {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(14px, 1.1vw, 18px); line-height: 1.6; letter-spacing: -0.005em;
  color: var(--bh-paper); margin: 0;
}
.bh-pillar-testimonial__attr {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-wider);
  font-size: 11px; color: var(--bh-beige); opacity: 0.75; margin: 0;
  display: flex; flex-direction: column; gap: 4px; margin-top: auto;
}
.bh-pillar-testimonial__attr em {
  font-family: var(--font-serif); font-style: italic; text-transform: none; letter-spacing: 0;
  font-size: 16px; color: var(--bh-paper); opacity: 1;
}

/* Brochure CTA — early-page lead capture */
.bh-pillar-brochure {
  position: relative; overflow: hidden; padding: 0;
}
.bh-pillar-brochure__inner {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr; min-height: 540px;
}
.bh-pillar-brochure__visual {
  position: relative; overflow: hidden; min-height: 460px;
}
.bh-pillar-brochure__visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,29,26,0.05) 0%, rgba(31,29,26,0.25) 100%);
}
.bh-pillar-brochure__photo {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.bh-pillar-brochure__copy {
  background: var(--bh-paper);
  padding: 88px var(--pad-x);
  display: flex; flex-direction: column; justify-content: center; gap: 18px;
}
/* CTA hugs its text (auto width) like the rest of the site, not stretched full-width */
.bh-pillar-brochure__copy .bh-cta-pill { align-self: flex-start; }
.bh-pillar-brochure__copy h2 {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(28px, 2.8vw, 40px); line-height: 1.1; letter-spacing: -0.01em;
  color: var(--fg-heading); margin: 12px 0 4px;
}
.bh-pillar-brochure__copy h2 em { font-style: italic; }
.bh-pillar-brochure__copy p {
  font-family: var(--font-serif); font-size: 15px; line-height: 1.65;
  color: var(--fg-1); margin: 0; max-width: 44ch;
}
.bh-pillar-brochure__form {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 12px;
}
.bh-pillar-brochure__form input {
  flex: 1 1 240px; min-width: 180px;
  font-family: var(--font-serif); font-size: 16px; padding: 12px 0;
  background: transparent; border: 0; border-bottom: 1px solid var(--line-2);
  color: var(--fg-heading); outline: none;
  transition: border-color 180ms var(--ease-out);
}
.bh-pillar-brochure__form input::placeholder { color: var(--fg-3); }
.bh-pillar-brochure__form input:focus { border-bottom-color: var(--bh-clay-deep); }
.bh-pillar-brochure__legal {
  display: none; /* "Unsubscribe in one click" removed site-wide */
  font-family: var(--font-serif); font-style: italic; font-size: 12px;
  color: var(--fg-3); margin: 8px 0 0; line-height: 1.5;
}
.bh-pillar-brochure__success {
  display: none; font-family: var(--font-serif); font-size: 14.5px; line-height: 1.6;
  color: var(--fg-heading); margin: 12px 0 0;
}
.bh-pillar-brochure__success em { font-style: italic; font-size: 22px; display: block; margin-bottom: 6px; }
.bh-pillar-brochure.is-submitted .bh-pillar-brochure__form,
.bh-pillar-brochure.is-submitted .bh-pillar-brochure__legal { display: none; }
.bh-pillar-brochure.is-submitted .bh-pillar-brochure__success { display: block; }

/* Pricing */
.bh-pillar-pricing__inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: start;
}
.bh-pillar-pricing__from {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(36px, 4vw, 56px); line-height: 1.05; letter-spacing: -0.014em;
  color: var(--fg-heading); margin: 32px 0 14px;
  padding-top: 28px; border-top: 1px solid var(--line-1);
}
.bh-pillar-pricing__from sup {
  font-family: var(--font-display); font-style: normal; font-weight: 400;
  font-size: 11px; letter-spacing: var(--tracking-wider); vertical-align: super;
  margin-right: 10px; opacity: 0.6; color: var(--fg-3);
}
.bh-pillar-pricing__from-meta {
  font-family: var(--font-serif); font-size: 15px; line-height: 1.6;
  color: var(--fg-2); margin: 0 0 24px; max-width: 36ch;
}
.bh-pillar-pricing__factors h3 {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-widest);
  font-size: 11px; color: var(--fg-3); margin: 0 0 24px; font-weight: 400;
}
.bh-pillar-pricing__factors ul {
  list-style: none; padding: 0; margin: 0;
}
.bh-pillar-pricing__factors li {
  font-family: var(--font-serif); font-size: 14.5px; line-height: 1.5; color: var(--fg-1);
  padding: 18px 0; border-bottom: 1px solid var(--line-1);
}
.bh-pillar-pricing__factors li:last-child { border-bottom: 0; }
.bh-pillar-pricing__factors li em { font-style: italic; color: var(--bh-clay-deep); }

/* Embedded enquiry */
.bh-pillar-enquire__inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: start;
}
.bh-pillar-enquire__copy h2 { color: var(--bh-paper); }
.bh-pillar-enquire__copy p {
  font-family: var(--font-serif); font-size: 14.5px; line-height: 1.7;
  color: var(--bh-beige); max-width: 44ch; margin: 24px 0 0;
}
.bh-pillar-enquire__form { display: flex; flex-direction: column; gap: 0; padding-top: 6px; }
.bh-pillar-enquire__fields { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 24px; }
.bh-pillar-enquire__field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.bh-pillar-enquire__field--full { grid-column: 1 / -1; }
.bh-pillar-enquire__field span {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-wider);
  font-size: 10px; color: var(--bh-beige); opacity: 0.78;
}
.bh-pillar-enquire__field span em { font-style: italic; text-transform: none; letter-spacing: 0; opacity: 0.7; }
.bh-pillar-enquire__field input,
.bh-pillar-enquire__field select,
.bh-pillar-enquire__field textarea {
  font-family: var(--font-serif); font-size: 16px; padding: 10px 0;
  background: transparent; border: 0; border-bottom: 1px solid rgba(247,245,238,0.35);
  color: var(--bh-paper); outline: none; width: 100%; resize: vertical;
  transition: border-color 180ms var(--ease-out);
}
/* Strip OS chrome from the native select and replace the dropdown arrow
   with a paper-toned chevron so the closed state matches the other inputs. */
.bh-pillar-enquire__field select {
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  padding-right: 28px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2 4l4 4 4-4' stroke='%23f7f5ee' stroke-width='1.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  cursor: pointer;
}
.bh-pillar-enquire__field input::placeholder,
.bh-pillar-enquire__field textarea::placeholder { color: rgba(247,245,238,0.4); }
.bh-pillar-enquire__field input:hover,
.bh-pillar-enquire__field select:hover,
.bh-pillar-enquire__field textarea:hover { border-bottom-color: var(--bh-beige); }
.bh-pillar-enquire__field input:focus,
.bh-pillar-enquire__field select:focus,
.bh-pillar-enquire__field textarea:focus { border-bottom-color: var(--bh-paper); }
/* Option list (the open dropdown) — render on paper bg with dark text */
.bh-pillar-enquire__field select option {
  color: var(--fg-1);
  background: var(--bh-paper);
  font-family: var(--font-serif);
  padding: 10px 14px;
}

/* Custom-select inside the pillar enquire form (dark sand background).
   Trigger renders in paper-tone to match the input fields above; the
   dropdown list keeps its standard paper bg with dark serif options. */
.bh-pillar-enquire__field .bh-custom-select {
  width: 100%;
}
.bh-pillar-enquire__field .bh-custom-select__trigger {
  font-family: var(--font-serif); font-size: 16px;
  padding: 10px 0; padding-right: 28px;
  background: transparent; border: 0; border-bottom: 1px solid rgba(247,245,238,0.35);
  color: rgba(247,245,238,0.6); width: 100%; cursor: pointer; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
  transition: border-color 180ms var(--ease-out), color 180ms var(--ease-out);
}
.bh-pillar-enquire__field .bh-custom-select__trigger:hover,
.bh-pillar-enquire__field .bh-custom-select[aria-expanded="true"] .bh-custom-select__trigger {
  border-bottom-color: var(--bh-paper); color: var(--bh-paper);
}
.bh-pillar-enquire__field .bh-custom-select__trigger.has-value { color: var(--bh-paper); }
.bh-pillar-enquire__field .bh-custom-select__chevron {
  flex-shrink: 0; color: var(--bh-paper); opacity: 0.7;
}
.bh-pillar-enquire__field .bh-custom-select__list {
  background: var(--bh-paper); color: var(--fg-1);
  border: 1px solid rgba(31,29,26,0.08);
  box-shadow: 0 6px 18px rgba(31,29,26,0.12);
}
.bh-pillar-enquire__field .bh-custom-select__option {
  font-family: var(--font-serif); color: var(--fg-1);
  font-size: 15px; padding: 11px 18px; cursor: pointer;
  transition: background 100ms;
}
.bh-pillar-enquire__field .bh-custom-select__option:hover {
  background: var(--bh-beige); color: var(--fg-heading);
}
.bh-pillar-enquire__field .bh-custom-select__option[aria-selected="true"] {
  color: var(--bh-clay-deep);
}
/* Keep the field with an open dropdown above sibling fields */
.bh-pillar-enquire__field:has(.bh-custom-select[aria-expanded="true"]) { z-index: 50; position: relative; }
.bh-pillar-enquire__actions {
  grid-column: 1 / -1;
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px;
  margin-top: 16px;
}
/* Send Enquiry button uses the canonical site-wide bh-cta-pill style
   (solid clay-deep fill, beige text) — matches every other CTA on the site. */
.bh-pillar-enquire__legal {
  font-family: var(--font-serif); font-style: italic; font-size: 12px; line-height: 1.5;
  color: var(--bh-beige); opacity: 0.78; margin: 0; max-width: 38ch;
}
.bh-pillar-enquire__success {
  display: none; font-family: var(--font-serif);
  padding: 36px; background: rgba(247,245,238,0.06); border: 1px solid rgba(247,245,238,0.2);
  flex-direction: column; gap: 12px; color: var(--bh-paper);
}
.bh-pillar-enquire__success em { font-style: italic; font-size: 26px; line-height: 1.1; }
.bh-pillar-enquire__form.is-submitted .bh-pillar-enquire__fields { display: none; }
.bh-pillar-enquire__form.is-submitted .bh-pillar-enquire__success { display: flex; }

/* Property page — interactive map intro + stay sections */
.bh-property-map { padding: 120px var(--pad-x) 0; }
.bh-property-map__head {
  max-width: 1280px; margin: 0 auto 64px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 0;
}
.bh-property-map__head .bh-pillar__meta { margin-bottom: 20px; }
.bh-property-map__head h2 {
  font-family: var(--font-serif); font-weight: 400; margin: 0 0 24px;
  font-size: clamp(40px, 4.4vw, 64px); line-height: 1.02; letter-spacing: -0.018em; color: var(--fg-1);
  max-width: 16ch;
}
.bh-property-map__head h2 em { font-style: italic; }
.bh-property-map__head p {
  font-family: var(--font-serif); font-size: 15.5px; line-height: 1.7; color: var(--fg-2);
  max-width: 56ch; margin: 0;
}
.bh-property-map .bh-map__visual--fullbleed {
  width: 100vw; max-width: none;
  aspect-ratio: 2400 / 1345;
  height: auto; min-height: 0; max-height: none;
  margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
  border-left: 0; border-right: 0; border-top: 0; border-bottom: 0;
  background: var(--bh-clay-deep) url('assets/photos/property-aerial.jpg') center/cover no-repeat;
}
.bh-property-map .bh-map__paper,
.bh-property-map .bh-map__river,
.bh-property-map .bh-map__compass,
.bh-property-map .bh-map__legend { display: none; }

/* Homepage map — photo variant (keeps the right-aligned 2-col layout) */
.bh-map--photo .bh-map__visual {
  aspect-ratio: 2400 / 1345;
  background: var(--bh-clay-deep) url('assets/photos/property-aerial.jpg') center/cover no-repeat;
  border: 0;
}
.bh-map--photo .bh-map__visual::before {
  background: linear-gradient(180deg, rgba(31,29,26,0.45) 0%, rgba(31,29,26,0.15) 30%, rgba(31,29,26,0.15) 65%, rgba(31,29,26,0.5) 100%);
}
.bh-map--photo .bh-map__paper,
.bh-map--photo .bh-map__river,
.bh-map--photo .bh-map__compass,
.bh-map--photo .bh-map__legend { display: none; }
.bh-property-map .bh-map__visual::before {
  background: linear-gradient(180deg, rgba(31,29,26,0.5) 0%, rgba(31,29,26,0.18) 25%, rgba(31,29,26,0.18) 65%, rgba(31,29,26,0.55) 100%);
}
.bh-property-map .bh-map__compass,
.bh-property-map .bh-map__legend { color: var(--bh-paper); }

/* Dedicated map page — photo variant (matches index/property aerial) */
.bh-mappage .bh-map__visual--fullbleed {
  aspect-ratio: 2400 / 1345;
  height: auto; min-height: 0; max-height: none;
  background: var(--bh-clay-deep) url('assets/photos/property-aerial.jpg') center/cover no-repeat;
}
.bh-mappage .bh-map__paper,
.bh-mappage .bh-map__river,
.bh-mappage .bh-map__compass,
.bh-mappage .bh-map__legend { display: none; }
.bh-mappage .bh-map__visual--fullbleed::before {
  background: linear-gradient(180deg, rgba(31,29,26,0.5) 0%, rgba(31,29,26,0.18) 25%, rgba(31,29,26,0.18) 65%, rgba(31,29,26,0.55) 100%);
}
@media (max-width: 980px) {
  .bh-property-map { padding: 88px var(--pad-x) 0; }
  .bh-property-map__head { margin-bottom: 40px; }
  .bh-property-map__head h2 { font-size: clamp(32px, 7vw, 48px); margin-bottom: 18px; }
  .bh-property-map__head p { font-size: 14.5px; }
  .bh-property-map .bh-map__visual--fullbleed { height: 62vh; min-height: 440px; }
}
@media (max-width: 540px) {
  .bh-property-map { padding: 64px var(--pad-x) 0; }
  .bh-property-map .bh-map__visual--fullbleed { height: 56vh; min-height: 380px; }
}

/* Property page — accommodation Stay sections */
.bh-stay { padding: 144px var(--pad-x); }
.bh-stay__inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.25fr 1fr; gap: 88px; align-items: start;
}
.bh-stay--alt .bh-stay__inner { grid-template-columns: 1fr 1.25fr; }
.bh-stay__gallery {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  grid-auto-flow: dense;
}
.bh-stay__gallery figure { margin: 0; }
.bh-stay__gallery figure > div {
  width: 100%; aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  transition: transform var(--dur-slow) var(--ease-out);
}
.bh-stay__gallery figure:hover > div { transform: scale(1.02); }
.bh-stay__hero { grid-column: 1 / -1; }
.bh-stay__hero > div { aspect-ratio: 3/2; }
.bh-stay__gallery--three { grid-template-columns: repeat(2, 1fr); }
.bh-stay__gallery--three .bh-stay__hero { grid-column: 1 / -1; }
.bh-stay__gallery--three figure:not(.bh-stay__hero) > div { aspect-ratio: 4/5; }

.bh-stay__copy { padding-top: 8px; position: sticky; top: 120px; }
.bh-stay__copy h2 {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(40px, 4.4vw, 64px); line-height: 1.02; letter-spacing: -0.018em;
  color: var(--fg-1); margin: 16px 0 24px;
}
.bh-stay__copy h2 em { font-style: italic; }
.bh-stay__lead {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(18px, 1.45vw, 22px); line-height: 1.5; color: var(--fg-1);
  margin: 0 0 20px;
}
.bh-stay__copy p {
  font-family: var(--font-serif); font-size: 14.5px; line-height: 1.85;
  color: var(--fg-2); margin: 0 0 18px; max-width: 52ch;
}
.bh-stay__specs {
  margin: 32px 0 28px; padding: 28px 0 4px;
  border-top: 1px solid var(--line-1);
  display: grid; gap: 14px;
}
.bh-stay__specs > div {
  display: grid; grid-template-columns: 140px 1fr; gap: 18px;
  padding-bottom: 14px; border-bottom: 1px solid var(--line-2);
}
.bh-stay__specs dt {
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: var(--tracking-wider); font-size: 11px; color: var(--fg-3);
}
.bh-stay__specs dd {
  font-family: var(--font-serif); font-size: 15px; line-height: 1.5;
  color: var(--fg-1); margin: 0;
}
@media (max-width: 980px) {
  .bh-stay { padding: 96px var(--pad-x); }
  .bh-stay__inner, .bh-stay--alt .bh-stay__inner { grid-template-columns: 1fr; gap: 48px; }
  .bh-stay--alt .bh-stay__copy { order: 0; }
  .bh-stay--alt .bh-stay__gallery { order: -1; }   /* image above text on mobile, like the other stay blocks */
  .bh-stay__copy { position: static; }
  .bh-stay__specs > div { grid-template-columns: 120px 1fr; gap: 14px; }
}
@media (max-width: 480px) {
  .bh-stay__specs > div { grid-template-columns: 1fr; gap: 4px; padding-bottom: 16px; }
}

/* Off-sites Activities & Experiences — full-bleed photo break */
.bh-offsites-activities {
  position: relative; overflow: hidden;
  padding: 168px var(--pad-x);
  color: var(--bh-paper);
}
.bh-offsites-activities__photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
}
.bh-offsites-activities__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(31,29,26,0.55) 0%, rgba(31,29,26,0.35) 35%, rgba(31,29,26,0.35) 65%, rgba(31,29,26,0.65) 100%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.04 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.bh-offsites-activities__inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
}
.bh-offsites-activities .bh-pillar__eyebrow { color: var(--bh-beige); }
.bh-offsites-activities .bh-pillar__index { color: var(--bh-beige); }
.bh-offsites-activities__title {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(40px, 4.4vw, 64px); line-height: 1.02; letter-spacing: -0.018em;
  color: var(--bh-paper); margin: 0 0 24px; max-width: 18ch;
}
.bh-offsites-activities__title em { font-style: italic; }
.bh-offsites-activities__body {
  font-family: var(--font-serif); font-size: 15.5px; line-height: 1.75;
  color: var(--bh-beige); max-width: 60ch; margin: 0 0 40px;
}
.bh-offsites-activities__list {
  list-style: none; padding: 0; margin: 0 0 48px;
  display: flex; flex-wrap: wrap; gap: 10px 12px;
}
.bh-offsites-activities__list li {
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: var(--tracking-wider); font-size: 12px;
  color: var(--bh-paper);
  padding: 12px 20px;
  border: 1px solid rgba(247,245,238,0.4);
  background: rgba(31,29,26,0.18); backdrop-filter: blur(4px);
  transition: background var(--dur-base), border-color var(--dur-base);
}
.bh-offsites-activities__list li:hover {
  background: rgba(247,245,238,0.12); border-color: rgba(247,245,238,0.7);
}
.bh-offsites-activities__cta { margin: 0; }
.bh-offsites-activities__cta .bh-cta-text { color: var(--bh-beige); }
.bh-offsites-activities__cta .bh-cta-text:hover { color: var(--bh-paper); }
@media (max-width: 720px) {
  .bh-offsites-activities { padding: 96px var(--pad-x); }
  .bh-offsites-activities__title { font-size: clamp(34px, 9vw, 48px); }
  .bh-offsites-activities__body { font-size: 14.5px; margin-bottom: 32px; }
  .bh-offsites-activities__list { gap: 8px 10px; margin-bottom: 36px; }
  .bh-offsites-activities__list li { padding: 10px 16px; font-size: 11px; }
}

/* Off-sites — Stay Together & Trusted Team responsive padding */
@media (max-width: 720px) {
  #accommodation { padding: 80px var(--pad-x) !important; }
  #accommodation > div > h2 { font-size: clamp(28px, 7vw, 36px) !important; margin-bottom: 16px !important; }
  #accommodation > div > p { margin-bottom: 48px !important; }
  #accommodation > div > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important; gap: 24px !important;
  }
  #trusted-team { padding: 80px var(--pad-x) !important; }
  #trusted-team > div > h2 { font-size: clamp(28px, 7vw, 36px) !important; }
}

/* Contact page — site-visit calendar widget */
.bh-visit-calendar {
  display: flex; flex-direction: column;
  background: rgba(247,245,238,0.05);
  border: 1px solid rgba(247,245,238,0.18);
  padding: 28px;
}
.bh-visit-calendar__widget {
  min-width: 320px; width: 100%; min-height: 720px;
  background: var(--bh-paper);
}
@media (max-width: 720px) {
  .bh-visit-calendar { padding: 18px; }
  .bh-visit-calendar__widget { min-height: 640px; }
}

/* Contact page — direct contact directory */
.bh-contact { padding: 144px var(--pad-x); }
.bh-contact__inner { max-width: 1280px; margin: 0 auto; }
.bh-contact__head {
  display: flex; flex-direction: column; align-items: flex-start;
  margin-bottom: 72px; max-width: 760px;
}
.bh-contact__head .bh-pillar__meta { margin-bottom: 20px; }
.bh-contact__head h2 {
  font-family: var(--font-serif); font-weight: 400; margin: 0 0 24px;
  font-size: clamp(40px, 4.4vw, 64px); line-height: 1.02; letter-spacing: -0.018em; color: var(--fg-1);
}
.bh-contact__head h2 em { font-style: italic; }
.bh-contact__head p {
  font-family: var(--font-serif); font-size: 15.5px; line-height: 1.7; color: var(--fg-2);
  margin: 0; max-width: 56ch;
}
.bh-contact__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--line-1);
}
.bh-contact__card {
  padding: 40px 36px 44px 0; background: transparent;
  display: flex; flex-direction: column; gap: 14px;
  border-bottom: 1px solid var(--line-1);
  position: relative;
}
.bh-contact__card + .bh-contact__card { padding-left: 36px; }
.bh-contact__card:nth-child(3n+1) { padding-left: 0; }
.bh-contact__card:not(:nth-child(3n))::after {
  content: ""; position: absolute; top: 28px; bottom: 28px; right: 0;
  width: 1px; background: var(--line-1);
}
.bh-contact__label {
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: var(--tracking-widest); font-size: 10px; color: var(--fg-3); margin: 0;
}
.bh-contact__value {
  font-family: var(--font-serif); font-weight: 400; font-size: 24px; line-height: 1.2;
  letter-spacing: -0.005em; color: var(--fg-1); margin: 0; text-decoration: none;
  transition: color var(--dur-base);
}
a.bh-contact__value:hover { color: var(--bh-clay-deep); }
.bh-contact__value--static { color: var(--fg-1); }
.bh-contact__hint {
  font-family: var(--font-serif); font-style: italic; font-size: 14px; line-height: 1.55;
  color: var(--fg-2); margin: 6px 0 0; max-width: 32ch;
}
@media (max-width: 980px) {
  .bh-contact { padding: 96px var(--pad-x); }
  .bh-contact__head { margin-bottom: 48px; }
  .bh-contact__grid { grid-template-columns: repeat(2, 1fr); }
  .bh-contact__card { padding: 32px 24px 36px 0; }
  .bh-contact__card:nth-child(3n+1) { padding-left: 24px; }
  .bh-contact__card:nth-child(odd) { padding-left: 0; }
  .bh-contact__card:nth-child(even) { padding-left: 24px; }
  .bh-contact__card::after { display: none; }
  .bh-contact__card:nth-child(odd):not(:last-child)::after {
    content: ""; position: absolute; top: 28px; bottom: 28px; right: 0;
    width: 1px; background: var(--line-1); display: block;
  }
}
@media (max-width: 540px) {
  .bh-contact__grid { grid-template-columns: 1fr; }
  .bh-contact__card,
  .bh-contact__card:nth-child(3n+1),
  .bh-contact__card:nth-child(odd),
  .bh-contact__card:nth-child(even) { padding: 28px 0 30px; }
  .bh-contact__card::after,
  .bh-contact__card:nth-child(odd):not(:last-child)::after { display: none; }
}

/* Gallery page — intro (no hero photo, flows into first spread) */
.bh-gal-intro {
  background: var(--bh-paper);
  padding: 168px clamp(32px, 4vw, 64px) 32px;
}
.bh-gal-intro__inner {
  max-width: min(1680px, 94vw); margin: 0 auto;
  display: flex; flex-direction: column; align-items: flex-start;
}
.bh-gal-intro__eyebrow {
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: var(--tracking-widest); font-size: 11px;
  color: var(--fg-3); margin: 0 0 24px;
  display: inline-flex; align-items: center; gap: 14px;
}
.bh-gal-intro__eyebrow::before {
  content: ""; width: 36px; height: 1px; background: var(--line-1);
}
.bh-gal-intro__title {
  font-family: var(--font-serif); font-weight: 400; margin: 0 0 24px;
  font-size: clamp(40px, 4.2vw, 60px); line-height: 1.02; letter-spacing: -0.018em;
  color: var(--fg-1); max-width: none;
}
.bh-gal-intro__title em { font-style: italic; }
.bh-gal-intro__sub {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(16px, 1.45vw, 20px); line-height: 1.55;
  color: var(--fg-2); margin: 0; max-width: 60ch;
}
@media (max-width: 980px) {
  .bh-gal-intro { padding: 132px var(--pad-x) 16px; }
  .bh-gal-intro__title { font-size: clamp(36px, 9vw, 56px); }
  .bh-gal-intro__sub { font-size: 14.5px; }
}

/* Gallery page — editorial spreads */
.bh-gal { padding: 80px clamp(32px, 4vw, 64px) 96px; }
.bh-gal:first-of-type { padding-top: 56px; }
.bh-gal__head {
  max-width: min(1680px, 94vw); margin: 0 auto 44px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
}
.bh-gal__head .bh-pillar__meta { margin: 0; }
.bh-gal__head h2 {
  font-family: var(--font-serif); font-weight: 400; margin: 0;
  font-size: clamp(32px, 3.4vw, 52px); line-height: 1.04; letter-spacing: -0.015em; color: var(--fg-1);
}
.bh-gal__head h2 em { font-style: italic; }
.bh-gal__head p {
  font-family: var(--font-serif); font-size: clamp(15px, 1.1vw, 17px); line-height: 1.7;
  color: var(--fg-2); max-width: 60ch; margin: 0;
}
.bh-gal-spread {
  max-width: min(1680px, 94vw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(12px, 1.2vw, 24px);
  grid-auto-flow: dense;
}
.bh-gal-tile { margin: 0; overflow: hidden; display: flex; }
.bh-gal-tile > div {
  width: 100%; flex: 1; min-height: 0;
  background-size: cover; background-position: center;
  transition: transform var(--dur-slow) var(--ease-out);
}
.bh-gal-tile:hover > div { transform: scale(1.02); }
.bh-gal-tile--w4 { grid-column: span 4; }
.bh-gal-tile--w5 { grid-column: span 5; }
.bh-gal-tile--w6 { grid-column: span 6; }
.bh-gal-tile--w7 { grid-column: span 7; }
.bh-gal-tile--w8 { grid-column: span 8; }
.bh-gal-tile--w12 { grid-column: span 12; }

@media (max-width: 980px) {
  .bh-gal { padding: 72px clamp(20px, 4vw, 40px) 56px; }
  .bh-gal:first-of-type { padding-top: 40px; }
  .bh-gal-intro { padding: 132px clamp(20px, 4vw, 40px) 24px; }
  .bh-gal__head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
  .bh-gal-spread { gap: 12px; grid-template-columns: repeat(6, 1fr); }
  .bh-gal-tile--w4, .bh-gal-tile--w5, .bh-gal-tile--w7, .bh-gal-tile--w8 { grid-column: span 3; }
  .bh-gal-tile--w6, .bh-gal-tile--w12 { grid-column: span 6; }
}
@media (max-width: 540px) {
  .bh-gal { padding: 56px 16px 44px; }
  .bh-gal:first-of-type { padding-top: 32px; }
  .bh-gal-intro { padding: 112px 20px 16px; }
  .bh-gal-spread { grid-template-columns: 1fr; gap: 10px; }
  .bh-gal-tile, .bh-gal-tile--w4, .bh-gal-tile--w5, .bh-gal-tile--w6,
  .bh-gal-tile--w7, .bh-gal-tile--w8, .bh-gal-tile--w12 { grid-column: span 1; }
}

/* Gallery closing CTA */
.bh-gal-cta { padding: 144px var(--pad-x); }
.bh-gal-cta__inner {
  max-width: 720px; margin: 0 auto; text-align: center; color: var(--bh-paper);
}
.bh-gal-cta__inner .bh-pillar__eyebrow { color: var(--bh-beige); margin-bottom: 24px; display: inline-block; }
.bh-gal-cta__inner h2 {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(40px, 5vw, 72px); line-height: 1.02; letter-spacing: -0.018em;
  margin: 0 0 24px; color: var(--bh-paper);
}
.bh-gal-cta__inner h2 em { font-style: italic; }
/* FAQ closing CTA carries a longer line than the gallery CTA, so size it down a notch */
#still .bh-gal-cta__inner h2 { font-size: clamp(30px, 3.4vw, 50px); }
.bh-gal-cta__inner p {
  font-family: var(--font-serif); font-size: 15.5px; line-height: 1.7;
  margin: 0 auto 36px; max-width: 56ch; color: var(--bh-beige);
}
.bh-gal-cta__actions { display: inline-flex; gap: 24px; align-items: center; flex-wrap: wrap; justify-content: center; }
.bh-gal-cta__actions .bh-cta-text { color: var(--bh-beige); }
.bh-gal-cta .bh-cta-pill { background: var(--bh-beige); color: var(--bh-clay-deep); }
.bh-gal-cta .bh-cta-pill:hover { background: var(--bh-paper); }
@media (max-width: 720px) { .bh-gal-cta { padding: 96px var(--pad-x); } }

/* Shoots editorial gallery — 4-up portrait grid */
.bh-shoot-gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.bh-shoot-gallery__item { margin: 0; }
.bh-shoot-gallery__item > div {
  width: 100%; height: 100%; transition: transform var(--dur-slow) var(--ease-out);
}
.bh-shoot-gallery__item:hover > div { transform: scale(1.02); }
@media (max-width: 980px) {
  .bh-shoot-gallery { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 480px) {
  .bh-shoot-gallery { grid-template-columns: 1fr; gap: 16px; }
}

/* Pillar responsive overrides */
@media (max-width: 980px) {
  .bh-pillar-section { padding: 96px var(--pad-x); }
  .bh-pillar-essay__gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .bh-pillar-essay__item--wide {
    grid-column: 1 / -1;
  }
  .bh-pillar-essay__item--landscape {
    grid-column: span 1;
  }
  .bh-pillar-essay__item--portrait {
    grid-column: span 1;
  }
  .bh-pillar-capacity__track { gap: 24px; padding: 0 var(--pad-x) 28px; }
  .bh-pillar-capacity__card { flex: 0 0 340px; }
  .bh-pillar-inclusions__grid { grid-template-columns: 1fr; gap: 48px; }
  .bh-pillar-runsheet__timeline { grid-template-columns: 1fr; gap: 0; }
  .bh-pillar-runsheet__row > * { padding: 20px 0; }
  .bh-pillar-testimonial { grid-template-columns: 1fr; gap: 24px; }
  .bh-pillar-pricing__inner,
  .bh-pillar-enquire__inner { grid-template-columns: 1fr; gap: 56px; }
  .bh-pillar-capacity__table { font-size: 14px; }
  .bh-pillar-capacity__table tbody td:not(:first-child) { font-size: 22px; }
}
@media (max-width: 720px) {
  .bh-pillar-section { padding: 60px 24px; }
  .bh-pillar-hero { min-height: 80vh; height: 80vh; }
  .bh-pillar-hero__content { padding-bottom: 14vh; }
  .bh-pillar-hero__title { font-size: clamp(48px, 14vw, 80px); }
  .bh-pillar-essay__head { margin-bottom: 48px; }
  .bh-pillar-essay__gallery {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .bh-pillar-essay__item--wide,
  .bh-pillar-essay__item--landscape,
  .bh-pillar-essay__item--portrait {
    grid-column: span 1;
  }
  .bh-pillar-essay__caption { font-size: 13px; margin-top: 12px; }
  .bh-pillar-capacity { padding-left: 0; padding-right: 0; }
  .bh-pillar-capacity__head {
    grid-template-columns: 1fr; gap: 24px; padding: 0 24px; margin-bottom: 48px;
  }
  .bh-pillar-capacity__track {
    gap: 20px; padding: 0 24px 28px; margin: 0;
  }
  .bh-pillar-capacity__card { flex: 0 0 min(100%, 300px); }
  .bh-pillar-capacity__spec-number { font-size: 24px; }
  .bh-pillar-capacity__info h3 { font-size: 18px; }
  .bh-gallery-lightbox__content {
    flex-direction: column-reverse; gap: 24px;
  }
  .bh-gallery-lightbox__image { aspect-ratio: 1/1; }
  .bh-gallery-lightbox__info {
    gap: 16px;
  }
  .bh-gallery-lightbox__caption {
    font-size: 16px;
  }
  .bh-pillar-capacity__head { margin-bottom: 48px; }
  .bh-pillar-capacity__table thead th,
  .bh-pillar-capacity__table tbody td { padding: 14px 8px 14px 0; font-size: 14px; }
  .bh-pillar-capacity__table tbody td:first-child { font-size: 16px; }
  .bh-pillar-capacity__table tbody td:not(:first-child) { font-size: 16px; }
  .bh-pillar-enquire__fields { grid-template-columns: 1fr; }
  /* Brochure: stack image over copy on mobile (was locked 50/50, crushing the copy column) */
  .bh-pillar-brochure__inner { grid-template-columns: 1fr; min-height: 0; }
  .bh-pillar-brochure__visual { min-height: 300px; order: 2; }   /* image sits below the copy/form on mobile */
  /* even, intentional rhythm via explicit margins; body fills width (was capped at 44ch, leaving space on the right) */
  .bh-pillar-brochure__copy { padding: 44px var(--pad-x) 48px; gap: 0; justify-content: flex-start; }
  .bh-pillar-brochure__copy .bh-pillar__meta { margin: 0 0 16px; }
  .bh-pillar-brochure__copy h2 { margin: 0 0 14px; }
  .bh-pillar-brochure__copy p { max-width: none; margin: 0 0 16px; }
  .bh-pillar-brochure__copy .bh-cta-pill { margin: 0; }
  /* Runsheet: stack time over copy on mobile (was a rigid 220px + 1fr grid) */
  .bh-pillar-runsheet__row { grid-template-columns: 1fr; gap: 4px; }
}

/* ============== Master Enquiry Modal ============== */
.bh-modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 24px; }
.bh-modal.is-open { display: flex; }
.bh-modal__scrim { position: absolute; inset: 0; background: rgba(31,29,26,0.6); backdrop-filter: blur(3px); }
.bh-modal__panel {
  position: relative; width: 100%; max-width: 760px; max-height: 92vh; overflow-y: auto;
  background: var(--bh-paper); padding: 56px 56px 40px; box-shadow: 0 32px 64px rgba(0,0,0,0.3);
  animation: modal-rise 360ms var(--ease-out);
}
@keyframes modal-rise { from { transform: translateY(16px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.bh-modal__close {
  position: absolute; top: 16px; right: 20px; width: 36px; height: 36px;
  border-radius: 999px; font-size: 24px; line-height: 1; color: var(--fg-2);
}
.bh-modal__close:hover { background: var(--bg-page); color: var(--fg-1); }
.bh-modal__head { margin-bottom: 32px; }
.bh-modal__eyebrow { font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-widest); font-size: 11px; color: var(--fg-3); margin: 0 0 14px; }
.bh-modal__head h2 { font-family: var(--font-serif); font-size: 40px; margin: 0 0 12px; color: var(--fg-heading); font-weight: 400; line-height: 1.1; letter-spacing: -0.01em; }
.bh-modal__head h2 em { font-style: italic; }
.bh-modal__hint { font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-wider); font-size: 11px; color: var(--fg-3); margin: 0; }
.bh-modal__body { display: none; }
.bh-modal__body.is-active { display: block; }
.bh-modal__q { font-family: var(--font-serif); font-size: 15.5px; color: var(--fg-1); margin: 0 0 16px; }
.bh-modal__pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 32px; }
.bh-modal__pill {
  font-family: var(--font-serif); font-size: 16px; padding: 16px 20px; text-align: left;
  border: 1px solid var(--line-2); background: transparent; color: var(--fg-1);
  transition: all var(--dur-base) var(--ease-out); cursor: pointer;
}
.bh-modal__pill:hover { border-color: var(--bh-clay-deep); }
.bh-modal__pill.is-active { background: var(--bh-clay-deep); color: var(--bh-paper); border-color: var(--bh-clay-deep); }
.bh-modal__nav { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; }
.bh-modal__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 24px; margin-bottom: 28px; }
.bh-modal__field { display: flex; flex-direction: column; gap: 6px; }
.bh-modal__field--full { grid-column: 1 / -1; }
.bh-modal__field span { font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-wider); font-size: 10px; color: var(--fg-3); }
.bh-modal__field span em { font-style: italic; text-transform: none; letter-spacing: 0; }
.bh-modal__field input, .bh-modal__field select, .bh-modal__field textarea {
  font-family: var(--font-serif); font-size: 16px; padding: 10px 0;
  background: transparent; border: 0; border-bottom: 1px solid var(--line-2);
  color: var(--fg-heading); outline: none; resize: vertical;
}
.bh-modal__field input:focus, .bh-modal__field select:focus, .bh-modal__field textarea:focus { border-bottom-color: var(--bh-clay-deep); }
.bh-modal__body--done { text-align: center; padding: 40px 20px; }
.bh-modal__body--done h3 { font-family: var(--font-serif); font-size: 48px; margin: 0 0 16px; color: var(--fg-heading); font-weight: 400; }
.bh-modal__body--done h3 em { font-style: italic; }
.bh-modal__body--done p { font-family: var(--font-serif); font-size: 14.5px; line-height: 1.6; color: var(--fg-1); margin: 0 auto 28px; max-width: 440px; }
.bh-modal__body--done a { color: var(--bh-clay-deep); text-decoration: underline; }

/* ============== Responsive ============== */
@media (max-width: 1100px) {
  .bh-header__nav { display: none; }
  .bh-burger {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
  }
  .bh-burger span {
    width: 22px; height: 1.5px; background: var(--bh-beige); position: relative; display: block;
  }
  .bh-burger span::before, .bh-burger span::after {
    content: ""; position: absolute; left: 0; right: 0; height: 1.5px; background: var(--bh-beige);
  }
  .bh-burger span::before { top: -7px; }
  .bh-burger span::after { top: 7px; }
  .bh-header.is-scrolled .bh-burger span,
  .bh-header.is-scrolled .bh-burger span::before,
  .bh-header.is-scrolled .bh-burger span::after { background: var(--bh-clay-deep); }

  .bh-stats__inner { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
  .bh-stat { border-right: 0; border-bottom: 1px solid var(--line-on-dark); padding-right: 0; padding-bottom: 18px; }
  .bh-stat:nth-last-child(-n+2) { border-bottom: 0; padding-bottom: 0; }

  .bh-welcome__inner,
  .bh-pillars__head,
  .bh-spaces__head,
  .bh-map__inner,
  .bh-sust__inner,
  .bh-edm__inner,
  .bh-footer__top { grid-template-columns: 1fr; gap: 32px; }
  .bh-footer__cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .bh-footer__base { grid-template-columns: 1fr; gap: 14px; }

  .bh-pillars__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .bh-pillars__card--5 { grid-column: 1 / -1; }
  /* only the full-width Productions card gets the wider ratio; Private Events matches its row siblings */
  .bh-pillars__card--5 .bh-pillars__media { aspect-ratio: 4/5; }

  .bh-press__inner { grid-template-columns: 1fr; gap: 24px; }
  .bh-press__logos { grid-auto-flow: row; grid-auto-columns: auto; grid-template-columns: 1fr 1fr; }

  .bh-sust__list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .bh-floating--desktop { display: none; }
  .bh-stickybar { display: flex; }
  .bh-hero { min-height: 600px; }
  .bh-hero__copy { padding-bottom: 14vh; }
  /* hide the "scroll to explore" hero cue on mobile (home + pillar heroes) */
  .bh-hero__scroll, .bh-pillar-hero__chrome { display: none; }
  /* weddings gallery: drop the per-image captions on mobile to cut clutter */
  .bh-pillar-essay__caption { display: none; }
  /* trim oversized carousel-section padding on mobile (128/144 desktop is too much here) */
  .bh-spaces { padding-top: 80px; padding-bottom: 96px; }
  .bh-welcome, .bh-pillars, .bh-edm, .bh-footer, .bh-sust, .bh-map, .bh-press { padding-left: 24px; padding-right: 24px; }
  .bh-welcome { padding-top: 80px; padding-bottom: 80px; }
  .bh-pillars { padding-top: 60px; padding-bottom: 80px; }
  .bh-pillars__grid { grid-template-columns: 1fr; gap: 16px; }
  .bh-pillars__card--5 { grid-column: 1; }
  .bh-pillars__card--5 .bh-pillars__media { aspect-ratio: 3/4; }   /* uniform with the rest once stacked single-column */
  /* keep the swipeable horizontal carousel on mobile instead of stacking every card full-width (was a huge vertical run) */
  .bh-spaces__track { gap: 16px; padding: 0 24px 24px; scroll-padding: 0 24px; }
  .bh-spaces__card { flex: 0 0 82%; width: auto; }
  .bh-spaces__end { flex: 0 0 82%; width: auto; aspect-ratio: auto; }
  .bh-spaces__controls { display: none; }  /* swipe instead of arrows on mobile */
  /* once arrows hide, the empty head-right was forcing a phantom grid-row gap
     above a 72px margin = ~112px dead space. Collapse it and tighten the margin. */
  .bh-spaces--editorial .bh-spaces__head-right { display: none; }
  .bh-spaces--editorial .bh-spaces__head { margin-bottom: 40px; }
  .bh-spaces__footer { padding-top: 32px; }
  .bh-edm__form-fields { grid-template-columns: 1fr; }
  .bh-press__logos { grid-template-columns: 1fr; }
  .bh-sust__list { grid-template-columns: 1fr; }
  .bh-modal__panel { padding: 40px 24px 24px; }
  .bh-modal__pillars, .bh-modal__grid { grid-template-columns: 1fr; }
  .bh-modal__head h2 { font-size: 32px; }
  /* Mobile menu: full-width paper panel dropping from the header with dark, legible links */
  .bh-header__nav { display: none; flex-direction: column; gap: 0; position: fixed; inset: 0; justify-self: stretch; background: var(--bh-paper); padding: 96px var(--pad-x) 32px; overflow-y: auto; z-index: 1; }
  /* keep the logo + burger above the full-screen panel (panel is a child of the header) */
  .bh-header__logo, .bh-header__right { position: relative; z-index: 2; }
  .bh-header.has-menu-open .bh-header__nav { display: flex; }
  .bh-header__nav a { color: var(--bh-clay-deep); text-transform: none; letter-spacing: 0; padding: 16px 0; border-bottom: 1px solid var(--line-2); font-family: var(--font-serif); font-size: 18px; }
  .bh-header__nav a:last-child { border-bottom: 0; }
  /* keep the logo + burger dark/legible while the paper panel is open */
  .bh-header.has-menu-open .bh-header__logo-neg { display: none; }
  .bh-header.has-menu-open .bh-header__logo-pos { display: block; }
  .bh-header.has-menu-open .bh-burger span,
  .bh-header.has-menu-open .bh-burger span::before,
  .bh-header.has-menu-open .bh-burger span::after { background: var(--bh-clay-deep); }
  .bh-burger { display: flex; }
}

/* Mobile phones (small) */
@media (max-width: 480px) {
  :root { --pad-x: 16px; }
  .bh-hero { min-height: 70vh; }
  .bh-hero__title { font-size: clamp(34px, 9.5vw, 52px); }
  .bh-hero__sub { font-size: 14px; }
  .bh-stats { padding: 60px 16px; }
  .bh-stat { padding: 20px 0; gap: 6px; }
  .bh-stat__num { font-size: 32px; }
  .bh-stat__label { font-size: 10px; }
  .bh-welcome { padding: 60px 16px; }
  .bh-welcome__title { font-size: clamp(24px, 5vw, 40px); }
  .bh-map { padding: 60px var(--pad-x); }
  .bh-mappage__intro { padding: 60px 16px 40px; }
  .bh-mappage__title { font-size: clamp(24px, 5vw, 40px); margin: 12px 0 16px; }
  .bh-mappage__desc { font-size: 14px; margin-bottom: 24px; }
  .bh-faq { padding: 60px 16px; }
  .bh-faq__head { margin-bottom: 32px; }
  .bh-faq__head h2 { font-size: 28px; margin-top: 12px; }
  .bh-faq__trigger { padding: 16px 0; font-size: 15px; min-height: 48px; }
  .bh-edm { padding: 60px 16px; }
  .bh-edm__form-fields { gap: 18px 16px; }
  .bh-edm__field span { font-size: 9px; }
  .bh-edm__field input, .bh-edm__field select { font-size: 16px; padding: 10px 0; }
  .bh-custom-select__trigger { font-size: 16px; }
  .bh-custom-select__option { font-size: 14px; padding: 10px 14px; }
  .bh-cta-pill { font-size: 11px; padding: 14px 24px; min-height: 44px; }
}

/* ============================================================
   Brochure lead-capture modal (assets/js/brochure.js)
   Built entirely from Berry Hill tokens — no third-party styling.
   ============================================================ */
.bh-bro {
  position: fixed; inset: 0; z-index: 120;
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.bh-bro.is-open { display: flex; }
.bh-bro__scrim {
  position: absolute; inset: 0;
  background: rgba(31, 29, 26, 0.6); backdrop-filter: blur(3px);
}
.bh-bro__panel {
  position: relative; z-index: 1;
  width: 100%; max-width: 440px;
  background: var(--bg-elevated);
  padding: 48px 40px 40px;
  box-shadow: var(--shadow-3);
  animation: bh-bro-in 280ms var(--ease-out) both;
}
@keyframes bh-bro-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.bh-bro__close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: 0; cursor: pointer;
  font-size: 26px; line-height: 1; color: var(--fg-3);
  transition: color var(--dur-base) var(--ease-out);
}
.bh-bro__close:hover { color: var(--fg-1); }
.bh-bro__eyebrow {
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: var(--tracking-widest); font-size: 11px;
  color: var(--fg-3); margin: 0 0 14px;
}
.bh-bro__title {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(28px, 3vw, 36px); line-height: 1.1; letter-spacing: -0.01em;
  color: var(--fg-heading); margin: 0 0 12px;
}
.bh-bro__title em { font-style: italic; }
.bh-bro__lead {
  font-family: var(--font-serif); font-size: 15px; line-height: 1.6;
  color: var(--fg-2); margin: 0 0 24px; max-width: 40ch;
}
.bh-bro__form { display: flex; flex-direction: column; gap: 18px; }
.bh-bro__input {
  font-family: var(--font-serif); font-size: 16px; padding: 12px 0;
  background: transparent; border: 0; border-bottom: 1px solid var(--line-2);
  color: var(--fg-heading); outline: none;
  transition: border-color 180ms var(--ease-out);
}
.bh-bro__input::placeholder { color: var(--fg-3); }
.bh-bro__input:focus { border-bottom-color: var(--bh-clay-deep); }
.bh-bro__submit { justify-content: center; }
/* Loading: hide the label and spin a ring in its place. */
.bh-bro__submit.is-loading { position: relative; color: transparent; }
.bh-bro__submit.is-loading::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 18px; height: 18px; margin: -9px 0 0 -9px;
  border: 2px solid var(--bh-beige); border-top-color: transparent;
  border-radius: 50%; animation: bh-bro-spin 700ms linear infinite;
}
@keyframes bh-bro-spin { to { transform: rotate(360deg); } }
.bh-bro__error {
  font-family: var(--font-serif); font-size: 13px; line-height: 1.5;
  color: #9a3b2e; margin: -4px 0 0; /* warm red, distinct from the clay palette */
}
.bh-bro__legal {
  font-family: var(--font-serif); font-style: italic; font-size: 12px;
  color: var(--fg-3); margin: 4px 0 0; line-height: 1.5;
}
@media (max-width: 480px) {
  .bh-bro { padding: 16px; }
  .bh-bro__panel { padding: 40px 24px 28px; }
}
@media (prefers-reduced-motion: reduce) {
  .bh-bro__panel { animation: none; }
  .bh-bro__submit.is-loading::after { animation-duration: 1400ms; }
}

/* =============================================================
   Type treatment — italic main titles, each-word capitalised;
   upright body & supporting copy.
   Appended override block: flips the relevant rules above.
   Scope: main titles only (heroes + major section headings).
   Small card/column titles, eyebrow labels and FAQ questions
   are intentionally left as they were.
   ============================================================= */

/* Main titles -> italic + each word capitalised */
.bh-hero__title,
.bh-pillar-hero__title,
.bh-welcome__title,
.bh-pillars__head h2,
.bh-spaces__head h2,
.bh-map__copy h2,
.bh-mappage__title,
.bh-sust__title,
.bh-edm__copy h2,
.bh-pillar__h2,
.bh-pillar-brochure__copy h2,
.bh-property-map__head h2,
.bh-stay__copy h2,
.bh-offsites-activities__title,
.bh-contact__head h2,
.bh-gal-intro__title,
.bh-gal__head h2,
.bh-gal-cta__inner h2,
.bh-modal__head h2,
.bh-pillar-cinematic__copy h2,
.bh-bro__title {
  font-style: italic;
  text-transform: capitalize;
}

/* Body & supporting copy -> upright (normal) */
.bh-hero__sub,
.bh-stat__num,
.bh-stats--five .bh-stat__num em,
.bh-stat__caption,
.bh-spaces__head-right p,
.bh-spaces__end p,
.bh-capacity-chapter__deck .bh-spaces__head-right p,
.bh-editorial__fig figcaption,
.bh-press__logo,
.bh-press__label em,
.bh-sust__list-num,
.bh-edm__bullets li,
.bh-edm__legal,
.bh-edm__form-success em,
.bh-welcome__body em,
.bh-footer__cta-line,
.bh-footer__cta-line em,
.bh-footer__ackn,
.bh-stickybar p,
.bh-pillar-hero__subtitle,
.bh-pillar-statement__lead,
.bh-pillar__lead,
.bh-pillar__lead em,
.bh-pillar-essay__caption,
.bh-gallery-lightbox__caption,
.bh-pillar-capacity__spec-number,
.bh-pillar-capacity__note,
.bh-pillar-runsheet__hour,
.bh-pillar-runsheet__note,
.bh-pillar-testimonial__quote,
.bh-pillar-testimonial__attr em,
.bh-pillar-brochure__legal,
.bh-pillar-brochure__success em,
.bh-pillar-pricing__factors li em,
.bh-pillar-enquire__field span em,
.bh-pillar-enquire__success em,
.bh-pillar-enquire__legal,
.bh-stay__lead,
.bh-contact__hint,
.bh-gal-intro__sub,
.bh-bro__legal,
.bh-modal__field span em {
  font-style: normal;
}


/* Footer social icons (icons-only) */
.bh-footer__social { display: flex; gap: 18px; align-items: center; margin-top: 4px; }
.bh-footer__social a { display: inline-flex; align-items: center; justify-content: center; color: inherit; opacity: 0.78; transition: opacity 0.2s ease; }
.bh-footer__social a:hover { opacity: 1; }
.bh-footer__social svg { width: 18px; height: 18px; display: block; }

/* Mobile: stack the carousel section header and left-align its intro (was right-aligned from the desktop 2-col layout) */
@media (max-width: 720px) {
  .bh-spaces__head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 44px; }
  .bh-spaces__head-right { align-items: flex-start; }
  .bh-spaces__head-right p { text-align: left; max-width: none; }
}

/* Mobile: show fewer wedding gallery images initially (single-column gets long); the "View more" toggle reveals these too */
@media (max-width: 720px) {
  .bh-pillar-essay__item--more-mobile { display: none; }
  .bh-pillar-essay__gallery.is-expanded .bh-pillar-essay__item--more-mobile { display: flex; }
}

/* ============== Full-bleed editorial reel (weddings gallery) ============== */
.bh-pillar-reel { position: relative; width: 100%; }
.bh-pillar-reel__track {
  display: flex; gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; -webkit-overflow-scrolling: touch; padding: 0 10px;
  scrollbar-width: none;
}
.bh-pillar-reel__track::-webkit-scrollbar { display: none; }
.bh-pillar-reel__panel {
  position: relative; flex: 0 0 auto; margin: 0;
  height: min(78vh, 840px); min-height: 460px;
  scroll-snap-align: start; background: var(--bh-clay-deep);
}
/* Natural-size media: full image shown at a fixed height, width follows aspect (landscapes are wide, portraits narrow) */
.bh-pillar-reel__media { display: block; height: 100%; width: auto; max-width: none; }
.bh-pillar-reel__nav { display: flex; gap: 12px; justify-content: center; margin-top: 32px; }
.bh-pillar-reel__arrow {
  width: 52px; height: 52px; border-radius: 999px; border: 1px solid var(--line-2);
  color: var(--fg-1); background: transparent; font-size: 18px; cursor: pointer;
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}
.bh-pillar-reel__arrow:hover { background: var(--bh-clay-deep); color: var(--bh-paper); border-color: var(--bh-clay-deep); }
@media (max-width: 720px) {
  .bh-pillar-reel__panel { height: 64vh; min-height: 400px; }
  .bh-pillar-reel__nav { display: none; }
}

/* Footer address (sits opposite the copyright, beside the acknowledgement) */
.bh-footer__addr { justify-self: end; text-align: right; white-space: nowrap; }
@media (max-width: 720px) {
  .bh-footer__base { grid-template-columns: 1fr; gap: 14px; }
  .bh-footer__addr { justify-self: start; text-align: left; white-space: normal; }
}

.bh-pillar-enquire__error { font-family: var(--font-serif); font-size: 13px; color: #a8432f; margin: 0 0 4px; grid-column: 1 / -1; }

/* Private events — editorial image grid */
.bh-pe-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 40px; }
.bh-pe-gallery__item { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; }
.bh-pe-gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 720px) { .bh-pe-gallery { grid-template-columns: 1fr; } }

/* Master enquiry modal — submit error message */
.bh-modal__error { font-family: var(--font-serif); font-size: 13px; color: #a8432f; margin: 0 0 12px; }

/* On the confirmation step, hide the form title + step hint — the "All done" message carries the copy */
.bh-modal__panel:has(.bh-modal__body--done.is-active) #bh-modal-title,
.bh-modal__panel:has(.bh-modal__body--done.is-active) .bh-modal__hint { display: none; }
