/* ==========================================================================
   Bright's House — Bournemouth
   Design language: 1930s department-store Deco, modernised.
   Derived from the existing Art Deco wordmark (#429fa9) and the building
   itself — the former House of Fraser on Old Christchurch Road.
   Deliberately NOT Rengen indigo.
   ========================================================================== */

/* --- brand fonts --------------------------------------------------------
   Betty Noir is the face the Bright's House wordmark is set in, and Kamerik
   205 is the brand's text sans — both lifted from the existing site and
   converted to woff2.
   ⚠️ Betty Noir has NO glyph for £ · — – %  (they render as tofu). Use it
   only for plain-alphabet uppercase labels. Never for prices or body copy.
   ------------------------------------------------------------------------ */
@font-face {
  font-family: "Betty Noir";
  src: url("/assets/fonts/bettynoir.woff2") format("woff2");
  font-weight: 400 900; font-display: swap;
}
@font-face {
  font-family: "Kamerik 205";
  src: url("/assets/fonts/Kamerik-205-Book.woff2") format("woff2");
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: "Kamerik 205";
  src: url("/assets/fonts/Kamerik-205-Bold.woff2") format("woff2");
  font-weight: 600 700; font-display: swap;
}
@font-face {
  font-family: "Kamerik 205";
  src: url("/assets/fonts/Kamerik-205-Heavy.woff2") format("woff2");
  font-weight: 800 900; font-display: swap;
}

/* --- tokens ------------------------------------------------------------- */
:root {
  --ink:        #0e1c1e;   /* deep teal-black — base */
  --ink-2:      #14262a;   /* raised surface */
  --ink-3:      #1b3237;   /* hairline on dark */
  --teal:       #429fa9;   /* the logo colour — primary */
  --teal-lift:  #62bcc5;   /* hover / light-on-dark */
  --teal-deep:  #2b7c86;   /* pressed / text on cream */
  --brass:      #dbb275;   /* Deco metal — accent, rules, small caps */
  --brass-deep: #b08d52;
  --sage:       #879d8d;   /* secondary, from the alt logo */
  --cream:      #f7f3ea;   /* paper */
  --cream-2:    #ede7d9;   /* paper, shaded */
  --body:       #33474a;   /* body text on cream */
  --muted:      #566a6c;

  /* Deco display face — UPPERCASE LABELS ONLY, no £ · — – % */
  --ff-deco:    "Betty Noir", "Kamerik 205", "Futura", system-ui, sans-serif;
  --ff-display: "Kamerik 205", "Futura", "Century Gothic", system-ui, sans-serif;
  --ff-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --wrap: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 3px;              /* Deco is crisp — almost no rounding */
  --bar-h: 4.25rem;           /* mobile sticky action bar */

  --shadow-lift: 0 1.5rem 3rem -1rem rgb(14 28 30 / 28%);
  --ease: cubic-bezier(.2, .7, .3, 1);
}

/* --- reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--cream);
  color: var(--body);
  font-family: var(--ff-body);
  font-size: clamp(1rem, .97rem + .18vw, 1.0625rem);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 0 0 .6em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.35rem, 1.35rem + 4.4vw, 4.5rem); letter-spacing: -.025em; }
h2 { font-size: clamp(1.85rem, 1.2rem + 2.4vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + .7vw, 1.5rem); }
p  { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }
a { color: var(--teal-deep); text-decoration-thickness: 1px; text-underline-offset: .18em; }

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 2px;
}

/* --- layout ------------------------------------------------------------- */
.wrap { width: min(100% - (var(--gutter) * 2), var(--wrap)); margin-inline: auto; }
.section { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--dark { background: var(--ink); color: #cfdcdd; }
.section--dark h2, .section--dark h3,
.book h2, .book h3 { color: var(--cream); }
.section--paper { background: var(--cream-2); }

/* --- Deco furniture ----------------------------------------------------- */
/* small-caps eyebrow with a brass rule + lozenge */
.eyebrow {
  display: flex; align-items: center; gap: .75rem;
  font-family: var(--ff-deco);
  font-size: clamp(1.18rem, 1.1rem + .35vw, 1.4rem); font-weight: 400;
  letter-spacing: .06em; text-transform: uppercase;
  color: #7f6126;
  margin: 0 0 1rem;
}
.eyebrow::before {
  content: ""; width: 1.65rem; height: 0;
  border-top: 1px solid currentColor; flex: none; opacity: .8;
  align-self: flex-start; margin-top: .72em;
}
.eyebrow > span { flex: 1 1 auto; }
.section--dark .eyebrow,
.book .eyebrow,
.hero .eyebrow { color: #e6c592; }

/* stepped Deco divider — three descending bars, the核 motif of the wordmark */
.deco-rule { display: flex; align-items: flex-end; gap: .5rem; height: 2rem; }
.deco-rule i { display: block; width: .5rem; background: var(--brass); opacity: .9; }
.deco-rule i:nth-child(1) { height: .7rem; }
.deco-rule i:nth-child(2) { height: 1.25rem; }
.deco-rule i:nth-child(3) { height: 2rem; }
.deco-rule i:nth-child(4) { height: 1.25rem; }
.deco-rule i:nth-child(5) { height: .7rem; }

/* fluted vertical pinstripes — the department-store column motif */
.fluted {
  background-image: repeating-linear-gradient(
    to right,
    rgb(219 178 117 / 18%) 0 1px,
    transparent 1px 7px
  );
}

/* arched frame echoing the building's upper windows */
.arch {
  border-start-start-radius: 999px 6rem;
  border-start-end-radius: 999px 6rem;
  overflow: hidden;
}

/* --- buttons ------------------------------------------------------------ */
.btn {
  --btn-bg: var(--teal);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.6rem;
  min-height: 3.1rem;
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: var(--ff-display);
  font-weight: 600; font-size: 1rem;
  letter-spacing: .04em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .18s var(--ease), background-color .18s var(--ease), box-shadow .18s var(--ease);
}
.btn:hover { background: var(--teal-lift); transform: translateY(-1px); box-shadow: 0 .6rem 1.4rem -.6rem rgb(66 159 169 / 55%); }
.btn:active { transform: translateY(0); }
.btn--brass { --btn-bg: var(--brass); --btn-fg: #2a2113; }
.btn--brass:hover { background: #e8c48d; box-shadow: 0 .6rem 1.4rem -.6rem rgb(219 178 117 / 55%); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--cream);
  border-color: rgb(247 243 234 / 38%);
}
.btn--ghost:hover { background: rgb(247 243 234 / 10%); border-color: var(--cream); box-shadow: none; }
.btn--ghost-dark { --btn-bg: transparent; --btn-fg: var(--ink); border-color: rgb(14 28 30 / 25%); }
.btn--ghost-dark:hover { background: rgb(14 28 30 / 5%); border-color: var(--ink); box-shadow: none; }
.btn--block { width: 100%; }
.btn--lg { padding: 1.1rem 2rem; min-height: 3.5rem; font-size: 1.05rem; }

/* --- header ------------------------------------------------------------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgb(14 28 30 / 92%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ink-3);
}
.header__in {
  display: flex; align-items: center; gap: 1rem;
  min-height: 4.15rem;
}
.header__logo { margin-right: auto; display: block; line-height: 0; }
.header__logo img { width: clamp(9rem, 26vw, 12.5rem); }
.header__tel {
  display: none;
  font-family: var(--ff-display); font-weight: 600;
  color: var(--cream); text-decoration: none;
  letter-spacing: .02em;
  align-items: center; gap: .5rem;
  padding: .5rem .25rem;
}
.header__tel:hover { color: var(--teal-lift); }
.header .btn { display: none; }
@media (min-width: 46em) {
  .header__tel { display: inline-flex; }
  .header .btn { display: inline-flex; }
}

/* --- offer ribbon (kill switch: body.offer-off hides it) ---------------- */
.ribbon {
  background: var(--brass);
  color: #2a2113;
  text-align: center;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(.82rem, .78rem + .2vw, .95rem);
  letter-spacing: .06em;
  padding: .6rem var(--gutter);
}
.ribbon strong { font-family: var(--ff-deco); font-weight: 400; text-transform: uppercase; letter-spacing: .06em; }
body.offer-off .ribbon,
body.offer-off .js-offer { display: none !important; }

/* --- hero --------------------------------------------------------------- */
.hero { position: relative; background: var(--ink); color: var(--cream); overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media picture { display: block; width: 100%; height: 100%; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    /* left-weighted wash so the copy column stays legible on desktop
       without flattening the building on the right */
    linear-gradient(100deg, rgb(14 28 30 / 90%) 0%, rgb(14 28 30 / 55%) 42%, rgb(14 28 30 / 6%) 80%),
    linear-gradient(to top, rgb(14 28 30 / 92%) 0%, rgb(14 28 30 / 34%) 45%, rgb(14 28 30 / 16%) 100%);
}
/* Single-column mobile puts the headline straight over pale stonework, so it
   needs a much heavier scrim than the desktop two-column layout does. */
@media (max-width: 61.99em) {
  .hero__media img { object-position: 62% 38%; }
  .hero__media::after {
    background:
      linear-gradient(to top, rgb(14 28 30 / 97%) 0%, rgb(14 28 30 / 88%) 38%, rgb(14 28 30 / 76%) 70%, rgb(14 28 30 / 66%) 100%);
  }
}
.hero__in {
  position: relative;
  padding-block: clamp(3rem, 8vw, 5.5rem) clamp(2.5rem, 6vw, 4.5rem);
  display: grid; gap: clamp(2rem, 4vw, 3.5rem);
}
@media (min-width: 62em) {
  .hero__in { grid-template-columns: 1.15fr .85fr; align-items: center; }
}
.hero h1 { color: var(--cream); margin-bottom: .5em; }
.hero h1 em {
  font-style: normal; color: var(--brass);
  display: block;
}
.hero__lede { font-size: clamp(1.05rem, 1rem + .35vw, 1.2rem); color: #c3d3d4; max-width: 34ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.hero__note { margin-top: 1.1rem; font-size: .88rem; color: #92a8aa; }

/* price plate — brass-ruled, sits in the hero */
.plate {
  background: rgb(20 38 42 / 82%);
  border: 1px solid var(--ink-3);
  border-top: 3px solid var(--brass);
  padding: clamp(1.35rem, 3vw, 2rem);
  box-shadow: var(--shadow-lift);
}
.plate__row { display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap; }
.plate__was {
  font-size: 1rem; color: #8fa5a7; text-decoration: line-through;
  text-decoration-color: rgb(219 178 117 / 70%);
}
.plate__now {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(2.5rem, 1.8rem + 2.6vw, 3.4rem);
  line-height: 1; color: var(--cream);
  letter-spacing: -.03em;
}
.plate__per { font-size: 1rem; color: #a8bcbe; }
.plate__label {
  font-family: var(--ff-deco); font-size: 1.15rem; font-weight: 400;
  letter-spacing: .05em; text-transform: uppercase; color: #e6c592;
  margin-bottom: .55rem;
}
.plate ul { list-style: none; margin: 1.1rem 0 0; padding: 0; display: grid; gap: .5rem; }
.plate li { display: flex; gap: .6rem; align-items: flex-start; font-size: .93rem; color: #c3d3d4; }
.plate li svg { flex: none; margin-top: .28rem; color: var(--teal-lift); }

/* --- key facts strip ---------------------------------------------------- */
.facts { background: var(--ink-2); border-block: 1px solid var(--ink-3); }
.facts__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--ink-3);
}
@media (min-width: 48em) { .facts__grid { grid-template-columns: repeat(4, 1fr); } }
.fact {
  background: var(--ink-2);
  padding: clamp(1.1rem, 3vw, 1.9rem) clamp(.9rem, 2vw, 1.5rem);
  text-align: center;
}
.fact__n {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.1rem);
  color: var(--teal-lift); line-height: 1; letter-spacing: -.02em;
}
.fact__l {
  margin-top: .5rem; font-size: 1.14rem; letter-spacing: .04em;
  text-transform: uppercase; color: #a8bcbe;
  font-family: var(--ff-deco); font-weight: 400;
}

/* --- generic two-column media block ------------------------------------ */
.split { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 56em) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--flip > :first-child { order: 2; }
}
.split__media { position: relative; }
.split__media picture { display: block; }
.split__media img { width: 100%; }
.split__media::after {
  /* brass corner bracket — Deco detail */
  content: ""; position: absolute; inset: auto -.6rem -.6rem auto;
  width: 4.5rem; height: 4.5rem;
  border-right: 2px solid var(--brass); border-bottom: 2px solid var(--brass);
  opacity: .8; pointer-events: none;
}

/* --- feature list ------------------------------------------------------- */
.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: .8rem; }
.ticks li { display: flex; gap: .75rem; align-items: flex-start; }
.ticks svg { flex: none; margin-top: .3rem; color: var(--teal); }
.section--dark .ticks svg,
.book .ticks svg { color: var(--teal-lift); }

/* --- cards -------------------------------------------------------------- */
.cards { display: grid; gap: 1.25rem; }
@media (min-width: 50em) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 44em) { .cards--2 { grid-template-columns: repeat(2, 1fr); } }
.card {
  background: #fff;
  border: 1px solid var(--cream-2);
  border-top: 3px solid var(--teal);
  padding: clamp(1.35rem, 3vw, 1.9rem);
  display: flex; flex-direction: column;
}
.card--brass { border-top-color: var(--brass); }
.card__price {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 2rem; line-height: 1; color: var(--ink); letter-spacing: -.02em;
}
.card__price span { font-size: .9rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.card .btn { margin-top: auto; }
.card > * + .btn { margin-top: 1.5rem; }

/* --- location ----------------------------------------------------------- */
.walk { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.walk li {
  display: flex; align-items: baseline; gap: .9rem;
  padding: .85rem 0;
  border-bottom: 1px solid rgb(219 178 117 / 30%);
}
.walk li:first-child { border-top: 1px solid rgb(219 178 117 / 30%); }
.walk__t {
  font-family: var(--ff-display); font-weight: 700;
  color: var(--teal-deep); font-size: 1.05rem;
  min-width: 4.6rem; letter-spacing: -.01em;
}
.section--dark .walk__t { color: var(--teal-lift); }
.walk__p { flex: 1; }
.walk__m { font-size: .82rem; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; font-family: var(--ff-display); }
.section--dark .walk__m { color: #8fa5a7; }

/* --- FAQ --------------------------------------------------------------- */
.faq { display: grid; gap: .6rem; }
.faq details {
  background: #fff; border: 1px solid var(--cream-2);
  border-left: 3px solid var(--brass);
}
.faq summary {
  cursor: pointer; list-style: none;
  padding: 1.1rem 1.3rem;
  font-family: var(--ff-display); font-weight: 600; font-size: 1.03rem;
  color: var(--ink);
  display: flex; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; margin-left: auto; flex: none;
  width: .6rem; height: .6rem;
  border-right: 2px solid var(--teal); border-bottom: 2px solid var(--teal);
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg) translateY(-2px); }
.faq .faq__a { padding: 0 1.3rem 1.25rem; font-size: .97rem; }

/* --- booking form ------------------------------------------------------ */
.book { background: var(--ink); color: #cfdcdd; }
.book__grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); }
@media (min-width: 58em) { .book__grid { grid-template-columns: .9fr 1.1fr; } }
.form {
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  border-top: 3px solid var(--brass);
  padding: clamp(1.4rem, 3.5vw, 2.25rem);
}
.field { display: grid; gap: .4rem; margin-bottom: 1rem; }
.field > label {
  font-family: var(--ff-display); font-weight: 600;
  font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
  color: #9db2b4;
}
.field .req { color: var(--brass); }
.field input, .field select, .field textarea {
  font-family: var(--ff-body); font-size: 1rem;
  padding: .8rem .9rem;
  color: var(--cream);
  background: rgb(14 28 30 / 65%);
  border: 1px solid var(--ink-3);
  border-radius: var(--radius);
  width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: #6d8285; }
.field select { appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--teal) 50%), linear-gradient(135deg, var(--teal) 50%, transparent 50%);
  background-position: calc(100% - 1.1rem) 1.35rem, calc(100% - .75rem) 1.35rem;
  background-size: .38rem .38rem, .38rem .38rem;
  background-repeat: no-repeat;
  padding-right: 2.4rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--teal); outline: none;
  box-shadow: 0 0 0 3px rgb(66 159 169 / 22%);
}
.field textarea { resize: vertical; min-height: 5.5rem; }
.field--2 { display: grid; gap: 1rem; }
@media (min-width: 32em) { .field--2 { grid-template-columns: 1fr 1fr; } }
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__small { font-size: .82rem; color: #8fa5a7; margin-top: .9rem; }
.form__small a { color: var(--teal-lift); }
.form__err {
  display: none;
  background: rgb(200 80 70 / 14%); border: 1px solid rgb(200 80 70 / 45%);
  color: #f0b7b1; padding: .8rem 1rem; font-size: .92rem; margin-bottom: 1rem;
}
.form__err.is-on { display: block; }
.field.is-invalid input, .field.is-invalid select { border-color: #c85046; }

/* callback promise panel */
.promise { display: grid; gap: 1.5rem; }
.promise ol { list-style: none; counter-reset: s; margin: 0; padding: 0; display: grid; gap: 1.1rem; }
.promise li { counter-increment: s; display: flex; gap: 1rem; }
.promise li::before {
  content: counter(s);
  flex: none; width: 2.2rem; height: 2.2rem;
  display: grid; place-items: center;
  border: 1px solid var(--brass); color: var(--brass);
  font-family: var(--ff-display); font-weight: 700; font-size: .95rem;
}
.promise li strong { color: var(--cream); display: block; font-family: var(--ff-display); }
.promise li span { font-size: .94rem; color: #b3c5c7; }

/* --- footer ------------------------------------------------------------ */
.footer { background: #0a1618; color: #8fa5a7; font-size: .9rem; padding-block: clamp(2.5rem, 5vw, 3.5rem); }
.footer__grid { display: grid; gap: 2rem; }
@media (min-width: 48em) { .footer__grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer img { width: 11rem; margin-bottom: 1.1rem; }
.footer h4 {
  font-family: var(--ff-deco); color: var(--cream); font-size: 1.16rem;
  letter-spacing: .05em; text-transform: uppercase; margin: 0 0 .9rem;
}
.footer a { color: #a8bcbe; text-decoration: none; }
.footer a:hover { color: var(--teal-lift); text-decoration: underline; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer__base {
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid #16292c;
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem;
  font-size: .82rem;
}

/* --- sticky mobile action bar (highest-ROI element per council) --------- */
.actionbar {
  position: fixed; inset: auto 0 0 0; z-index: 70;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--ink-3);
  border-top: 1px solid var(--ink-3);
  box-shadow: 0 -.5rem 1.5rem rgb(14 28 30 / 22%);
  transform: translateY(110%);
  transition: transform .3s var(--ease);
}
.actionbar.is-on { transform: translateY(0); }
.actionbar a {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: var(--bar-h);
  font-family: var(--ff-display); font-weight: 600; font-size: 1rem;
  text-decoration: none; letter-spacing: .03em;
}
.actionbar__call { background: var(--ink-2); color: var(--cream); }
.actionbar__book { background: var(--teal); color: #fff; }
@media (min-width: 46em) { .actionbar { display: none; } }
@media (max-width: 45.99em) { body { padding-bottom: var(--bar-h); } }

/* --- utilities --------------------------------------------------------- */
.lede { font-size: clamp(1.05rem, 1rem + .4vw, 1.22rem); color: var(--body); max-width: 62ch; }
.section--dark .lede,
.book .lede { color: #b3c5c7; }
.measure { max-width: 66ch; }
.center { text-align: center; margin-inline: auto; }
.mt-lg { margin-top: clamp(2rem, 4vw, 3rem); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap;
}

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(1.1rem); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .actionbar { transition: none; }
}

/* print — a viewer may print the details to take to a viewing */
@media print {
  .header, .actionbar, .ribbon, .hero__media { display: none !important; }
  body { background: #fff; color: #000; padding: 0; }
}


/* --- location ----------------------------------------------------------- */
.loc__head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3rem); }

.loc__map { margin: 0; }
.loc__map-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgb(219 178 117 / 55%);
  border-bottom-width: 3px;
  background: #fff;
  box-shadow: var(--shadow-lift);
  scrollbar-width: thin;
}
.loc__map-scroll img { width: 100%; display: block; }
/* Google Map embed (17 Aug 2026) — full width, never dragged, so no min-width and the
   phone rule below deliberately does NOT apply to it. */
.loc__map-scroll iframe { width: 100%; display: block; border: 0; }
/* On a phone the artwork's street labels are unreadable scaled to 350px, so
   hold it at a legible width and let the map be dragged instead. */
@media (max-width: 60em) {
  .loc__map-scroll img { width: 760px; max-width: none; }
}
.loc__hint {
  margin-top: .8rem;
  font-size: .86rem; color: var(--muted);
}
.loc__hint a { color: var(--teal-deep); }
@media (min-width: 60.01em) {
  .loc__hint { text-align: right; }
}

.loc__times {
  list-style: none; margin: clamp(2rem, 4vw, 3rem) 0 0; padding: 0;
  display: grid; gap: 1px;
  grid-template-columns: repeat(2, 1fr);
  background: rgb(219 178 117 / 40%);
  border: 1px solid rgb(219 178 117 / 40%);
}
@media (min-width: 46em) { .loc__times { grid-template-columns: repeat(5, 1fr); } }
.loc__times li {
  background: var(--cream);
  padding: clamp(1rem, 2.5vw, 1.5rem) 1rem;
  text-align: center;
}
.loc__t {
  display: block;
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.75rem);
  color: var(--teal-deep); line-height: 1; letter-spacing: -.02em;
}
.loc__p {
  display: block; margin-top: .5rem;
  font-size: .88rem; color: var(--body); line-height: 1.35;
}
.loc__note {
  margin-top: 1.4rem; font-size: .9rem; color: var(--muted); max-width: 68ch;
}
.loc__note strong { color: var(--body); font-weight: 600; }

/* --- video ------------------------------------------------------------- */
.feature-video {
  width: 100%; height: auto; display: block;
  background: var(--ink);
}
.tile-video {
  width: 100%; display: block;
  aspect-ratio: 4 / 5; object-fit: cover;
  background: var(--ink);
}

/* --- studios ------------------------------------------------------------ */
/* The old layout was a 1fr/1fr split with a 16:9 video centred in its column:
   558x314 of video beside 692px of text, leaving ~190px of dead space top and
   bottom. Every council seat named the equal split as the fault. This is a
   44/56 editorial split with the media stretched to the full height of the
   text, and the video re-cut to 4:5 portrait so it fills it. */
.studio { display: grid; gap: clamp(1.75rem, 4vw, 3rem); }

.studio__media {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  min-height: 22rem;
}
.studio__media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
}
/* brass hairline along the base — a small, unmistakable proof of motion for
   a pan that is otherwise slow enough to read as a photograph */
.studio__media::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 3px;
  background: var(--brass);
  transform-origin: left center;
  animation: sweep 10s linear infinite;
}
@keyframes sweep { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@media (prefers-reduced-motion: reduce) {
  .studio__media::after { animation: none; transform: scaleX(1); opacity: .6; }
}

.studio__detail .ticks { margin-top: 0; }

/* Mobile: full-bleed video directly under the heading, bullets below it, so
   the motion is the first thing seen rather than a strip after a wall of text. */
@media (max-width: 55.99em) {
  .studio__media {
    margin-inline: calc(50% - 50vw);
    width: 100vw;
    aspect-ratio: 4 / 5;
    max-height: 78vh;
  }
}

@media (min-width: 56em) {
  .studio {
    grid-template-columns: 42fr 58fr;
    grid-template-areas:
      "intro  media"
      "detail media";
    align-content: start;
  }
  .studio__intro  { grid-area: intro; }
  .studio__detail { grid-area: detail; }
  .studio__media  {
    grid-area: media;
    align-self: stretch;      /* exactly the height of the text column */
    min-height: 30rem;
    border-bottom: 3px solid var(--brass);
  }
  .studio__media::after { display: none; }
}

/* --- gallery ------------------------------------------------------------
   Sits on ink so the light rooms actually pop — on cream the photographs read
   flat against the page. Each tile is framed like a plate in a catalogue:
   double brass rule, a stepped Deco corner, and the caption on an overlaid
   panel with a numeral rather than floating underneath.
   ------------------------------------------------------------------------ */
.gallery-sec { background: var(--ink); }
.gallery-sec__head { text-align: center; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.gallery-sec__head .deco-rule { justify-content: center; margin-bottom: 1.1rem; }
.gallery-sec__head h2 { color: var(--cream); margin: 0; }

.gallery {
  display: grid;
  gap: 1.15rem;
  grid-auto-flow: column;
  grid-auto-columns: 78%;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: .5rem;
  margin-inline: calc(50% - 50vw);
  padding-inline: calc(50vw - 50%);
  scrollbar-width: none;
}
.gallery::-webkit-scrollbar { display: none; }

.tile { margin: 0; scroll-snap-align: center; }

/* double rule: outer brass hairline, inner ink gap — a Deco frame device */
.tile__frame {
  position: relative;
  display: block;
  overflow: hidden;
  background: #081214;
  border: 1px solid rgb(219 178 117 / 45%);
  outline: 1px solid rgb(219 178 117 / 16%);
  outline-offset: 4px;
  transition: border-color .35s var(--ease), outline-color .35s var(--ease);
}
.tile:hover .tile__frame { border-color: var(--brass); outline-color: rgb(219 178 117 / 45%); }

.tile__frame img,
.tile__frame video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.tile:hover .tile__frame img,
.tile:hover .tile__frame video { transform: scale(1.045); }

/* stepped corner — the ziggurat motif off the wordmark */
.tile__step {
  position: absolute; top: 0; left: 0;
  width: 3rem; height: 3rem;
  pointer-events: none;
  background:
    linear-gradient(to right,  var(--brass) 0 1.5rem, transparent 1.5rem) top left    / 100% 3px no-repeat,
    linear-gradient(to bottom, var(--brass) 0 1.5rem, transparent 1.5rem) top left    / 3px 100% no-repeat,
    linear-gradient(to right,  rgb(219 178 117 / 55%) 0 .85rem, transparent .85rem) top left / 100% 1px no-repeat;
  background-position: 0 0, 0 0, 0 7px;
  opacity: .9;
}

/* caption plate */
.tile__plate {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; align-items: baseline; gap: .7rem;
  padding: .8rem 1rem .85rem;
  background: linear-gradient(to top, rgb(8 18 20 / 94%) 0%, rgb(8 18 20 / 82%) 60%, rgb(8 18 20 / 0%) 100%);
  border-top: 1px solid rgb(219 178 117 / 30%);
}
.tile__num {
  font-family: var(--ff-deco);
  font-size: .95rem; letter-spacing: .06em;
  color: var(--brass);
  flex: none;
}
.tile__cap {
  font-family: var(--ff-deco);
  font-size: clamp(.98rem, .94rem + .2vw, 1.12rem);
  letter-spacing: .05em; text-transform: uppercase;
  color: var(--cream);
  line-height: 1.2;
}

@media (min-width: 56em) {
  .gallery {
    grid-auto-flow: row;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-columns: auto;
    overflow: visible;
    margin-inline: 0; padding-inline: 0;
    gap: 1.6rem;
  }
  /* square on desktop: the videos are encoded 1:1, so nothing is cropped */
  .tile__frame img, .tile__frame video { aspect-ratio: 1 / 1; }
}
