/* ==========================================================================
   Miami Motel — 2117 Gold Coast Highway, Miami QLD

   The building is 1960s motel; the rooms inside are microcement, brass and
   travertine. The design bridges the two: contemporary editorial layout, with
   arched imagery that echoes the round mirrors and dome lamps in the rooms,
   and the painted signage's powder aqua as the one accent.
   ========================================================================== */

@font-face {
  font-family: 'Fraunces';
  src: url('/assets/fonts/fraunces-latin.woff2') format('woff2-variations');
  font-weight: 300 900;
  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 is a deep desaturated teal rather than black — it sits with the
     microcement in the photography instead of fighting it. */
  --ink:       #0e1416;
  --ink-2:     #2c3538;
  --muted:     #5f6a6d;
  --bone:      #f6f2ea;
  --bone-2:    #ece5da;
  --sand:      #ded2c2;
  --travertine:#cbbca8;
  --aqua:      #a2cbd0;
  --aqua-deep: #175a63;
  --aqua-tint: #e7f1f2;
  --brass:     #a07c38;
  --white:     #fff;
  --line:      rgba(14,20,22,.13);
  --line-soft: rgba(14,20,22,.07);

  --serif: 'Fraunces', '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:    5px;
  /* the arch: large but not a half-circle, so it reads elegant not novelty */
  --arch: clamp(56px, 13vw, 132px);
  --shadow: 0 1px 2px rgba(14,20,22,.04), 0 18px 44px -24px rgba(14,20,22,.34);
  --bar: 0px;
}

/* --------------------------------------------------------------- reset -- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bone);
  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%; }
/* <picture> is an inline wrapper by default and collapses to zero height,
   which would stop object-fit working on anything asked to fill a container. */
.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; }
/* Inline icons carry no width/height attribute, so give them a default that any
   component rule can still override (:where() adds no specificity). */
:where(svg) { width: 1.15em; height: 1.15em; flex: none; }
button { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.021em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.55rem, 7vw, 4.9rem); letter-spacing: -.028em; }
h2 { font-size: clamp(2rem, 4.7vw, 3.25rem); }
h3 { font-size: clamp(1.22rem, 2.2vw, 1.5rem); letter-spacing: -.012em; }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
::selection { background: var(--aqua); color: var(--ink); }
:focus-visible { outline: 2.5px solid var(--aqua-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 -- */
/* Scoped to .js so that if scripting fails or is blocked, nothing is left
   invisible — the content simply renders with no animation. */
.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; }
.js .reveal.in.d3 { transition-delay: .24s; }
@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(--aqua-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(--travertine); line-height: 1;
}
.eyebrow:not([data-n])::before { content: ''; width: 34px; height: 2px; background: var(--aqua); }
.eyebrow--c { justify-content: center; }
.lede { font-size: clamp(1.09rem, 1.75vw, 1.29rem); color: var(--ink-2); line-height: 1.58; max-width: 60ch; }
.muted { color: var(--muted); }
.sm { font-size: .875rem; }

/* the aqua swoosh under a hero word, echoing the painted signage */
.mark { position: relative; white-space: nowrap; }
.mark svg {
  position: absolute; left: 0; bottom: -.15em; width: 100%; height: .3em;
  overflow: visible; color: var(--aqua); pointer-events: none;
}
.mark path { stroke: currentColor; stroke-width: 7; stroke-linecap: round; fill: none; }

/* the arch — used on room imagery and feature photos */
.arch { border-radius: var(--arch) var(--arch) 4px 4px; overflow: hidden; }
.arch--sm { --arch: clamp(40px, 8vw, 78px); }

/* -------------------------------------------------------------- buttons -- */
.btn {
  --bg: var(--ink); --fg: var(--white); --bd: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  background: var(--bg); color: var(--fg); border: 1.5px solid var(--bd);
  padding: .87rem 1.6rem; border-radius: 999px;
  font-size: .945rem; 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(--aqua-deep); --bd: var(--aqua-deep); transform: translateY(-2px); }
.btn svg { width: 1.05em; height: 1.05em; }
.btn--lg { padding: 1.04rem 2rem; font-size: 1.01rem; }
.btn--ghost { --bg: transparent; --fg: var(--ink); --bd: rgba(14,20,22,.28); }
.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(--aqua); --fg: var(--ink); --bd: var(--aqua); }
.btn--on-dark.btn--ghost { --fg: var(--white); --bd: rgba(255,255,255,.46); }
.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,242,234,.84);
  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.6rem; min-height: 78px; }
.hdr__logo { flex: none; line-height: 0; }
.hdr__logo img { width: 116px; height: auto; }
.nav { display: flex; align-items: center; gap: 1.75rem; 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(--aqua); 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.75rem; margin-left: 1.75rem; }
.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: .78rem .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: 1020px) {
  .nav { display: none; }
  .burger { display: inline-flex; }
  .hdr__act { margin-left: auto; }
  /* the fixed bottom bar carries Call and Book below this width */
  .hdr__call, .hdr__cta { 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: 70% 38%; }
/* Weighted to the left so the headline stays legible against a bright sky
   while the painted signage on the right keeps its daylight. */
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(101deg, rgba(8,12,14,.9) 0%, rgba(8,12,14,.68) 34%,
                            rgba(8,12,14,.24) 62%, rgba(8,12,14,0) 88%),
    linear-gradient(180deg, rgba(8,12,14,.36) 0%, rgba(8,12,14,0) 28%, rgba(8,12,14,.52) 100%);
}
@media (max-width: 900px) {
  .hero::after {
    background: linear-gradient(180deg, rgba(8,12,14,.52) 0%, rgba(8,12,14,.44) 40%,
                                        rgba(8,12,14,.84) 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; }
/* ch units resolve against the element's own font-size, so the measure has to
   live on the heading itself — putting it on the wrapper measures body text. */
.hero h1 { color: var(--white); margin-bottom: .34em; max-width: 13ch; }
.hero .lede { color: rgba(255,255,255,.9); max-width: 44ch; }
.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; }
}

/* Mobile: the hero is bottom-aligned and the glance card is hidden below
   1020px, so a 90svh box leaves roughly half the screen as empty sky above the
   headline. 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;
  }
}

/* at-a-glance card, bottom right of the hero */
.glance {
  grid-column: 2; align-self: end; width: 250px;
  background: rgba(10,14,16,.46); 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(--aqua); 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: 1020px) { .glance { display: none; } }

/* page hero for interior pages */
.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; }
/* Interior shots are bright and busy, so the copy side needs a firmer scrim. */
.phero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(101deg, rgba(8,12,14,.9) 0%, rgba(8,12,14,.7) 42%,
                            rgba(8,12,14,.36) 72%, rgba(8,12,14,.14) 100%),
    linear-gradient(180deg, rgba(8,12,14,.48) 0%, rgba(8,12,14,.2) 40%, rgba(8,12,14,.66) 100%);
}
@media (max-width: 900px) {
  .phero::after {
    background: linear-gradient(180deg, rgba(8,12,14,.62) 0%, rgba(8,12,14,.5) 40%,
                                        rgba(8,12,14,.86) 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: 16ch; }
.phero .lede { color: rgba(255,255,255,.9); }
.phero .eyebrow { color: var(--aqua); }
.phero .eyebrow::before { color: rgba(255,255,255,.5); }
.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(--aqua-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(--aqua-deep); }
.bookbar__note svg { width: 16px; height: 16px; color: var(--aqua-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, 7.2rem); }
.sec--tight { padding-block: clamp(2.6rem, 5vw, 4.2rem); }
.sec--bone2 { background: var(--bone-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(--aqua); }
.sec--ink .eyebrow::before { color: rgba(255,255,255,.42); background: var(--aqua); }
.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 -- */
/* auto-fit so the three room types make three columns, and the two-item
   "other rooms" grid on a room page fills its row rather than leaving a gap. */
.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 / 5; overflow: hidden; background: var(--sand);
  border-radius: var(--arch) var(--arch) 4px 4px;
}
.room__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.3,1); }
.room:hover .room__img img { transform: scale(1.045); }
/* Sits at the foot of the image: the arched top edge curves away from a
   top-left badge and clips it. */
.room__pill {
  position: absolute; inset: auto auto 1rem 1rem;
  background: rgba(246,242,234,.93); 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.4rem, 2.6vw, 1.85rem); }
.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(--aqua-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(--aqua-deep);
}
.room__more::before {
  content: ''; width: 26px; height: 1.5px; background: var(--aqua);
  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); gap: 0; }
.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-template-columns: 1fr; }
  .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(--aqua-tint); display: grid; place-items: center;
  color: var(--aqua-deep); margin-bottom: .45rem;
}
.sec--ink .feat__ic { background: rgba(162,203,208,.14); color: var(--aqua); }
.feat__ic svg { width: 20px; height: 20px; }
.feat h3 { font-size: 1.2rem; margin-bottom: .2rem; }
.feat p { font-size: .95rem; color: var(--muted); }
.sec--ink .feat p { color: rgba(255,255,255,.66); }

/* --------------------------------------------------------------- direct -- */
.direct {
  background: var(--aqua-tint); border: 1px solid rgba(23,90,99,.15);
  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(--aqua-deep); margin: 0 0 .3rem; font-weight: 600; letter-spacing: -.03em;
}
.direct h2 { font-size: clamp(1.55rem, 3vw, 2.15rem); 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(--aqua-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 / 5;
}
.map img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 72%; }
.map__pin {
  position: absolute; inset: auto 1rem 1rem; background: rgba(246,242,234,.95);
  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(--aqua-deep); }
.map__pin b { display: block; }

/* ----------------------------------------------------------------- gall -- */
.gall { display: grid; gap: .8rem; grid-template-columns: repeat(4, 1fr); }
.gall a { border-radius: var(--r); overflow: hidden; aspect-ratio: 1; background: var(--sand); }
.gall a:first-child { grid-column: span 2; grid-row: span 2; }
.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); }
.gall--2 { grid-template-columns: repeat(2, 1fr); }
.gall--2 a:first-child { grid-column: auto; grid-row: auto; }
.gall--2 a:first-child { border-radius: var(--arch) 4px 4px 4px; }
@media (max-width: 640px) {
  .gall { grid-template-columns: repeat(2, 1fr); }
  .gall a:first-child { grid-column: span 2; }
  .gall--2 a:first-child { grid-column: auto; }
}

/* ------------------------------------------------------------------ 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.1rem, 1.9vw, 1.28rem);
  font-weight: 600; letter-spacing: -.012em;
}
.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(--aqua-deep); border-bottom: 2px solid var(--aqua-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(--aqua-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 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(--aqua-deep); margin: 0 0 .85rem; }
.quick h2::before { content: ''; flex: none; width: 34px; height: 2px; background: var(--aqua-deep); }
.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(--aqua-deep); }
.prose a { color: var(--aqua-deep); text-decoration-thickness: 1px; text-underline-offset: 2px; }
/* .prose a would otherwise repaint button labels aqua on an aqua fill. */
.prose .btn { color: var(--fg); text-decoration: none; }

.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; }
}
/* Room pages: the aside is much shorter than the copy beside it, so let it
   travel with the reader instead of leaving a tall empty column. */
@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.1rem, 4.4vw, 2.9rem);
  line-height: 1; font-weight: 600; letter-spacing: -.03em;
}
.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(--aqua-deep); }
.sec--bone2 .chips li { background: var(--bone); }

.note {
  border-left: 3px solid var(--aqua); background: var(--aqua-tint);
  padding: 1.15rem 1.4rem; border-radius: 0 var(--r) var(--r) 0; font-size: .95rem;
}
.note b { color: var(--aqua-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(14,20,22,.72), rgba(14,20,22,.92));
}
.cta__in { text-align: center; padding-block: clamp(4rem, 9vw, 7rem); }
.cta h2 { color: var(--white); max-width: 18ch; 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,.58); }

/* --------------------------------------------------------------- footer -- */
.foot { background: var(--ink); color: rgba(255,255,255,.66); padding-block: clamp(3rem, 6vw, 4.6rem) 2rem; }
.foot a { color: rgba(255,255,255,.66); 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 img { width: 140px; height: auto; margin-bottom: 1.15rem; }
.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: var(--aqua); 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,.58);
}
.foot__bot nav { display: flex; gap: 1.2rem; margin-left: auto; }
@media (max-width: 560px) { .foot__bot nav { margin-left: 0; } }

/* --------------------------------------------------- mobile action bar -- */
.mobilebar { display: none; }
@media (max-width: 900px) {
  :root { --bar: 68px; }
  .mobilebar {
    display: grid; grid-template-columns: 1fr 1.3fr; gap: .55rem;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    padding: .58rem .75rem calc(.58rem + env(safe-area-inset-bottom));
    background: rgba(246,242,234,.95);
    backdrop-filter: saturate(150%) blur(16px);
    -webkit-backdrop-filter: saturate(150%) blur(16px);
    border-top: 1px solid var(--line);
  }
  .mobilebar .btn { padding: .8rem 1rem; font-size: .95rem; }
}

/* ---------------------------------------------------------- what's on -- */
.ev__group { margin-top: 2.2rem; }
.ev__group:first-of-type { margin-top: 1.4rem; }
.ev__group h3 {
  font-family: var(--sans); font-size: .72rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--aqua-deep); margin: 0 0 .3rem;
  padding-bottom: .55rem; border-bottom: 1px solid var(--line);
}
.ev { list-style: none; margin: 0; padding: 0; }
.ev li { border-bottom: 1px solid var(--line-soft); }
.ev a {
  display: flex; align-items: baseline; gap: 1rem; padding: .82rem .1rem;
  text-decoration: none; transition: color .18s ease;
}
.ev a:hover { color: var(--aqua-deep); }
.ev__name { font-weight: 500; }
.ev a:hover .ev__name { text-decoration: underline; text-underline-offset: 3px; }
.ev__when {
  margin-left: auto; flex: none; font-size: .82rem; color: var(--muted);
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
@media (max-width: 520px) {
  .ev a { flex-direction: column; gap: .2rem; }
  .ev__when { margin-left: 0; }
}

/* ---------------------------------------------------------- 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(8, 12, 14, .93);
  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,.72); 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; }
}
