/* ==========================================================================
   Gallery Motel, 453 Tweed Valley Way, South Murwillumbah NSW

   The building is Mediterranean: cream render, terracotta roof, arched
   balconies. The emblem is a red poinciana bloom, a nod to the motel's former
   name. The design takes both literally: parchment ground, crimson accent,
   arched imagery, and a classical serif that suits a motel five minutes from
   the Tweed Regional Gallery.
   ========================================================================== */

@font-face {
  font-family: 'EB Garamond';
  src: url('/assets/fonts/ebgaramond-latin.woff2') format('woff2-variations');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193,
                 U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink:        #1c1815;
  --ink-2:      #3a332d;
  --muted:      #6b6158;
  --cream:      #f6efe2;
  --cream-2:    #ece2d0;
  --sand:       #ddd0b8;
  --red:        #c83237;
  --red-deep:   #9d2429;
  --red-tint:   #fbeeee;
  --olive:      #4d5842;
  --white:      #fff;
  --line:       rgba(28,24,21,.14);
  --line-soft:  rgba(28,24,21,.07);

  --serif: 'EB Garamond', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --sans:  -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue',
           Arial, sans-serif;

  --wrap: 1220px;
  --pad:  clamp(1.15rem, 4vw, 2.75rem);
  --r:    4px;
  --arch: clamp(56px, 13vw, 132px);
  --shadow: 0 1px 2px rgba(28,24,21,.05), 0 18px 44px -24px rgba(28,24,21,.32);
  --bar: 0px;
}

/* --------------------------------------------------------------- reset -- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--cream); color: var(--ink);
  font-family: var(--sans); font-size: 1.0625rem; line-height: 1.62;
  -webkit-font-smoothing: antialiased; overflow-wrap: break-word;
  padding-bottom: var(--bar);
}
img, picture, svg, iframe { display: block; max-width: 100%; }
.hero__bg picture, .phero__bg picture, .cta__bg picture, .map picture,
.room__img picture, .gall a picture, .band__i picture, .arch picture { width: 100%; height: 100%; }
.figure picture { width: 100%; }
img { height: auto; }
a { color: inherit; }
:where(svg) { width: 1.15em; height: 1.15em; flex: none; }
button { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif); font-weight: 600; line-height: 1.08;
  letter-spacing: -.005em; margin: 0 0 .5em; text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 7vw, 5rem); letter-spacing: -.012em; }
h2 { font-size: clamp(2.05rem, 4.8vw, 3.3rem); }
h3 { font-size: clamp(1.28rem, 2.3vw, 1.6rem); }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
::selection { background: var(--red); color: var(--white); }
:focus-visible { outline: 2.5px solid var(--red-deep); outline-offset: 3px; border-radius: 2px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.skip { position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--white); padding: .8rem 1.2rem; }
.skip:focus { left: 0; }
.vh { position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }

/* ------------------------------------------------------- scroll reveal -- */
.js .reveal { opacity: 0; transform: translateY(18px); }
.js .reveal.in { opacity: 1; transform: none;
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.js .reveal.in.d1 { transition-delay: .08s; }
.js .reveal.in.d2 { transition-delay: .16s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal, .js .reveal.in { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---------------------------------------------------------- typography -- */
.eyebrow {
  display: flex; align-items: center; gap: .75rem;
  font-size: .715rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--red-deep); margin: 0 0 1.25rem;
}
.eyebrow::before {
  content: attr(data-n); font-family: var(--serif); font-size: 1.5em; font-weight: 600;
  letter-spacing: 0; color: var(--sand); line-height: 1;
}
.eyebrow:not([data-n])::before { content: ''; width: 34px; height: 2px; background: var(--red); }
.eyebrow--c { justify-content: center; }
.lede { font-size: clamp(1.1rem, 1.8vw, 1.33rem); color: var(--ink-2); line-height: 1.56; max-width: 60ch; }
.muted { color: var(--muted); }
.sm { font-size: .875rem; }

.arch { border-radius: var(--arch) var(--arch) 4px 4px; overflow: hidden; }

/* -------------------------------------------------------------- buttons -- */
.btn {
  --bg: var(--red); --fg: var(--white); --bd: var(--red);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  background: var(--bg); color: var(--fg); border: 1.5px solid var(--bd);
  padding: .9rem 1.6rem; border-radius: 999px;
  font-size: .95rem; font-weight: 600; text-decoration: none; cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.btn:hover { --bg: var(--red-deep); --bd: var(--red-deep); transform: translateY(-2px); }
.btn svg { width: 1.05em; height: 1.05em; }
.btn--lg { padding: 1.06rem 2rem; font-size: 1.02rem; }
.btn--ink { --bg: var(--ink); --bd: var(--ink); }
.btn--ink:hover { --bg: var(--red); --bd: var(--red); }
.btn--ghost { --bg: transparent; --fg: var(--ink); --bd: rgba(28,24,21,.3); }
.btn--ghost:hover { --bg: var(--ink); --fg: var(--white); --bd: var(--ink); }
.btn--light { --bg: var(--white); --fg: var(--ink); --bd: var(--white); }
.btn--light:hover { --bg: var(--red); --fg: var(--white); --bd: var(--red); }
.btn--on-dark.btn--ghost { --fg: var(--white); --bd: rgba(255,255,255,.5); }
.btn--on-dark.btn--ghost:hover { --bg: var(--white); --fg: var(--ink); --bd: var(--white); }
.btns { display: flex; flex-wrap: wrap; gap: .7rem; }

/* --------------------------------------------------------------- header -- */
.hdr {
  position: sticky; top: 0; z-index: 90;
  background: rgba(246,239,226,.88);
  backdrop-filter: saturate(150%) blur(16px);
  -webkit-backdrop-filter: saturate(150%) blur(16px);
  border-bottom: 1px solid transparent; transition: border-color .25s ease;
}
.hdr.is-stuck { border-bottom-color: var(--line); }
.hdr__in { display: flex; align-items: center; gap: 1.5rem; min-height: 78px; }
.hdr__logo { flex: none; display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.hdr__logo img { width: 40px; height: 40px; }
.hdr__logo b {
  font-family: var(--serif); font-size: 1.22rem; font-weight: 600; line-height: 1.05;
  letter-spacing: .01em; display: block;
}
.hdr__logo span {
  display: block; font-family: var(--sans); font-size: .58rem; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase; color: var(--red-deep);
}
.nav { display: flex; align-items: center; gap: 1.6rem; margin-left: auto; }
.nav a { position: relative; text-decoration: none; font-size: .93rem; font-weight: 500;
  padding: .3rem 0; color: var(--ink-2); }
.nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform .25s cubic-bezier(.2,.7,.3,1);
}
.nav a:hover::after, .nav a[aria-current='page']::after { transform: scaleX(1); }
.nav a[aria-current='page'] { color: var(--ink); font-weight: 600; }
/* gap matches .nav's, so the phone and Book now sit on the menu's rhythm. */
.hdr__act { display: flex; align-items: center; gap: 1.6rem; margin-left: 1.6rem; }
.hdr__call { padding: .62rem 1.05rem; font-size: .92rem; white-space: nowrap; }
.hdr__call svg { width: 1em; height: 1em; }
.hdr__cta { padding: .62rem 1.15rem; font-size: .92rem; }
.burger { display: none; align-items: center; gap: .45rem; background: none;
  border: 1.5px solid var(--line); border-radius: 999px; padding: .52rem .9rem;
  cursor: pointer; font-size: .85rem; font-weight: 600; }
.burger svg { width: 17px; height: 17px; transition: transform .25s ease; }
.burger[aria-expanded='true'] svg { transform: rotate(180deg); }
.mnav { display: none; flex-direction: column; padding-bottom: 1.2rem; }
.mnav a { text-decoration: none; padding: .82rem .1rem; border-bottom: 1px solid var(--line-soft);
  font-size: 1.05rem; font-weight: 600; }
.mnav .btn { margin-top: 1rem; border-bottom: 0; justify-content: center; }
.mnav.is-open { display: flex; }
@media (max-width: 1040px) {
  .nav { display: none; }
  .burger { display: inline-flex; }
  .hdr__act { margin-left: auto; }
}
@media (max-width: 1040px) {
  /* the fixed bottom bar carries Call and Book below this width */
  .hdr__call, .hdr__cta { display: none; }
}
@media (max-width: 600px) { .hdr__logo span { display: none; } }

/* ----------------------------------------------------------------- hero -- */
.hero { position: relative; background: var(--ink); isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 55%; }
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(101deg, rgba(20,16,14,.9) 0%, rgba(20,16,14,.7) 36%,
                            rgba(20,16,14,.3) 64%, rgba(20,16,14,.05) 90%),
    linear-gradient(180deg, rgba(20,16,14,.4) 0%, rgba(20,16,14,.05) 30%, rgba(20,16,14,.6) 100%);
}
@media (max-width: 900px) {
  .hero::after { background: linear-gradient(180deg, rgba(20,16,14,.58) 0%,
    rgba(20,16,14,.48) 40%, rgba(20,16,14,.86) 100%); }
}
.hero__in {
  position: relative; display: grid; align-content: end;
  grid-template-columns: minmax(0,1fr) auto; gap: 2rem;
  min-height: min(90svh, 820px); padding-top: 6rem; padding-bottom: 3.4rem; color: var(--white);
}
.hero__copy { grid-column: 1; min-width: 0; }
.hero h1 {
  color: var(--white); margin-bottom: .34em; max-width: 24ch;
  font-size: clamp(2.35rem, 5.1vw, 3.9rem);
  text-wrap: pretty;   /* balance orphaned the first word */
}
.hero .lede { color: rgba(255,255,255,.9); max-width: 46ch; }
.hero__btns { margin-top: 2rem; }
@media (max-width: 900px) {
  /* the fixed Call and Book bar covers both of these on small screens */
  .hero__btns { display: none; }
  .hero__in { padding-bottom: 2.4rem; min-height: min(74svh, 640px); }
}

/* Mobile: the hero is bottom-aligned, so an over-tall one reads as dead sky
   above the headline and pushes the buttons under the fixed action bar. This
   must sit after the base .hero__in rule to win. */
@media (max-width: 900px) {
  .hero__in {
    min-height: min(72svh, 600px);
    padding-top: 2.6rem;
    padding-bottom: 2.4rem;
  }
  .hero__btns { margin-top: 1.5rem; }
  .hero .lede { font-size: 1.06rem; }
}

.glance {
  grid-column: 2; align-self: end; width: 252px;
  background: rgba(20,16,14,.48); border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-radius: var(--r); padding: 1.15rem 1.3rem;
}
.glance h2 { font-family: var(--sans); font-size: .7rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--red); margin: 0 0 .85rem; }
.glance dl { margin: 0; display: grid; gap: .55rem; }
.glance div { display: flex; align-items: baseline; gap: .6rem; font-size: .87rem; }
.glance dt { color: rgba(255,255,255,.74); }
.glance dd { margin: 0 0 0 auto; font-weight: 600; color: var(--white); text-align: right; }
@media (max-width: 1040px) { .glance { display: none; } }

.phero { position: relative; background: var(--ink); isolation: isolate; }
.phero__bg { position: absolute; inset: 0; z-index: -2; }
.phero__bg img { width: 100%; height: 100%; object-fit: cover; }
.phero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(101deg, rgba(20,16,14,.9) 0%, rgba(20,16,14,.72) 42%,
                            rgba(20,16,14,.4) 72%, rgba(20,16,14,.16) 100%),
    linear-gradient(180deg, rgba(20,16,14,.5) 0%, rgba(20,16,14,.22) 40%, rgba(20,16,14,.68) 100%);
}
@media (max-width: 900px) {
  .phero::after { background: linear-gradient(180deg, rgba(20,16,14,.64) 0%,
    rgba(20,16,14,.52) 40%, rgba(20,16,14,.88) 100%); }
}
.phero__in { position: relative; color: var(--white);
  padding-top: clamp(4.2rem, 11vw, 7.5rem); padding-bottom: clamp(2.8rem, 6vw, 4.4rem);
  min-height: min(62svh, 560px); display: flex; flex-direction: column; justify-content: flex-end; }
.phero h1 { color: var(--white); max-width: 17ch; }
.phero .lede { color: rgba(255,255,255,.9); }
.phero .eyebrow { color: rgba(255,255,255,.9); }
.phero .eyebrow::before { color: rgba(255,255,255,.5); background: var(--red); }
.crumbs { font-size: .82rem; color: rgba(255,255,255,.86); margin-bottom: 1.2rem; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.crumbs span { padding: 0 .45rem; opacity: .5; }

/* ------------------------------------------------------- booking strip -- */
.bookbar { position: relative; z-index: 5; margin-top: -3.1rem; }
.bookbar__in {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow); padding: 1.1rem 1.2rem;
  display: grid; gap: .8rem; grid-template-columns: 1fr 1fr .8fr auto; align-items: end;
}
.field { display: flex; flex-direction: column; gap: .32rem; min-width: 0; }
.field label { font-size: .68rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted); }
.field input, .field select {
  font: inherit; font-size: .96rem; width: 100%; padding: .64rem .75rem;
  border: 1.5px solid var(--line); border-radius: var(--r);
  background: var(--white); color: var(--ink); min-height: 48px;
}
.field input:focus, .field select:focus { border-color: var(--red-deep); outline: none; }
.bookbar .btn { min-height: 48px; white-space: nowrap; }
.bookbar__note { grid-column: 1 / -1; margin: .3rem 0 0; font-size: .83rem;
  color: var(--muted); display: flex; align-items: center; gap: .5rem; }
.bookbar__note b { color: var(--red-deep); }
.bookbar__note svg { width: 16px; height: 16px; color: var(--red-deep); }
@media (max-width: 900px) {
  .bookbar { margin-top: -1.7rem; }
  .bookbar__in { grid-template-columns: 1fr 1fr; padding: 1rem; }
  .bookbar .btn { grid-column: 1 / -1; }
}
@media (max-width: 430px) { .bookbar__in { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------- section -- */
.sec { padding-block: clamp(3.8rem, 9vw, 7rem); }
.sec--tight { padding-block: clamp(2.6rem, 5vw, 4.2rem); }
.sec--cream2 { background: var(--cream-2); }
.sec--ink { background: var(--ink); color: rgba(255,255,255,.8); }
.sec--ink h2, .sec--ink h3 { color: var(--white); }
.sec--ink .eyebrow { color: var(--red); }
.sec--ink .eyebrow::before { color: rgba(255,255,255,.4); background: var(--red); }
.sec--ink .lede { color: rgba(255,255,255,.82); }
.sec__hd { max-width: 60ch; margin-bottom: clamp(2.2rem, 4.5vw, 3.6rem); }
.sec__hd--c { margin-inline: auto; text-align: center; }
.sec__hd--c .eyebrow { justify-content: center; }
.sec__hd--split { max-width: none; display: grid; grid-template-columns: minmax(0,1fr) auto;
  gap: 1.6rem; align-items: end; }
.sec__hd--split > div { max-width: 52ch; }
@media (max-width: 800px) { .sec__hd--split { grid-template-columns: 1fr; align-items: start; } }

/* ---------------------------------------------------------------- rooms -- */
.rooms { display: grid; gap: clamp(1.4rem, 2.6vw, 2.2rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); }
.room { position: relative; display: flex; flex-direction: column; }
.room__img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand);
  border-radius: var(--arch) var(--arch) 4px 4px; }
.room__img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 58%;
  transition: transform .8s cubic-bezier(.2,.7,.3,1); }
.room:hover .room__img img { transform: scale(1.045); }
.room__pill { position: absolute; inset: auto auto 1rem 1rem;
  background: rgba(246,239,226,.94); backdrop-filter: blur(8px); border-radius: 999px;
  padding: .34rem .9rem; font-size: .7rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; }
.room__body { padding: 1.4rem .2rem 0; display: flex; flex-direction: column; flex: 1; }
.room__body h3 { margin-bottom: .55rem; font-size: clamp(1.45rem, 2.7vw, 1.95rem); }
.room__body h3 a { text-decoration: none; }
.room__body h3 a::after { content: ''; position: absolute; inset: 0; }
.room__spec { display: flex; flex-wrap: wrap; gap: .4rem 1.05rem; margin: 0 0 .95rem;
  padding: 0; list-style: none; font-size: .84rem; color: var(--muted); }
.room__spec li { display: flex; align-items: center; gap: .38rem; }
.room__spec svg { width: 15px; height: 15px; color: var(--red-deep); }
.room__body p { font-size: .97rem; color: var(--ink-2); }
.room__more { margin-top: auto; padding-top: 1.15rem; display: inline-flex; align-items: center;
  gap: .45rem; font-size: .89rem; font-weight: 600; color: var(--red-deep); }
.room__more::before { content: ''; width: 26px; height: 1.5px; background: var(--red);
  transition: width .3s cubic-bezier(.2,.7,.3,1); }
.room:hover .room__more::before { width: 44px; }

/* ------------------------------------------------------- full-bleed band -- */
.band { display: grid; grid-template-columns: repeat(4, 1fr); }
.band__i { aspect-ratio: 1; overflow: hidden; background: var(--sand); }
.band__i img { width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s cubic-bezier(.2,.7,.3,1); }
.band__i:hover img { transform: scale(1.06); }
@media (max-width: 700px) { .band { grid-template-columns: repeat(2, 1fr); } }

/* --------------------------------------------------------------- pillars -- */
.grid-3 { display: grid; gap: clamp(1.6rem, 3.2vw, 2.6rem); grid-template-columns: repeat(3, 1fr); }
.grid-4 { display: grid; gap: clamp(1.2rem, 2.6vw, 2rem); grid-template-columns: repeat(4, 1fr); }
.grid-2 { display: grid; gap: clamp(1.4rem, 4vw, 3.6rem); grid-template-columns: 1fr 1fr; align-items: center; }
@media (max-width: 960px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 800px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 470px) { .grid-4 { grid-template-columns: 1fr; } }

.feat { display: flex; flex-direction: column; gap: .55rem; }
.feat__ic { width: 46px; height: 46px; border-radius: 999px 999px 6px 6px;
  background: var(--red-tint); display: grid; place-items: center;
  color: var(--red-deep); margin-bottom: .45rem; }
.sec--ink .feat__ic { background: rgba(200,50,55,.16); color: #f0a9ac; }
.feat__ic svg { width: 20px; height: 20px; }
.feat h3 { font-size: 1.28rem; margin-bottom: .2rem; }
.feat p { font-size: .95rem; color: var(--muted); }
.sec--ink .feat p { color: rgba(255,255,255,.68); }
.sec--ink .feat a { color: #f0a9ac; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.sec--ink .feat a:hover { color: var(--white); }

/* --------------------------------------------------------------- direct -- */
.direct { background: var(--red-tint); border: 1px solid rgba(157,36,41,.18);
  border-radius: var(--r); padding: clamp(1.7rem, 4vw, 3.2rem);
  display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 1.8rem; align-items: center; }
.direct .direct__big { font-family: var(--serif); font-size: clamp(3rem, 7vw, 4.6rem);
  line-height: .95; color: var(--red-deep); margin: 0 0 .3rem; font-weight: 600; }
.direct h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: .45rem; }
.direct p { color: var(--ink-2); max-width: 54ch; font-size: .99rem; }
.direct ul { margin: 1.15rem 0 0; padding: 0; list-style: none;
  display: flex; flex-wrap: wrap; gap: .5rem 1.1rem; font-size: .9rem; }
.direct li { display: flex; align-items: center; gap: .42rem; }
.direct li svg { width: 16px; height: 16px; color: var(--red-deep); }
@media (max-width: 800px) { .direct { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------- location -- */
.loc__list { list-style: none; margin: 0; padding: 0; }
.loc__list li { display: flex; align-items: baseline; gap: 1rem;
  padding: .88rem 0; border-bottom: 1px solid var(--line-soft); }
.loc__list li:first-child { border-top: 1px solid var(--line-soft); }
.loc__list b { font-weight: 600; }
.loc__list span { margin-left: auto; color: var(--muted); font-size: .89rem; white-space: nowrap; }
.map { position: relative; display: block; overflow: hidden;
  border-radius: var(--arch) var(--arch) 4px 4px; text-decoration: none;
  background: var(--sand); aspect-ratio: 4 / 3; }
.map img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.map__pin { position: absolute; inset: auto 1rem 1rem; background: rgba(246,239,226,.96);
  backdrop-filter: blur(10px); border-radius: var(--r); padding: .9rem 1.05rem;
  display: flex; align-items: center; gap: .7rem; font-size: .88rem; }
.map__pin svg { width: 20px; height: 20px; color: var(--red-deep); }
.map__pin b { display: block; }

/* ----------------------------------------------------------------- gall -- */
.gall { display: grid; gap: .8rem; grid-template-columns: repeat(2, 1fr); }
.gall a { border-radius: var(--r); overflow: hidden; aspect-ratio: 1; background: var(--sand); }
.gall a:first-child { border-radius: var(--arch) 4px 4px 4px; }
.gall img { width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.3,1); }
.gall a:hover img { transform: scale(1.05); }

/* ------------------------------------------------------------------ faq -- */
.faq { max-width: 840px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary { display: flex; align-items: center; gap: 1rem; cursor: pointer; list-style: none;
  padding: 1.2rem .2rem; font-family: var(--serif); font-size: clamp(1.18rem, 2vw, 1.38rem);
  font-weight: 600; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ''; flex: none; margin-left: auto; width: 11px; height: 11px;
  border-right: 2px solid var(--red-deep); border-bottom: 2px solid var(--red-deep);
  transform: rotate(45deg) translate(-3px, -3px); transition: transform .25s ease; }
.faq details[open] summary::after { transform: rotate(-135deg) translate(-3px, -3px); }
.faq summary:hover { color: var(--red-deep); }
.faq__a { padding: 0 .2rem 1.35rem; color: var(--ink-2); font-size: .99rem; max-width: 74ch; }

/* --------------------------------------------------- answer-first block -- */
/* An editorial standfirst, not a coloured callout. The filled box read as a
   slab dropped on the page; hairline rules and the same small red label the
   eyebrows use put it in the page's own language. */
.quick {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: clamp(1.35rem, 2.8vw, 1.9rem) 0;
  max-width: 74ch; margin-bottom: 2.6rem;
}
.quick h2 { display: flex; align-items: center; gap: .75rem;
  font-family: var(--sans); font-size: .715rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--red-deep); margin: 0 0 .85rem; }
.quick h2::before { content: ''; flex: none; width: 34px; height: 2px; background: var(--red); }
.quick p {
  margin: 0;
  font-size: clamp(1.06rem, 1.7vw, 1.2rem); line-height: 1.6; color: var(--ink-2);
}

/* ----------------------------------------------------------------- prose -- */
.prose { max-width: 70ch; }
.prose h2 { margin-top: 2.3em; }
.prose h2:first-child, .prose > .quick + h2 { margin-top: 0; }
.prose h3 { margin-top: 1.9em; }
.prose ul, .prose ol { padding-left: 1.15rem; margin: 0 0 1.2em; }
.prose li { margin-bottom: .45em; }
.prose li::marker { color: var(--red-deep); }
.prose a { color: var(--red-deep); text-decoration-thickness: 1px; text-underline-offset: 2px; }
/* .prose a would otherwise repaint button labels red on a red fill. */
.prose .btn { color: var(--fg); text-decoration: none; }
.prose table { width: 100%; border-collapse: collapse; margin: 0 0 1.4em; font-size: .94rem; }
.prose th, .prose td { text-align: left; padding: .6rem .7rem; border-bottom: 1px solid var(--line-soft); }
.prose th { font-family: var(--sans); font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); }
.tablewrap { overflow-x: auto; }

.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(1.8rem, 5vw, 4.5rem); align-items: center; }
.split--flip > *:first-child { order: 2; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split--flip > *:first-child { order: 0; }
}
@media (min-width: 901px) { .split--sticky > div:last-child { position: sticky; top: 100px; } }
.figure { overflow: hidden; background: var(--sand); border-radius: var(--r); }
.figure.arch { border-radius: var(--arch) var(--arch) 4px 4px; }
.figure img { width: 100%; height: auto; }

.stats { display: flex; flex-wrap: wrap; gap: 2.6rem; margin-top: 2.2rem; }
.stat b { display: block; font-family: var(--serif); font-size: clamp(2.2rem, 4.6vw, 3rem);
  line-height: 1; font-weight: 600; }
.stat span { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

.chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .55rem; }
.chips li { display: flex; align-items: center; gap: .45rem; background: var(--white);
  border: 1px solid var(--line); border-radius: 999px; padding: .46rem 1rem; font-size: .875rem; }
.chips svg { width: 15px; height: 15px; color: var(--red-deep); }
.sec--cream2 .chips li { background: var(--cream); }

.note { border-left: 3px solid var(--red); background: var(--red-tint);
  padding: 1.15rem 1.4rem; border-radius: 0 var(--r) var(--r) 0; font-size: .95rem; }
.note b { color: var(--red-deep); }

/* ------------------------------------------------------------ final CTA -- */
.cta { position: relative; background: var(--ink); color: var(--white); isolation: isolate; overflow: hidden; }
.cta__bg { position: absolute; inset: 0; z-index: -2; opacity: .4; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta::after { content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(28,24,21,.74), rgba(28,24,21,.92)); }
.cta__in { text-align: center; padding-block: clamp(4rem, 9vw, 7rem); }
.cta h2 { color: var(--white); max-width: 19ch; margin-inline: auto; }
.cta p { color: rgba(255,255,255,.8); max-width: 50ch; margin-inline: auto; }
.cta .btns { justify-content: center; margin-top: 2rem; }
.cta__fine { margin-top: 1.3rem; font-size: .83rem; color: rgba(255,255,255,.6); }

/* --------------------------------------------------------------- footer -- */
.foot { background: var(--ink); color: rgba(255,255,255,.68); padding-block: clamp(3rem, 6vw, 4.6rem) 2rem; }
.foot a { color: rgba(255,255,255,.68); text-decoration: none; }
.foot a:hover { color: var(--white); }
.foot__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 2.4rem; }
@media (max-width: 1000px) { .foot__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot__top { grid-template-columns: 1fr; gap: 2rem; } }
.foot__logo { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.1rem; }
.foot__logo img { width: 46px; height: 46px; }
.foot__logo b { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; display: block; }
.foot__logo span { display: block; font-size: .58rem; font-weight: 700; letter-spacing: .3em;
  text-transform: uppercase; color: #e6989c; }
.foot__top p { font-size: .93rem; max-width: 40ch; }
.foot h3 { font-family: var(--sans); font-size: .71rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: #e6989c; margin: 0 0 1.05rem; }
.foot ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .58rem; }
.foot ul a { font-size: .93rem; }
.foot address { font-style: normal; font-size: .93rem; line-height: 1.75; }
.foot__bot { margin-top: clamp(2.4rem, 5vw, 3.4rem); padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap;
  gap: .6rem 1.4rem; align-items: center; font-size: .82rem; color: rgba(255,255,255,.6); }
.foot__bot nav { display: flex; gap: 1.2rem; margin-left: auto; }
@media (max-width: 560px) { .foot__bot nav { margin-left: 0; } }

/* --------------------------------------------------- mobile action bar -- */
/* The reviewer's priority: a large, permanent Call / Book pair for guests who
   would rather ring than fill in a form. */
.mobilebar { display: none; }
@media (max-width: 900px) {
  :root { --bar: 70px; }
  .mobilebar {
    display: grid; grid-template-columns: 1fr 1.25fr; gap: .55rem;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    padding: .6rem .75rem calc(.6rem + env(safe-area-inset-bottom));
    background: rgba(246,239,226,.96);
    backdrop-filter: saturate(150%) blur(16px);
    -webkit-backdrop-filter: saturate(150%) blur(16px);
    border-top: 1px solid var(--line);
  }
  .mobilebar .btn { padding: .84rem 1rem; font-size: .97rem; min-height: 52px; }
}

/* ---------------------------------------------------------- lightbox -- */
.lb { position: fixed; inset: 0; z-index: 200; display: grid;
  grid-template-columns: auto 1fr auto; align-items: center;
  gap: clamp(.5rem, 2vw, 1.5rem); padding: clamp(1rem, 4vw, 3rem);
  background: rgba(16,13,11,.94); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.lb[hidden] { display: none; }
.lb__fig { margin: 0; min-width: 0; text-align: center; }
.lb__fig img { max-width: 100%; max-height: 78svh; margin-inline: auto;
  border-radius: var(--r); background: var(--ink-2); }
.lb__cap { margin-top: .9rem; color: rgba(255,255,255,.74); font-size: .86rem;
  max-width: 62ch; margin-inline: auto; }
.lb__nav, .lb__x { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
  color: #fff; border-radius: 999px; cursor: pointer; line-height: 1;
  display: grid; place-items: center; transition: background .18s ease; }
.lb__nav { width: 48px; height: 48px; font-size: 1.9rem; padding-bottom: .18em; }
.lb__nav:hover, .lb__x:hover { background: rgba(255,255,255,.22); }
.lb__x { position: absolute; top: clamp(.75rem, 3vw, 1.5rem); right: clamp(.75rem, 3vw, 1.5rem);
  width: 44px; height: 44px; font-size: 1.6rem; }
@media (max-width: 640px) {
  .lb { grid-template-columns: 1fr; grid-template-rows: 1fr auto; }
  .lb__fig { grid-row: 1; }
  .lb__nav { grid-row: 2; width: 56px; height: 48px; }
  .lb__prev { justify-self: start; }
  .lb__next { justify-self: end; grid-column: 1; grid-row: 2; }
}
