/* ==========================================================================
   CAPTURED BY CHAKRAS — Page layout blocks
   ========================================================================== */

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  padding-top: clamp(6rem, 14vh, 9rem);
  padding-bottom: clamp(4rem, 10vh, 7rem);
  overflow: hidden;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(1rem, 2.6vh, 1.75rem);
  justify-items: center;
  text-align: center;
}
/* A little more air either side of the television than between the text. */
.hero .crt { margin-block: clamp(0.5rem, 1.5vh, 1.25rem); }

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  width: clamp(20px, 5vw, 56px);
  height: 1px;
  background: var(--gold-dim);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: var(--ls-display);
  line-height: var(--lh-display);
  /* Deliberately smaller than the interior page titles — here the TV leads
     and the headline supports it, not the other way round. */
  font-size: clamp(1.6rem, 3.6vw, 3.25rem);
  max-width: 18ch;
}
.hero__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0.01em;
  color: var(--gold);
}

.hero__sub {
  max-width: 52ch;
  color: var(--bone-dim);
  font-size: clamp(0.9rem, 1.05vw, 1.0625rem);
  font-weight: 300;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  justify-content: center;
}

/* ==========================================================================
   STATEMENT — one sentence in a deliberate sea of black
   ========================================================================== */
.statement {
  padding-block: clamp(8rem, 22vh, 18rem);
  position: relative;
}
.statement__text {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: var(--ls-display);
  line-height: 0.98;
  font-size: clamp(1.9rem, 5.4vw, 5.25rem);
  max-width: 20ch;
}
.statement__text span { color: var(--gold); }
.statement__meta {
  margin-top: var(--sp-12);
  display: flex;
  gap: var(--sp-12);
  flex-wrap: wrap;
}
.statement__meta div { max-width: 34ch; }

/* ==========================================================================
   SELECTED WORK — asymmetric, alternating, lots of air
   ========================================================================== */
.work {
  display: grid;
  gap: clamp(4rem, 12vh, 10rem);
}

.work__item {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--sp-6);
  align-items: end;
}

.work__figure {
  position: relative;
  overflow: hidden;
  background: var(--raised);
  /* Never taller than the viewport — the image and its caption must be
     readable together, not scrolled through one at a time. */
  max-height: 78vh;
}
.work__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;   /* fallback; per-photo values come from gallery-data.js */
  transition: transform 1.4s var(--ease), filter var(--dur-slow) var(--ease);
  filter: brightness(0.9) contrast(1.05);
}
.work__item:hover .work__figure img {
  transform: scale(1.035);
  filter: brightness(1) contrast(1);
}

/* Alternating placement — never a tidy grid, always a composition. */
.work__item:nth-child(odd)  .work__figure { grid-column: 1 / span 7; }
.work__item:nth-child(odd)  .work__caption { grid-column: 9 / span 4; }
.work__item:nth-child(even) .work__figure { grid-column: 6 / span 7; grid-row: 1; }
.work__item:nth-child(even) .work__caption { grid-column: 1 / span 4; grid-row: 1; }

/* Vary the crop so the page has rhythm rather than repetition. */
.work__item:nth-child(1) .work__figure { aspect-ratio: 4 / 5; }
.work__item:nth-child(2) .work__figure { aspect-ratio: 3 / 2; }
.work__item:nth-child(3) .work__figure { aspect-ratio: 1 / 1; }
.work__item:nth-child(4) .work__figure { aspect-ratio: 4 / 5; }

.work__caption { padding-bottom: var(--sp-4); }
.work__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold-dim);
  line-height: 1;
  display: block;
  margin-bottom: var(--sp-4);
}
.work__title {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--ls-label);
  margin-bottom: var(--sp-3);
}

@media (max-width: 860px) {
  .work__item,
  .work__item:nth-child(even) { display: block; }
  .work__item .work__figure,
  .work__item:nth-child(even) .work__figure { grid-column: auto; }
  .work__caption { padding-top: var(--sp-4); padding-bottom: 0; }
  .work__item:nth-child(n) .work__figure { aspect-ratio: 4 / 5; }
}

/* ==========================================================================
   SERVICES — two tall panels
   ========================================================================== */
.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.service {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--raised);
  isolation: isolate;
}
.service img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;   /* fallback; per-photo values come from gallery-data.js */
  filter: grayscale(1) brightness(0.8) contrast(1.08);
  transition: transform 1.6s var(--ease), filter var(--dur-slow) var(--ease);
}
.service:hover img,
.service:focus-visible img {
  transform: scale(1.05);
  filter: grayscale(0) brightness(0.95) contrast(1);
}
/* No hover on touch — land on the colour state so the panels aren't stuck
   monochrome. Keep the slight darkening; the caption sits on top of these. */
@media (hover: none) {
  .service img { filter: brightness(0.85) contrast(1); }
}
.service::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
  z-index: 1;
}
.service__body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  display: grid;
  gap: var(--sp-3);
}
.service__title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: var(--ls-display);
  line-height: 0.95;
  font-size: clamp(1.75rem, 3.6vw, 3.25rem);
}
.service__desc {
  color: var(--bone-dim);
  font-size: 0.95rem;
  max-width: 32ch;
}
.service__go {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  margin-top: var(--sp-2);
}
.service:hover .service__go span { transform: translateX(4px); }
.service__go span { transition: transform var(--dur) var(--ease); }

@media (max-width: 760px) {
  .services { grid-template-columns: 1fr; }
  .service { aspect-ratio: 4 / 5; }
}

/* ==========================================================================
   PROCESS — three numbered steps
   ========================================================================== */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-12);
}
.step { position: relative; padding-top: var(--sp-8); }
.step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold-ghost);
}
.step__num {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--ls-mono);
  color: var(--gold);
  display: block;
  margin-bottom: var(--sp-6);
}
.step__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--ls-label);
  margin-bottom: var(--sp-4);
}
.step__text { color: var(--bone-dim); font-size: 0.95rem; }

@media (max-width: 860px) {
  .process { grid-template-columns: 1fr; gap: var(--sp-8); }
}

/* ==========================================================================
   QUOTE
   ========================================================================== */
.pullquote {
  padding-block: clamp(6rem, 18vh, 14rem);
  display: grid;
  justify-items: center;
  text-align: center;
  gap: var(--sp-8);
}
.pullquote .quote { max-width: 22ch; }
.pullquote__by {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--bone-faint);
}
/* Honest labelling until real client quotes exist. */
.sample-tag {
  display: inline-block;
  border: 1px solid var(--gold-ghost);
  padding: 3px 8px;
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-faint);
  margin-left: var(--sp-3);
  vertical-align: middle;
}

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta {
  position: relative;
  text-align: center;
  padding-block: clamp(5rem, 14vh, 10rem);
  display: grid;
  justify-items: center;
  gap: var(--sp-8);
}
.cta__title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: var(--ls-display);
  line-height: 0.95;
  font-size: clamp(2rem, 6vw, 5.5rem);
  max-width: 14ch;
}
.cta__note {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--bone-faint);
}

/* ==========================================================================
   PAGE HEADER (interior pages)
   ========================================================================== */
.page-head {
  padding-top: clamp(8rem, 20vh, 13rem);
  padding-bottom: clamp(3rem, 8vh, 6rem);
  position: relative;
}
.page-head__title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: var(--ls-display);
  line-height: var(--lh-display);
  font-size: clamp(2.5rem, 9vw, 8rem);
}
.page-head__sub {
  margin-top: var(--sp-6);
  max-width: 52ch;
  color: var(--bone-dim);
  font-size: var(--fs-lead);
  font-weight: 300;
}

/* ==========================================================================
   PORTFOLIO
   ========================================================================== */
.filters {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
  padding-block: var(--sp-8);
  border-top: 1px solid var(--gold-ghost);
  border-bottom: 1px solid var(--gold-ghost);
  margin-bottom: clamp(2rem, 6vh, 4rem);
}
.filter {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  background: none;
  border: 1px solid transparent;
  padding: var(--sp-2) var(--sp-4);
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--bone-faint);
  transition: color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.filter:hover { color: var(--gold); }
.filter[aria-pressed='true'] {
  color: var(--gold);
  border-color: var(--gold-dim);
}
.filter i {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--signal);
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease);
}
.filter[aria-pressed='true'] i { opacity: 1; }

.filters__count {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--bone-faint);
}

/* Masonry via CSS columns — no library, no JS layout pass. */
.grid {
  column-count: 3;
  column-gap: var(--sp-4);
}
@media (max-width: 1000px) { .grid { column-count: 2; } }
@media (max-width: 600px)  { .grid { column-count: 1; } }

.tile {
  break-inside: avoid;
  margin-bottom: var(--sp-4);
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--raised);
  cursor: pointer;
  overflow: hidden;
  text-align: left;
}
.tile img {
  width: 100%;
  height: auto;
  display: block;
  /* Monochrome grid, colour on hover — set --grid-filter in tokens.css */
  filter: var(--grid-filter);
  transition: filter var(--dur-slow) var(--ease), transform 1.5s var(--ease);
}
.tile:hover img,
.tile:focus-visible img {
  filter: var(--grid-filter-hover);
  transform: scale(1.03);
}
.tile__meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--sp-4);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--sp-4);
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--bone);
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.tile:hover .tile__meta,
.tile:focus-visible .tile__meta { opacity: 1; transform: translateY(0); }
.tile__meta span:last-child { color: var(--gold); }

.tile.is-hidden { display: none; }

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-lightbox);
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: grid;
  /* minmax(0,1fr), not 1fr — a plain 1fr track takes the image's min-content
     height as its floor and the picture overflows the viewport. */
  grid-template-rows: auto minmax(0, 1fr) auto;
  opacity: 0;
  visibility: hidden;
  /* visibility flips instantly on open and only AFTER the fade on close.
     Transitioning it normally leaves it computed-hidden for one frame, which
     silently makes the close button unfocusable and breaks the focus trap. */
  transition: opacity var(--dur) var(--ease), visibility 0s linear var(--dur);
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity var(--dur) var(--ease), visibility 0s linear 0s;
}

.lightbox__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-6);
  padding: var(--sp-6) var(--gutter);
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--bone-faint);
}
.lightbox__stage {
  padding: 0 var(--gutter);
  min-height: 0;
  overflow: hidden;
}
/* Fill the track and letterbox inside it. `max-height: 100%` alone does not
   clamp an SVG with intrinsic dimensions, so size explicitly and let
   object-fit do the centring. */
.lightbox__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.lightbox__img.is-ready { opacity: 1; }

.lightbox__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-6);
  padding: var(--sp-6) var(--gutter);
}
.lightbox__caption {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--gold);
}
.lightbox__nav { display: flex; gap: var(--sp-3); }

.lb-btn {
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-ghost);
  background: transparent;
  color: var(--bone-dim);
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.lb-btn:hover { color: var(--gold); border-color: var(--gold-dim); }
.lb-btn svg { width: 16px; height: 16px; }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
}
.about__figure {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--raised);
}
.about__figure img { width: 100%; height: 100%; object-fit: cover; }
.about__body > * + * { margin-top: var(--sp-6); }

@media (max-width: 860px) {
  .about { grid-template-columns: 1fr; }
}

/* ---- Pricing ------------------------------------------------------------ */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.tier {
  border: 1px solid var(--gold-ghost);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: grid;
  gap: var(--sp-4);
  align-content: start;
  background: linear-gradient(180deg, rgba(201,178,127,0.025), transparent 60%);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.tier:hover {
  border-color: var(--gold-dim);
  background: linear-gradient(180deg, rgba(201,178,127,0.06), transparent 70%);
}
.tier__name {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--ls-label);
}
.tier__price {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.tier__price small {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--bone-faint);
  margin-bottom: var(--sp-2);
}
.tier ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--sp-3);
  color: var(--bone-dim);
  font-size: 0.9rem;
}
.tier li { display: flex; gap: var(--sp-3); }
.tier li::before { content: '·'; color: var(--gold-dim); flex: none; }

@media (max-width: 860px) {
  .tiers { grid-template-columns: 1fr; }
}

/* ---- FAQ ---------------------------------------------------------------- */
.faq { display: grid; }
.faq details {
  border-top: 1px solid var(--gold-ghost);
  padding-block: var(--sp-6);
}
.faq details:last-of-type { border-bottom: 1px solid var(--gold-ghost); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--ls-label);
  transition: color var(--dur-fast) var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold); }
.faq summary::after {
  content: '+';
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 1.1rem;
  flex: none;
  transition: transform var(--dur) var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin-top: var(--sp-4);
  color: var(--bone-dim);
  max-width: 66ch;
  font-size: 0.95rem;
}

/* ==========================================================================
   BOOKING FORM
   ========================================================================== */
.book {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
}
@media (max-width: 900px) {
  .book { grid-template-columns: 1fr; }
}

.book__aside > * + * { margin-top: var(--sp-8); }
/* The form is much taller than the reassurance column — let the reassurance
   ride alongside it instead of leaving a hole. */
@media (min-width: 901px) {
  .book__aside { position: sticky; top: clamp(7rem, 14vh, 9rem); }
}
.book__reassure {
  display: grid;
  gap: var(--sp-6);
  border-top: 1px solid var(--gold-ghost);
  padding-top: var(--sp-8);
}
.book__reassure div { display: grid; gap: var(--sp-2); }
.book__reassure strong {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}
.book__reassure p { color: var(--bone-dim); font-size: 0.9rem; }

.form { display: grid; gap: var(--sp-8); }
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
}
@media (max-width: 620px) {
  .form__row { grid-template-columns: 1fr; }
}

.field { display: grid; gap: var(--sp-2); position: relative; }
.field > label {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--bone-faint);
}
.field > label .req { color: var(--gold); }

.field input,
.field select,
.field textarea {
  background: transparent;
  border: 0;
  /* --gold-dim, not --gold-ghost: an input's boundary is a UI component
     boundary and needs 3:1, which the ghost tint does not reach. */
  border-bottom: 1px solid var(--gold-dim);
  padding: var(--sp-3) 0;
  color: var(--bone);
  font-size: 1rem;
  font-family: var(--font-body);
  border-radius: 0;
  transition: border-color var(--dur) var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
                    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 12px) 50%, calc(100% - 7px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: var(--sp-8);
  cursor: pointer;
}
.field select option { background: var(--raised); color: var(--bone); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(244,241,234,0.22); }

/* Date inputs render their own icon dark-on-dark; invert it. */
.field input[type='date']::-webkit-calendar-picker-indicator {
  filter: invert(1) sepia(1) saturate(0.4) hue-rotate(3deg);
  opacity: 0.5;
  cursor: pointer;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-bottom-color: var(--signal); }

.field__error {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--signal);
  min-height: 1em;
}

/* Honeypot — hidden from people, visible to bots. */
.hp {
  position: absolute !important;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  flex-wrap: wrap;
  /* No rule here — the textarea's own underline sits 2rem above and a second
     line that close reads as a mistake. Space does the separating instead. */
  padding-top: var(--sp-8);
}

.form button[type='submit'][disabled] { opacity: 0.45; cursor: wait; }

/* Success state replaces the form in place — no page jump. */
.form-success {
  display: none;
  border: 1px solid var(--gold-dim);
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}
.form-success.is-shown { display: block; }
.form-success h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: var(--ls-display);
  margin-bottom: var(--sp-4);
}
.form-success p { color: var(--bone-dim); max-width: 46ch; margin-inline: auto; }
.form-success .dot { margin-bottom: var(--sp-6); }

/* Shown in place of the form when booking-config.js is in 'external' mode. */
.external-booking {
  border: 1px solid var(--gold-dim);
  padding: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  gap: var(--sp-6);
  justify-items: start;
  background: linear-gradient(180deg, rgba(201, 178, 127, 0.04), transparent 65%);
}
.external-booking[hidden] { display: none; }

.form-error-banner {
  border: 1px solid var(--signal);
  color: var(--bone);
  padding: var(--sp-4) var(--sp-6);
  font-size: 0.9rem;
  display: none;
}
.form-error-banner.is-shown { display: block; }
