/* The Office - WSL house style.
   Tokens are the WSL set, byte-identical to privatezone-showcase/site.css, so the two
   properties read as one company. Light only, like PrivateZone.
   Shape rule: cards 20px, small boxes 12px, buttons and chips 100px pills.
   GOLD IS RESERVED: the gold-filled gradient is the page's one primary action (WhatsApp),
   so the single thing we want a tenant to do reads as the single thing to do. Everything
   else is green, cream or greige. */

:root {
  --green-900:#0e2019; --green-800:#12291f; --green-700:#16382a; --green-600:#1f4d39; --green-500:#2e6b52;
  --bg:#f3efe4; --surface:#fffdf8; --surface-2:#faf6ec;
  --ink:#1c241e; --ink-2:#464e45; --muted:#61685c;
  --gold:#b98f3e; --gold-soft:#d9c08a; --gold-tint:#f1e7cf;
  --line:#e7ddc8; --line-soft:#efe8d8;
  --e-out:cubic-bezier(.22,1,.36,1);
  --shadow-1:0 1px 2px rgba(14,32,25,.04), 0 8px 24px -12px rgba(14,32,25,.18);
  --shadow-2:0 2px 6px rgba(14,32,25,.06), 0 24px 48px -20px rgba(14,32,25,.28);

  /* plan status fills, same language as the PrivateZone plan */
  --taken:#ece4d4; --taken-line:#ddd3bd; --taken-ink:#a89f8a;
  /* AA-safe text/ink variant: --taken-ink itself only passes 2.1-2.2:1 on --taken
     and --shared-fill, so it stays for non-text uses (the leased dot) while every
     label reads this instead. 4.76:1 on --taken, 4.97:1 on --shared-fill. */
  --taken-text:#6b6250;
  --shared-fill:#efe9db; --shared-line:#dcd3bf;
  /* dark-gold text: the plain --gold token is a 2.9-4.1:1 accent (icons, borders),
     too light to read as text on cream or gold-tint. 5.80:1 / 7.02:1 respectively. */
  --gold-ink:#6b551f;
  --gold-ink-hover:#4a3a12;
  --gold-gradient: linear-gradient(140deg, #e9d7ae 0%, #cfad66 48%, #b98f3e 100%);

  /* room-available fill, same status-color family as --taken / --shared-fill above */
  --available-fill:#e8efe6;

  /* "cream": text/icon ink on the dark green surfaces (hero, chip-active, toast, admin
     nav). --logo-ink and --footer-ink are PrivateZone's own literals for the mark and the
     footer line, kept as distinct tokens rather than merged into --cream since they read
     slightly differently by design, not by accident. */
  --cream:#f4efe4;
  --logo-ink:#ece3cf;
  --footer-ink:#cfe0d5;

  --danger:#8c1d18;

  --r-panel: 20px;
  --r-ctl: 12px;
}

* { box-sizing: border-box; }

@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
/* No blanket `*{transition-duration:.001ms}` kill here: every keyframe entrance below is
   already scoped to `no-preference` and never runs under reduced motion, so a blanket
   rule has nothing decorative left to catch. What it WAS killing was every `transition:`
   in the file - button hover, chip press, toast show/hide, room fill on select - the
   state feedback a reduced-motion user still needs to see. */

body {
  /* Light only, by design (README). Without this, a dark-mode OS renders form controls
     (the admin password input) in dark UA styling against this light page. */
  color-scheme: light;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Readex Pro", system-ui, -apple-system, "Segoe UI", Tahoma, Arial, sans-serif;
  font-weight: 400;
  font-variant-numeric: lining-nums tabular-nums;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { margin: 0; font-weight: 600; line-height: 1.18; letter-spacing: -.012em; }
h1 { font-size: clamp(1.75rem, 4vw, 2.9rem); }
h2 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); color: var(--green-700); }
h3 { font-size: 1.02rem; font-weight: 600; color: var(--green-700); }
p { margin: 0; }
a { color: inherit; }

.wrap { width: min(1240px, 100% - 2.5rem); margin-inline: auto; }
section { padding-block: clamp(2.4rem, 5vw, 4rem); }
.lede { color: var(--ink-2); max-width: 62ch; font-size: 1rem; font-weight: 300; }


/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  white-space: nowrap;
  padding: .62rem 1.15rem; border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, .34);
  background: var(--gold-gradient);
  color: var(--green-900);
  font: inherit; font-size: .9rem; font-weight: 600; letter-spacing: .012em;
  text-decoration: none; cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5), 0 10px 24px -12px rgba(120,86,20,.72);
  transition: filter .22s var(--e-out), transform .18s var(--e-out), box-shadow .22s var(--e-out);
}
.btn:hover { filter: brightness(1.05); box-shadow: inset 0 1px 0 rgba(255,255,255,.58), 0 16px 30px -14px rgba(120,86,20,.85); }
.btn:active { transform: scale(.985); }
.btn.sm { padding: .42rem .85rem; font-size: .82rem; }

/* secondary: never gold-filled */
.btn.ghost {
  background: transparent; color: var(--green-700);
  border-color: var(--line); box-shadow: none; font-weight: 500;
}
.btn.ghost:hover { background: var(--surface-2); border-color: var(--gold-soft); filter: none; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.hero :focus-visible, .footer :focus-visible { outline-color: var(--gold-soft); }

.toggle { display: inline-flex; border: 1px solid rgba(217, 192, 138, .42); border-radius: 100px; overflow: hidden; }
.toggle button {
  padding: .34rem .78rem; border: 0; background: transparent; color: rgba(244, 239, 228, .72);
  font: inherit; font-size: .8rem; font-weight: 500; cursor: pointer;
  transition: background .2s var(--e-out);
}
.toggle button:hover { background: rgba(244, 239, 228, .14); }
.toggle button[aria-pressed="true"] { background: var(--gold-soft); color: var(--green-900); }


/* ---------- hero: PrivateZone shape - logo, tagline, location, inline credentials ---------- */
.hero .toggle {
  position: absolute; top: clamp(18px, 3vw, 28px); inset-inline-end: clamp(18px, 4vw, 42px); z-index: 2;
  display: inline-flex; border: 1px solid rgba(217, 192, 138, .42); border-radius: 100px; overflow: hidden;
  background: rgba(244, 239, 228, .08);
}
.hero-inner { max-width: 1180px; }
.hero-brand { display: flex; justify-content: flex-start; margin-block-end: clamp(14px, 2.4vw, 24px); }
.hero-logo { height: clamp(96px, 12vw, 140px); }
.tagline {
  font-size: clamp(1.02rem, 2.2vw, 1.34rem); font-weight: 300; line-height: 1.5;
  letter-spacing: 0; max-width: 42ch; color: rgba(244, 239, 228, .92); text-wrap: balance;
}
.loc { margin-block-start: .9em; font-size: .9rem; font-weight: 300; color: rgba(244, 239, 228, .66);
  display: flex; align-items: center; gap: .5em; }
.loc svg { width: 14px; height: 14px; flex: none; opacity: .8; }
.credentials { margin-block-start: clamp(20px, 3vw, 30px); display: flex; flex-wrap: wrap;
  gap: clamp(16px, 3vw, 30px); align-items: center; }
.cred { display: flex; align-items: baseline; gap: .5em; }
.cred b { font-size: 1.15rem; font-weight: 600; color: var(--gold-soft); }
.cred span { font-size: .82rem; font-weight: 300; color: rgba(244, 239, 228, .72); }
.cred + .cred { padding-inline-start: clamp(16px, 3vw, 30px); border-inline-start: 1px solid rgba(217, 192, 138, .28); }
@media (max-width: 560px) { .credentials { gap: 10px 22px; } .cred + .cred { padding-inline-start: 0; border-inline-start: 0; } }

/* ---------- the plan card carries its own caption and floor badge ---------- */
/* This is an h2 (the plan section's real heading, ahead of the panel's h3 so the
   outline doesn't skip a level) styled to read as the small muted caption it always was. */
.mapcap { display: flex; align-items: center; gap: .6em; margin-block-end: 14px; padding-inline-end: 110px; }
.mapcap h2 { color: var(--muted); font-size: .9rem; font-weight: 300; margin: 0; }
.mapcap i { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); display: inline-block; flex: none; }
.floor-badge {
  position: absolute; top: clamp(16px, 2.4vw, 26px); inset-inline-end: clamp(16px, 2.4vw, 26px);
  background: var(--green-700); color: var(--gold-soft); font-size: .72rem; font-weight: 500;
  padding: 5px 12px; border-radius: 100px;
}

/* ---------- sections are cards, with the heading inside ---------- */
.sec { padding-block: 0; margin-block-end: clamp(16px, 2.4vw, 24px); }
.card-wrap {
  width: min(1220px, 100% - 2.5rem); margin-inline: auto;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-panel);
  padding: clamp(22px, 3vw, 32px); box-shadow: var(--shadow-1);
}
.card-wrap > h2 { font-size: 1.15rem; font-weight: 600; color: var(--green-700); margin-block-end: 18px; }
.card-wrap > .lede { margin-block-start: -8px; margin-block-end: 18px; }

/* ---------- includes: 4-up icon grid, gold line icons ---------- */
.inc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px 24px; }
.inc-item { display: flex; align-items: flex-start; gap: .65em; }
.inc-item svg { width: 19px; height: 19px; flex: none; margin-block-start: 1px; color: var(--gold); }
.inc-item b { color: var(--ink-2); font-size: .88rem; font-weight: 400; line-height: 1.5; }
.inc-item span { display: block; font-size: .74rem; color: var(--muted); font-weight: 300; margin-block-start: 2px; }
.inc-perk {
  margin-block-start: 22px; background: var(--gold-tint); border: 1px solid var(--gold-soft);
  border-radius: var(--r-ctl); padding: 12px 16px; font-size: .86rem; color: var(--gold-ink); line-height: 1.55;
  display: flex; gap: .6em; align-items: flex-start;
}
.inc-perk svg { width: 16px; height: 16px; flex: none; margin-block-start: 2px; color: var(--gold); }
@media (max-width: 840px) { .inc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .inc-grid { grid-template-columns: 1fr; } }

/* ---------- location ---------- */
.loc-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 1.25rem; align-items: start; }
@media (max-width: 860px) { .loc-grid { grid-template-columns: 1fr; } }
.plink {
  display: inline-flex; align-items: center; gap: .4em; color: var(--green-600);
  font-size: .88rem; font-weight: 500; text-decoration: none;
  border-block-end: 1px solid var(--gold-soft); padding-block-end: 2px;
  transition: color .2s var(--e-out), border-color .2s var(--e-out);
}
.plink:hover { color: var(--green-700); border-color: var(--gold); }

/* ---------- the one gold action ---------- */
.cta-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  background: var(--gold-gradient);
  color: var(--green-900); text-decoration: none; font: inherit; font-weight: 600; letter-spacing: .012em;
  border-radius: 100px; border: 1px solid rgba(255, 255, 255, .34); cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5), 0 10px 24px -12px rgba(120,86,20,.72);
  transition: filter .22s var(--e-out), transform .18s var(--e-out), box-shadow .22s var(--e-out);
}
.cta-gold:hover { filter: brightness(1.05); box-shadow: inset 0 1px 0 rgba(255,255,255,.58), 0 16px 30px -14px rgba(120,86,20,.85); }
.cta-gold:active { transform: scale(.985); }
.cta-gold svg { flex: none; width: 18px; height: 18px; }
.fcall { margin: 16px 0 6px; padding: 15px 30px; font-size: 1.04rem; }
.fcall svg { width: 19px; height: 19px; }
.fcall:focus-visible { outline-color: var(--gold-soft); }
.mcall { display: none; }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden; color: var(--cream);
  padding-block: clamp(2rem, 4.5vw, 3.4rem) clamp(2.2rem, 5vw, 3.6rem);
  background:
    radial-gradient(115% 90% at 82% -12%, rgba(46,107,82,.55) 0%, rgba(46,107,82,0) 52%),
    radial-gradient(90% 120% at 12% 128%, rgba(9,22,16,.9) 0%, rgba(9,22,16,0) 48%),
    linear-gradient(158deg, #143024 0%, var(--green-900) 68%);
  border-block-end: 1px solid rgba(185, 143, 62, .28);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
}
.hero > * { position: relative; }

.wsl-logo { display: block; width: auto; color: var(--logo-ink); }
.hero-logo { height: clamp(66px, 8vw, 92px); margin-block-end: clamp(.9rem, 2vw, 1.4rem); }


/* ---------- floor plan ---------- */
.planbar { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; margin-block-end: 1rem; }
.chip {
  padding: .36rem .82rem; border-radius: 100px; border: 1px solid var(--line);
  background: var(--surface); color: var(--ink-2);
  font: inherit; font-size: .82rem; font-weight: 400; cursor: pointer;
  transition: border-color .18s var(--e-out), background-color .18s var(--e-out);
}
.chip:hover { border-color: var(--gold-soft); }
.chip[aria-pressed="true"] { background: var(--green-700); border-color: var(--green-700); color: var(--cream); }
.count { margin-inline-start: auto; font-size: .84rem; color: var(--muted); font-weight: 300; }

.stage-sec { padding-block: clamp(20px, 3vw, 32px) 0; }
.stage { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 340px);
  gap: clamp(16px, 2.5vw, 26px); align-items: start;
  width: min(1220px, 100% - 2.5rem); margin-inline: auto; }
@media (max-width: 980px) { .stage { grid-template-columns: 1fr; } }

.mapwrap {
  position: relative; min-width: 0;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-panel);
  padding: clamp(16px, 2.4vw, 26px); box-shadow: var(--shadow-1);
}
.planscroll { overflow: auto; overscroll-behavior: contain; }
.plan { display: block; width: 100%; min-width: 460px; height: auto; }

.plan .shell { fill: var(--surface-2); stroke: var(--green-700); stroke-width: 26; stroke-linejoin: round; }

/* Available is green, the house colour. Reserved is gold-tinted. Taken is dead greige
   with no hover, the same signal PrivateZone uses: not a red alert, just not on offer. */
.room .fill { fill: var(--available-fill); stroke: var(--green-500); stroke-width: 9; transition: fill .18s var(--e-out), stroke .18s ease; }
.room .tint { fill: none; }
.room text { fill: var(--green-700); font-weight: 500; text-anchor: middle; pointer-events: none; user-select: none;
  direction: ltr; unicode-bidi: isolate; }
.room .area { fill: var(--green-600); font-weight: 400; opacity: .8; }
.room { cursor: pointer; }
.room:hover .fill { fill: var(--green-600); stroke: var(--green-700); }
.room:hover text { fill: #fff; }

.room.reserved .fill { fill: var(--gold-tint); stroke: var(--gold); }
.room.reserved text { fill: var(--gold-ink); }
.room.reserved .area { fill: var(--gold-ink); }
.room.reserved:hover .fill { fill: var(--gold-soft); }
.room.reserved:hover text { fill: var(--gold-ink-hover); }

.room.leased { cursor: default; }
.room.leased .fill { fill: var(--taken); stroke: var(--taken-line); }
.room.leased text, .room.leased .area { fill: var(--taken-text); font-weight: 400; }
.room.leased:hover .fill { fill: var(--taken); stroke: var(--taken-line); }
.room.leased:hover text { fill: var(--taken-text); }

.room.dim .fill { fill: var(--surface-2); stroke: var(--line); }
.room.dim text, .room.dim .area { fill: var(--taken-text); opacity: .55; }

.room:focus { outline: none; }
.room:focus-visible .fill { stroke: var(--gold); stroke-width: 16; }
.sel { fill: none; stroke: var(--gold); stroke-width: 24; pointer-events: none; }

.shared .fill { fill: var(--shared-fill); stroke: var(--shared-line); stroke-width: 8; stroke-dasharray: 22 18; }
.shared text { fill: var(--taken-text); text-anchor: middle; font-weight: 400; }

.legend { display: flex; flex-wrap: wrap; gap: .9rem 1.3rem; margin-block-start: 16px; font-size: .83rem; color: var(--muted); }
.list-hint { display: none; }
.legend .lg { display: inline-block; inline-size: .8rem; block-size: .8rem; border-radius: 4px; margin-inline-end: .4rem; vertical-align: -2px; }
.legend .lg.a { background: var(--available-fill); border: 1.5px solid var(--green-500); }
.legend .lg.r { background: var(--gold-tint); border: 1.5px solid var(--gold); }
.legend .lg.l { background: var(--taken); border: 1.5px solid var(--taken-line); }
.legend .lg.s { background: var(--shared-fill); border: 1.5px dashed var(--shared-line); }

/* ---------- unit panel ---------- */
.panel {
  position: sticky; top: 18px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-panel);
  padding: clamp(1.15rem, 2vw, 1.6rem); box-shadow: var(--shadow-1);
}
.panel { min-height: 300px; }
.panel .empty { color: var(--muted); font-size: .96rem; font-weight: 300; line-height: 1.6; max-width: 26ch; }
.panel .empty-ico { width: 38px; height: 38px; color: var(--gold); opacity: .85; margin-block-end: 14px; }
.panel h3 { font-size: 1.9rem; font-weight: 600; color: var(--green-700); line-height: 1; }
.panel .code { font-size: .76rem; color: var(--muted); font-weight: 300; margin-block-start: .35rem; }
.pill {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .26rem .7rem; border-radius: 100px; font-size: .76rem; font-weight: 500;
  background: var(--available-fill); color: var(--green-700); border: 1px solid var(--green-500);
}
.pill.reserved { background: var(--gold-tint); border-color: var(--gold); color: var(--gold-ink); }
.pill.leased { background: var(--taken); border-color: var(--taken-line); color: var(--taken-text); }

/* One self-labelling line. It used to be three boxed stats competing with the price for
   the eye; nothing here needs a caption, so nothing here needs a box. */
.meta {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .15rem .45rem;
  margin-block: .9rem 1.1rem; font-size: .88rem; font-weight: 300; color: var(--ink-2);
}
.meta span + span::before { content: '\00b7'; color: var(--gold-soft); margin-inline-end: .45rem; }

/* The price IS the panel: one figure and the sentence that says what it buys. The tinted
   card makes it the answer to the question the floor plan just asked. */
.price {
  background: var(--surface-2); border: 1px solid var(--line-soft); border-radius: var(--r-ctl);
  padding: 1.05rem 1.1rem; text-align: center;
}
.price .v {
  font-size: clamp(1.9rem, 5vw, 2.35rem); font-weight: 600; color: var(--green-700);
  letter-spacing: -.02em; line-height: 1.05; white-space: nowrap;
}
.price .v small { font-size: .42em; font-weight: 400; color: var(--muted); margin-inline-start: .3em; letter-spacing: 0; }
/* balance keeps "the third is free" from wrapping to a one-word orphan line in English */
.price .cap { font-size: .8rem; color: var(--gold-ink); margin-block-start: .5rem; line-height: 1.55; text-wrap: balance; }
.panel .btn { inline-size: 100%; margin-block-start: 1.1rem; padding-block: .8rem; }
.btn .wa { inline-size: 1.05rem; block-size: 1.05rem; fill: currentColor; flex: none; }

/* ---------- unit cards ---------- */
/* On a phone the 49-card list is twenty-five rows of scroll, but it is also the ONLY way to
   reach the sub-5 m2 cabins on a touch screen (see .list-hint below) - so it collapses rather
   than disappears: one 44px row until someone wants it. Desktop is untouched, always open and
   with no affordance, because a mouse can hit a 2.65 m2 room on the plan. */
#allBox > summary { list-style: none; }
#allBox > summary::-webkit-details-marker { display: none; }
#allBox > summary > h2 { display: inline; font-size: 1.15rem; font-weight: 600; color: var(--green-700); }
#allBox > summary .n { font-size: .82rem; font-weight: 300; color: var(--muted); margin-inline-start: .45rem; }
#allBox[open] > summary { margin-block-end: 18px; }
@media (min-width: 901px) { #allBox > summary { pointer-events: none; } }

.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: .7rem; }
.card {
  text-align: start; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-ctl); padding: .85rem .95rem; font: inherit; color: inherit; cursor: pointer;
  transition: border-color .18s var(--e-out), transform .18s var(--e-out);
}
.card:hover { border-color: var(--gold-soft); transform: translateY(-1px); }
.card.leased { opacity: .58; }
.card .t { display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.card .t b { font-size: 1.05rem; font-weight: 600; color: var(--green-700); }
.card .m { font-size: .78rem; color: var(--muted); font-weight: 300; margin-block-start: .15rem; }
.card .p { font-size: 1rem; font-weight: 600; color: var(--green-700); margin-block-start: .6rem; }
.card .p small { display: block; font-size: .72rem; font-weight: 300; color: var(--muted); margin-block-start: .1rem; }
.dot { inline-size: .5rem; block-size: .5rem; border-radius: 100px; background: var(--green-500); flex: none; }
.dot.reserved { background: var(--gold); }
.dot.leased { background: var(--taken-ink); }


/* ---------- packages ---------- */
.pkg { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-panel); padding: 1.4rem; box-shadow: var(--shadow-1); margin-block-start: 1.4rem; }
/* The second package used to sit beside this one. A longer let is now a conversation, so
   what follows the card is the invitation to have it, not a second price. */
.pkg-more {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: .85rem 1.2rem; margin-block-start: 1.1rem; padding-inline: .25rem;
  font-size: .92rem; font-weight: 300; color: var(--ink-2);
}
.pkg .n { font-size: clamp(1.5rem, 3.2vw, 2rem); font-weight: 600; color: var(--green-700); letter-spacing: -.02em; line-height: 1.1; }
.pkg .s { color: var(--gold-ink); font-size: .86rem; font-weight: 500; margin-block-start: .3rem; }
.pkg p { color: var(--ink-2); font-size: .9rem; font-weight: 300; margin-block-start: .85rem; }
/* With only one package left the card ran full width with everything hugging one edge, so on a
   wide screen the headline and the explanation sit side by side instead. Placed by hand rather
   than wrapped in another div: three children, two columns, no extra markup. Must stay AFTER the
   three rules above - it resets `.pkg p`'s margin, and at equal specificity the last one wins. */
@media (min-width: 761px) {
  .pkg { display: grid; grid-template-columns: minmax(0, auto) minmax(0, 1fr); column-gap: 2rem; align-items: center; }
  .pkg .n { grid-column: 1; grid-row: 1; }
  .pkg .s { grid-column: 1; grid-row: 2; }
  .pkg p { grid-column: 2; grid-row: 1 / span 2; margin-block-start: 0; }
}

/* ---------- location ---------- */
.mapframe { border: 1px solid var(--line); border-radius: var(--r-panel); overflow: hidden; background: var(--surface-2); box-shadow: var(--shadow-1); }
.mapframe iframe { display: block; inline-size: 100%; block-size: clamp(280px, 42vw, 420px); border: 0; }

/* ---------- footer ---------- */
.footer {
  background: var(--green-900); color: var(--footer-ink); text-align: center;
  padding-block: clamp(2rem, 4vw, 2.8rem); position: relative;
}
.footer::before {
  content: ""; position: absolute; top: 0; inset-inline: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 192, 138, .5), transparent);
}
.wsl-foot { height: clamp(64px, 8vw, 84px); margin-inline: auto; }
.footer .operator { font-size: .8rem; opacity: .62; font-weight: 300; margin-block-start: 4px; }

/* ---------- admin ---------- */
.gate { max-width: 380px; margin: 12vh auto; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-panel); padding: 1.7rem; box-shadow: var(--shadow-1); }
.gate h2 { letter-spacing: .03em; }
.field { display: grid; gap: .35rem; margin-block-start: 1rem; }
.field label { font-size: .84rem; color: var(--ink-2); }
.field input {
  padding: .65rem .8rem; border-radius: var(--r-ctl); border: 1px solid var(--line);
  background: var(--surface-2); color: var(--ink); font: inherit;
}
.field input::placeholder { color: var(--muted); }
.err { color: var(--danger); font-size: .84rem; margin-block-start: .6rem; }
.setbtns { display: flex; gap: .4rem; margin-block-start: 1rem; }
.setbtns .btn { flex: 1; margin: 0; }

.toast {
  position: fixed; inset-block-end: 1.25rem; inset-inline-start: 50%; transform: translateX(-50%) translateY(1rem);
  background: var(--green-800); color: var(--cream); padding: .62rem 1.15rem; border-radius: 100px;
  font-size: .86rem; border: 1px solid rgba(217, 192, 138, .3); box-shadow: var(--shadow-2);
  opacity: 0; pointer-events: none; transition: opacity .2s var(--e-out), transform .2s var(--e-out); z-index: 60;
}
.toast.on { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.bad { background: var(--danger); border-color: rgba(255, 255, 255, .25); }

/* ---------- entrances (transform only, so content shows even if animation never runs) ---------- */
@media (prefers-reduced-motion: no-preference) {
  @keyframes rise { from { transform: translateY(14px); } to { transform: none; } }
  .hero-logo { animation: rise .7s var(--e-out) backwards .1s; }
  .hero h1 { animation: rise .7s var(--e-out) backwards .16s; }
  .tagline { animation: rise .7s var(--e-out) backwards .22s; }

  .loc { animation: rise .7s var(--e-out) backwards .30s; }
  .credentials { animation: rise .7s var(--e-out) backwards .36s; }
}

/* ---------- mobile: sticky enquiry pill, PrivateZone's .mcall ---------- */
@media (max-width: 900px) {
  .stage { grid-template-columns: 1fr; }
  .panel { position: static; }
  .mcall {
    display: inline-flex; white-space: nowrap;
    position: fixed; bottom: calc(16px + env(safe-area-inset-bottom));
    inset-inline: 0; margin-inline: auto; width: max-content; max-width: calc(100% - 32px); z-index: 50;
    padding: 14px 28px; font-size: 1rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.5), 0 10px 26px -8px rgba(14,32,25,.5);
  }
  body { padding-block-end: calc(84px + env(safe-area-inset-bottom)); }

  /* Touch targets under 44px: language toggle measured 31px tall (padding assumed the
     body's 1.5 line-height; a button's is `normal`, so the box came out shorter - same
     trap PrivateZone already hit and fixed the same way: state the target, don't compute
     it). Filter chips and the map link were 34px/25px. */
  .toggle button {
    min-height: 44px; padding-inline: 18px;
    display: inline-flex; align-items: center; justify-content: center;
  }
  .chip { min-height: 40px; padding-block: 0; display: inline-flex; align-items: center; }
  .plink { min-height: 44px; }

  /* The smallest rooms (2.65 m2 cabins) are legitimately too small to hit reliably at
     any font-size on a touch screen. The card list is the real workaround; this points
     to it instead of leaving it undiscovered. Desktop has no such difficulty, so the
     hint only exists at this breakpoint. */
  .list-hint {
    display: flex; align-items: center; min-height: 44px; margin-block-start: 10px;
    color: var(--green-600); font-size: .84rem; font-weight: 500; text-decoration: none;
  }

  /* ...and the list it points at is collapsed here, so the summary is a real tap target. */
  #allBox > summary { display: flex; align-items: center; min-height: 44px; cursor: pointer; }
  #allBox > summary::after {
    content: ''; inline-size: .5rem; block-size: .5rem; margin-inline-start: auto; flex: none;
    /* physical borders on purpose: the caret points DOWN when shut and UP when open in both
       directions. Logical ones flip with the text and swing it sideways on the RTL page. */
    border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
    transform: rotate(45deg); transition: transform .18s var(--e-out);
  }
  #allBox[open] > summary::after { transform: rotate(-135deg); }
}

/* ---------- admin header (this page only - the public page has no nav) ---------- */
.nav {
  position: sticky; top: 0; z-index: 40; height: 64px; display: flex; align-items: center;
  background: var(--green-900); color: var(--cream);
  border-block-end: 1px solid rgba(217, 192, 138, .22);
}
.nav .wrap { display: flex; align-items: center; gap: .85rem; }
.nav .toggle { position: static; }
.mark { display: flex; align-items: baseline; gap: .5rem; text-decoration: none; margin-inline-end: auto; }
.mark b { font-weight: 600; font-size: 1.04rem; letter-spacing: .03em; }
.mark span {
  font-size: .68rem; font-weight: 300; color: rgba(244, 239, 228, .62);
  border-inline-start: 1px solid rgba(217, 192, 138, .32); padding-inline-start: .5rem;
}
.nav :focus-visible { outline-color: var(--gold-soft); }
