/* The Agency Studios: one light, aligned system for every page. Blue is the only accent. */
:root {
  --bg: #F6F6F7; --surface: #FFFFFF; --tint: #EEF0F3;
  --ink: #111214; --ink-2: #4B4E57; --mute: #7A7E88;
  --line: rgba(17,18,20,.1); --line-strong: rgba(17,18,20,.18);
  --accent: #005FE6; --accent-hover: #0A52C4; --accent-soft: #E9F0FF; --on-dark-accent: #6AA6FF;
  --foot: #0F1013; --foot-text: #F4F5F7;
  --radius: 16px; --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(17,18,20,.04), 0 12px 32px -18px rgba(17,18,20,.18);
  --display: Outfit, system-ui, sans-serif; --text: Archivo, system-ui, sans-serif;
  --ease-out: cubic-bezier(.23,1,.32,1);
  --nav-h: 84px;
  color-scheme: light;
}
* { box-sizing: border-box; }
html { background: var(--bg); -webkit-font-smoothing: antialiased; scroll-behavior: smooth; scroll-padding-top: 100px; scrollbar-color: rgba(17,18,20,.3) var(--bg); }
body { margin: 0; background: var(--bg); color: var(--ink); font: 400 16px/1.6 var(--text); overflow-x: hidden; caret-color: var(--accent); }
::selection { background: rgba(0,95,230,.2); }
a { color: var(--accent); text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 600; letter-spacing: -.02em; text-wrap: balance; }
h1 { font-size: clamp(38px, 5.2vw, 64px); line-height: 1.02; }
h2 { font-size: clamp(30px, 3.4vw, 42px); line-height: 1.08; }
h3 { font-size: 20px; line-height: 1.25; letter-spacing: -.01em; }
p { margin: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.lede { font-size: 18px; line-height: 1.55; color: var(--ink-2); max-width: 60ch; text-wrap: pretty; }
.small { font-size: 14px; color: var(--mute); }
.head { display: grid; gap: 14px; max-width: 64ch; margin-bottom: clamp(28px, 4vw, 44px); }
.head .lede { font-size: 17px; }
section { padding: clamp(56px, 7vw, 96px) 0; }
section.tint { background: var(--tint); }
section.flush { padding-top: 0; }
[data-hidebar] { scrollbar-width: none; } [data-hidebar]::-webkit-scrollbar { display: none; }

/* buttons: one primary, one secondary, one quiet link. Press feedback on all. */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 0 22px; border-radius: 999px; font: 500 15px/1 var(--text); letter-spacing: 0; white-space: nowrap; cursor: pointer; border: 1px solid transparent; transition: transform 160ms var(--ease-out), background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease; }
.btn:active { transform: scale(.97); transition-duration: 100ms; }
.btn-primary { background: var(--accent); color: #FFFFFF; }
.btn-secondary { background: var(--surface); color: var(--ink); border-color: var(--line-strong); }
.btn-ghost { background: rgba(255,255,255,.14); color: #FFFFFF; border-color: rgba(255,255,255,.35); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.btn-sm { min-height: 40px; padding: 0 16px; font-size: 14px; }
.more { display: inline-flex; align-items: center; gap: 6px; font-weight: 500; color: var(--accent); }
.more::after { content: "\2192"; transition: transform 200ms var(--ease-out); }

/* nav: white material, ink text, always one line */
.nav { position: fixed; top: 0; left: 0; width: 100%; z-index: 50; background: rgba(255,255,255,.78); backdrop-filter: blur(18px) saturate(160%); -webkit-backdrop-filter: blur(18px) saturate(160%); border-bottom: 1px solid var(--line); }
.nav .wrap { height: var(--nav-h); display: flex; align-items: center; gap: clamp(16px, 3vw, 36px); }
.nav .logo img { height: 62px; width: auto; filter: invert(1); }
.nav ul { list-style: none; margin: 0 0 0 auto; padding: 0; display: flex; gap: clamp(14px, 2.2vw, 28px); font-size: 15px; font-weight: 500; }
.nav ul a { color: var(--ink-2); white-space: nowrap; padding: 6px 0; border-bottom: 2px solid transparent; transition: color .2s ease, border-color .2s ease; }
.nav ul a[aria-current="page"] { color: var(--ink); border-color: var(--accent); }
.nav .tel { font-size: 15px; font-weight: 500; color: var(--ink); white-space: nowrap; }
.nav .btn { min-height: 42px; padding: 0 18px; font-size: 14px; }
.menu-btn { display: none; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; cursor: pointer; flex: 0 0 auto; border-radius: 10px; position: relative; }
.menu-btn span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 200ms var(--ease-out); }
.menu-btn span:first-child { top: 17px; } .menu-btn span:last-child { top: 25px; }
.nav.open .menu-btn span:first-child { transform: translateY(4px) rotate(45deg); } .nav.open .menu-btn span:last-child { transform: translateY(-4px) rotate(-45deg); }
.nav li.m-only { display: none; }
@media (max-width: 1040px) { .nav .tel { display: none; } }
@media (max-width: 860px) {
  .menu-btn { display: block; } .nav li.m-only { display: block; } .nav .btn { margin-left: auto; }
  .nav ul { display: grid; position: absolute; left: 0; right: 0; top: 100%; height: calc(100dvh - var(--nav-h)); align-content: start; overflow-y: auto; margin: 0; padding: 4px clamp(20px, 4vw, 48px) 16px; background: #FFFFFF; border-bottom: 1px solid var(--line); opacity: 0; transform: translateY(-6px); pointer-events: none; transition: opacity 180ms var(--ease-out), transform 200ms var(--ease-out); }
  .nav.open ul { opacity: 1; transform: none; pointer-events: auto; }
  .nav ul li { border-top: 1px solid var(--line); } .nav ul li:first-child { border-top: 0; }
  .nav ul a { display: block; padding: 14px 0; font-size: 17px; border-bottom: 0; }
  .nav ul a[aria-current="page"] { color: var(--accent); }
  html.menu-open { overflow: hidden; }
}

/* hero: the only dark moment before the footer */
.hero { position: relative; overflow: hidden; background: #0F1013; color: #FFFFFF; padding: calc(var(--nav-h) + clamp(56px, 9vw, 120px)) 0 clamp(56px, 8vw, 104px); min-height: min(88svh, 800px); display: flex; align-items: flex-end; }
.hero-media { position: absolute; inset: 0; }
.hero-media img, .hero-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-media video { opacity: 0; transition: opacity 600ms ease; } .hero-media video.ready { opacity: 1; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,16,19,.35) 0%, rgba(15,16,19,.15) 35%, rgba(15,16,19,.75) 100%); }
.hero .wrap { position: relative; width: 100%; }
.hero-copy { max-width: 720px; display: grid; gap: 18px; }
.hero h1 { color: #FFFFFF; text-shadow: 0 2px 20px rgba(0,0,0,.35); }
.hero .sub { font-family: var(--display); font-weight: 500; font-size: clamp(20px, 2.2vw, 26px); line-height: 1.25; color: #FFFFFF; text-shadow: 0 1px 12px rgba(0,0,0,.35); }
.hero .lede { color: rgba(255,255,255,.82); max-width: 44ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
@media (prefers-reduced-transparency: reduce) { .nav { background: #FFFFFF; backdrop-filter: none; } .btn-ghost { background: rgba(15,16,19,.8); backdrop-filter: none; } }

/* room cards: the three things you can book, at a glance */
.rooms { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.room { display: grid; grid-template-rows: auto 1fr; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); color: inherit; transition: transform 200ms var(--ease-out), box-shadow 200ms ease; }
.room img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.room .body { padding: 22px 22px 24px; display: grid; gap: 10px; align-content: start; }
.room .kicker { font-size: 13px; font-weight: 500; color: var(--mute); }
.room h3 { font-size: 22px; }
.room p { font-size: 15px; color: var(--ink-2); line-height: 1.5; }
.room .meta { display: grid; gap: 6px; margin: 6px 0 4px; padding: 12px 0 0; border-top: 1px solid var(--line); font-size: 14px; color: var(--ink-2); }
.room .meta b { color: var(--ink); font-weight: 500; }
.room .actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-top: 4px; }
@media (max-width: 900px) { .rooms { grid-template-columns: 1fr; } }

/* feature list with photo: aligned two columns, photo left */
.feature { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 56px); align-items: center; padding: clamp(28px, 4vw, 40px) 0; border-top: 1px solid var(--line); }
.feature:first-of-type { border-top: 0; padding-top: 0; }
.feature figure { margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--tint); box-shadow: var(--shadow); position: relative; }
.feature figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.slides { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; overscroll-behavior-x: contain; aspect-ratio: 4 / 3; scrollbar-width: none; }
.slides::-webkit-scrollbar { display: none; }
.slides img { flex: 0 0 100%; scroll-snap-align: start; height: 100%; }
.arrows { position: absolute; bottom: 14px; right: 14px; display: flex; gap: 8px; }
.count { position: absolute; bottom: 14px; left: 14px; padding: 6px 10px; border-radius: 999px; background: rgba(15,16,19,.55); color: #FFFFFF; font-size: 12px; font-weight: 500; font-variant-numeric: tabular-nums; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); pointer-events: none; }
.room figure { margin: 0; position: relative; }
.room .slides img { aspect-ratio: auto; }
.arrows button { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.4); background: rgba(15,16,19,.55); color: #FFFFFF; font-size: 20px; line-height: 1; cursor: pointer; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); transition: transform 160ms var(--ease-out), background-color .2s ease; }
.arrows button:active { transform: scale(.94); }
.feature .text { display: grid; gap: 14px; }
.feature .text h2, .feature .text h3 { font-size: clamp(26px, 2.6vw, 34px); }
.feature .text .sub-head { font-family: var(--display); font-weight: 500; font-size: clamp(19px, 1.9vw, 24px); line-height: 1.3; color: var(--ink-2); margin-top: -6px; }
.feature .text p { color: var(--ink-2); text-wrap: pretty; }
.feature.flip figure { order: 2; }
.feature .actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-top: 6px; }
@media (max-width: 860px) { .feature { grid-template-columns: 1fr; } .feature.flip figure { order: 0; } }

/* spec list: label / value pairs, grouped by spacing, one rule above and below */
.spec { margin: 6px 0 0; padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; grid-template-columns: max-content 1fr; column-gap: 24px; row-gap: 8px; font-size: 15px; }
.spec dt { color: var(--mute); } .spec dd { margin: 0; color: var(--ink); font-weight: 500; }
.spec.two { grid-template-columns: max-content 1fr max-content 1fr; }
@media (max-width: 700px) { .spec.two { grid-template-columns: max-content 1fr; } }

/* tiles: photo + caption, same size everywhere */
.tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); gap: 20px; }
.tiles figure { margin: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-width: 0; }
.tiles img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.tiles figcaption { padding: 16px 18px 18px; font-size: 14.5px; line-height: 1.55; color: var(--ink-2); }
.tiles figcaption b { display: block; font-family: var(--display); font-weight: 600; font-size: 17px; color: var(--ink); margin-bottom: 4px; letter-spacing: -.01em; }

/* checklists in two columns */
.incl { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 10px 32px; font-size: 15.5px; }
.incl li { display: flex; gap: 12px; align-items: baseline; color: var(--ink-2); padding: 6px 0; }
.incl li::before { content: ""; flex: 0 0 8px; height: 8px; border-radius: 50%; background: var(--accent); transform: translateY(-2px); }

/* steps: a real sequence */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); gap: 20px; counter-reset: step; }
.steps li { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.steps li::before { counter-increment: step; content: counter(step); display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); font: 600 14px var(--display); margin-bottom: 16px; }
.steps h3 { font-size: 18px; margin-bottom: 8px; }
.steps p { font-size: 14.5px; line-height: 1.55; color: var(--ink-2); }

/* photo rail */
.rail { list-style: none; margin: 0; padding: 0 clamp(20px, 4vw, 48px) 8px; display: flex; gap: 16px; overflow-x: auto; overscroll-behavior-x: contain; cursor: grab; user-select: none; }
.rail:active { cursor: grabbing; }
.rail li { flex: 0 0 clamp(260px, 32vw, 420px); }
.rail img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--radius); background: var(--tint); box-shadow: var(--shadow); }
.rail .crop { display: block; position: relative; width: 100%; aspect-ratio: 3 / 2; overflow: hidden; border-radius: var(--radius); background: var(--tint); box-shadow: var(--shadow); }
.rail .crop img { position: absolute; top: 0; left: -16.67%; width: 133.34%; height: auto; aspect-ratio: auto; border-radius: 0; box-shadow: none; }

/* quotes */
.quotes { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 20px; }
.quotes li { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); display: grid; gap: 16px; align-content: space-between; }
.quotes blockquote { margin: 0; font-size: 16px; line-height: 1.55; color: var(--ink); }
.quotes footer { font-size: 14px; color: var(--mute); } .quotes footer b { display: block; color: var(--ink); font-weight: 600; }

/* logos */
.logos { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 140px), 1fr)); gap: 12px; }
.logos li { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); height: 88px; display: flex; align-items: center; justify-content: center; padding: 16px 20px; }
.logos img { width: 100%; height: 52px; object-fit: contain; filter: grayscale(1); opacity: .8; transition: filter .25s ease, opacity .25s ease; }

/* stats: aligned numbers */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); gap: 20px; }
.stats div { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow); }
.stats b { display: block; font-family: var(--display); font-weight: 600; font-size: 26px; letter-spacing: -.02em; line-height: 1.1; font-variant-numeric: tabular-nums; }
.stats span { display: block; margin-top: 4px; font-size: 14px; color: var(--mute); }

/* cta */
.cta { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta .wrap { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; align-items: center; }
.cta h2 { font-size: clamp(26px, 3vw, 36px); }
.cta p { color: var(--ink-2); margin-top: 8px; max-width: 52ch; }
.cta .row { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 760px) { .cta .wrap { grid-template-columns: 1fr; } }

/* forms */
.book { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr); gap: clamp(28px, 5vw, 72px); align-items: start; }
.book .side { position: sticky; top: calc(var(--nav-h) + 24px); display: grid; gap: 16px; }
.book .side .alt { color: var(--ink-2); font-size: 15px; }
.book .side .alt a { font-weight: 500; }
.rate-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; display: grid; gap: 6px; box-shadow: var(--shadow); }
.rate-big { font-family: var(--display); font-weight: 600; font-size: 26px; letter-spacing: -.02em; }
.rate-big span { font-family: var(--text); font-weight: 400; font-size: 15px; color: var(--mute); margin-left: 8px; }
form { display: grid; gap: 26px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(20px, 3vw, 32px); box-shadow: var(--shadow); }
fieldset { border: 0; margin: 0; padding: 0; display: grid; gap: 12px; min-width: 0; }
legend { font-family: var(--display); font-weight: 600; font-size: 18px; color: var(--ink); margin-bottom: 10px; padding: 0; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 520px) { .row { grid-template-columns: 1fr; } }
label.field { display: grid; gap: 6px; font-size: 14px; font-weight: 500; color: var(--ink-2); min-width: 0; }
.row > * { min-width: 0; }
input, select { font: inherit; font-size: 16px; color: var(--ink); background: #FFFFFF; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); min-height: 46px; padding: 0 14px; width: 100%; min-width: 0; max-width: 100%; transition: border-color 150ms ease, box-shadow 150ms ease; }
input[type=date] { -webkit-appearance: none; appearance: none; display: block; text-align: left; }   /* iOS gives date fields an intrinsic width that overflows a narrow column */
input::placeholder { color: var(--mute); }
input:focus, select:focus { outline: 0; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(0,95,230,.18); }
.seg { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 4px; padding: 4px; background: var(--tint); border-radius: 12px; }
.seg label { position: relative; display: grid; place-items: center; min-height: 40px; padding: 0 8px; border-radius: 9px; font-size: 14.5px; font-weight: 500; cursor: pointer; text-align: center; color: var(--ink-2); transition: background-color .2s ease, color .2s ease, transform .15s ease; }
.seg label:active { transform: scale(.97); }
.seg input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; min-height: 0; }
.seg label:has(:checked) { background: var(--surface); color: var(--ink); box-shadow: 0 1px 3px rgba(17,18,20,.12); }
.seg label:has(:focus-visible) { outline: 2px solid var(--accent); outline-offset: 2px; }
@media (max-width: 520px) { .seg.wrap4 { grid-auto-flow: row; grid-template-columns: 1fr 1fr; } }
.checks { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 8px; }
.checks label { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); font-size: 14.5px; cursor: pointer; transition: border-color .2s ease, background-color .2s ease; }
.checks label:has(:checked) { border-color: var(--accent); background: var(--accent-soft); }
.checks input { width: 20px; height: 20px; min-height: 0; margin: 0; padding: 0; accent-color: var(--accent); flex: 0 0 auto; }
.submit { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.submit small { color: var(--mute); font-size: 13px; }
.submit button { border: 0; font-family: var(--text); }
.sent { color: var(--ink); font-size: 15px; font-weight: 500; }
@media (max-width: 860px) { .book { grid-template-columns: 1fr; } .book .side { position: static; } }

/* schematic */
.plan-layout { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(280px, .8fr); gap: 20px; align-items: start; }
.plan-stage { position: relative; background: #FFFFFF; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.plan-viewport { aspect-ratio: 1376 / 768; overflow: auto; overscroll-behavior: contain; cursor: grab; scrollbar-width: none; touch-action: pan-x pan-y pinch-zoom; }
.plan-viewport::-webkit-scrollbar { display: none; } .plan-viewport:active { cursor: grabbing; }
.plan-canvas { position: relative; width: 100%; transition: width 260ms var(--ease-out), height 260ms var(--ease-out); }
.plan-canvas img { width: 100%; height: 100%; display: block; user-select: none; -webkit-user-drag: none; }
.plan-tools { position: absolute; top: 12px; right: 12px; z-index: 2; display: flex; gap: 4px; align-items: center; padding: 4px; border-radius: 999px; background: rgba(255,255,255,.85); backdrop-filter: blur(12px); border: 1px solid var(--line); box-shadow: var(--shadow); }
.plan-tools .tool { width: 34px; height: 34px; border-radius: 50%; border: 0; background: transparent; color: var(--ink); font: 600 20px/1 var(--text); cursor: pointer; transition: background-color .2s ease, transform .15s ease; }
.plan-tools .tool.text { width: auto; padding: 0 12px; font-size: 13px; }
.plan-tools .tool:active { transform: scale(.92); }
.plan-tools output { font-size: 12px; color: var(--mute); min-width: 40px; text-align: center; font-variant-numeric: tabular-nums; }
.spot { position: absolute; width: 15px; height: 15px; margin: -7.5px 0 0 -7.5px; border-radius: 50%; border: 1.5px solid #FFFFFF; background: var(--accent); box-shadow: 0 0 0 3px rgba(0,95,230,.22), 0 1px 6px rgba(0,0,0,.3); cursor: pointer; padding: 0; transition: transform 200ms var(--ease-out); }
.spot.on { transform: scale(1.35); background: var(--ink); }
.legend { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; max-height: min(70vh, 640px); overflow-y: auto; }
.legend li { position: relative; padding: 12px 14px 12px 40px; border-radius: 12px; border: 1px solid var(--line); background: var(--surface); cursor: pointer; transition: border-color .2s ease, background-color .2s ease; }
.legend li::before { content: ""; position: absolute; left: 14px; top: 16px; width: 14px; height: 14px; border-radius: 50%; background: var(--accent); border: 2px solid #FFFFFF; box-shadow: 0 0 0 2px rgba(0,95,230,.25); }
.legend li.on { border-color: var(--accent); background: var(--accent-soft); } .legend li.on::before { background: var(--ink); }
.legend b { display: block; font-weight: 600; font-size: 15px; } .legend span { display: block; font-size: 13px; color: var(--mute); }
.legend li img { float: right; width: 64px; height: 48px; margin: 0 0 4px 12px; border-radius: 8px; object-fit: cover; background: var(--tint); }
.legend li.on img { float: none; display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; margin: 10px 0 0; border-radius: 10px; }
.spot-pop { position: absolute; z-index: 3; margin: 0; width: 220px; padding: 6px; border-radius: 12px; background: #FFFFFF; border: 1px solid var(--line); box-shadow: 0 12px 32px rgba(0,0,0,.22); pointer-events: none; opacity: 0; transform: translate(-50%, calc(-100% - 12px)) scale(.96); transition: opacity 160ms ease, transform 220ms var(--ease-out); }
.spot-pop.below { transform: translate(-50%, 20px) scale(.96); }
.spot-pop.show { opacity: 1; transform: translate(-50%, calc(-100% - 18px)); }
.spot-pop.below.show { transform: translate(-50%, 26px); }
.spot-pop img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 8px; background: var(--tint); }
.spot-pop figcaption { padding: 6px 4px 2px; font-size: 13px; font-weight: 600; color: var(--ink); }
.legend p { display: none; margin-top: 8px; font-size: 14px; line-height: 1.5; color: var(--ink-2); } .legend li.on p { display: block; }
.plans-more { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.plans-more figure { margin: 0; background: #FFFFFF; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.plans-more figcaption { padding: 14px 16px; font-size: 14px; line-height: 1.5; color: var(--ink-2); } .plans-more figcaption b { display: block; color: var(--ink); margin-bottom: 4px; }
.plan-stage.no-dots .spot { display: none; }
.plan-toggle { display: flex; flex-wrap: wrap; gap: 8px 14px; align-items: center; margin: 0; padding: 12px 14px; border-top: 1px solid var(--line); background: var(--surface); }
.plan-note { margin-top: 20px; font-size: 14px; color: var(--mute); max-width: 60em; }
.plan-img { width: 100%; background: #FFFFFF; border-radius: var(--radius); border: 1px solid var(--line); }
@media (max-width: 860px) { .plan-layout, .plans-more { grid-template-columns: 1fr; } .legend { max-height: none; } }

/* footer: the dark bookend */
.foot { background: var(--foot); color: var(--foot-text); padding: clamp(48px, 6vw, 72px) 0 0; }
.foot .cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 56px); padding-bottom: clamp(36px, 5vw, 56px); }
.foot .brand img { height: 64px; width: auto; margin-bottom: 18px; }
.foot .brand p { max-width: 40ch; font-size: 14.5px; line-height: 1.65; color: rgba(244,245,247,.6); }
.foot h4 { margin: 0 0 14px; font-family: var(--text); font-size: 13px; font-weight: 600; color: rgba(244,245,247,.55); }
.foot address { font-style: normal; font-size: 14.5px; line-height: 1.7; }
.foot ul { list-style: none; margin: 0; padding: 0; font-size: 14.5px; display: grid; gap: 9px; }
.foot a { color: rgba(244,245,247,.85); }
.foot .legal { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; padding: 20px 0; border-top: 1px solid rgba(244,245,247,.12); font-size: 13px; color: rgba(244,245,247,.55); }
.foot .legal span:last-child { display: flex; gap: 14px; } .foot .legal a { color: rgba(244,245,247,.6); }
@media (max-width: 900px) { .foot .cols { grid-template-columns: 1fr 1fr; } .foot .cols > div:first-child { grid-column: span 2; } }

/* motion: one entrance, from a visible default, ease-out */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .reveal { animation: rise linear both; animation-timeline: view(); animation-range: entry 0% entry 35%; }
  }
}
@keyframes rise { from { opacity: .3; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover { background: var(--accent-hover); }
  .btn-secondary:hover { border-color: var(--ink); }
  .btn-ghost:hover { background: rgba(255,255,255,.24); }
  .more:hover::after { transform: translateX(3px); }
  .nav ul a:hover { color: var(--ink); }
  .room:hover { transform: translateY(-2px); box-shadow: 0 2px 4px rgba(17,18,20,.05), 0 20px 40px -20px rgba(17,18,20,.25); }
  .logos li:hover img { filter: none; opacity: 1; }
  .arrows button:hover { background: rgba(15,16,19,.8); }
  .legend li:hover { border-color: var(--line-strong); }
  .foot a:hover { color: #FFFFFF; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .reveal { animation: none; } *, *::before, *::after { transition-duration: 1ms !important; } }

/* inner pages */
.page-top { padding-top: calc(var(--nav-h) + clamp(40px, 6vw, 72px)); }
.kicker { font-size: 14px; font-weight: 500; color: var(--mute); }
.tiles + .cols2 { margin-top: 36px; }
.cols2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 24px 40px; align-items: start; margin-bottom: 28px; }
.tiles + .plan-img, .tiles + p { margin-top: 24px; }
.shops-wrap { margin-top: 36px; } .shops-wrap h3 { margin-bottom: 14px; }
.shops { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.shops li { padding: 9px 14px; border: 1px solid var(--line-strong); border-radius: 999px; font-size: 14px; color: var(--ink-2); background: var(--surface); }
.head h1 { font-size: clamp(34px, 4.4vw, 56px); }
.rate-big { margin: 4px 0 2px; }
