/* Au Bon Hostel — production stylesheet
   Design direction: Old Town Editorial / lightweight, accessible, responsive. */

:root {
  --ink: #172132;
  --ink-2: #263247;
  --paper: #fffdf8;
  --cream: #fbf5e9;
  --sand: #e8d8b9;
  --yellow: #f4b844;
  --yellow-soft: #f8d983;
  --coral: #e75b45;
  --teal: #2d7773;
  --blue: #3459a3;
  --muted: #626a76;
  --line: rgba(23, 33, 50, .15);
  --white-line: rgba(255, 253, 248, .18);
  --shadow-sm: 0 12px 36px rgba(23, 33, 50, .09);
  --shadow-md: 0 22px 60px rgba(23, 33, 50, .14);
  --radius-sm: 10px;
  --radius: 20px;
  --radius-lg: 34px;
  --container: 1180px;
  --wide: 1390px;
  --header-h: 88px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 105px; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 4px; }
p, h1, h2, h3, h4, ul, ol, figure, blockquote { margin-top: 0; }
p:last-child { margin-bottom: 0; }
address { font-style: normal; }
::selection { color: var(--ink); background: var(--yellow); }

.skip-link {
  position: fixed; z-index: 9999; top: 10px; left: 10px;
  padding: 10px 15px; color: var(--paper); background: var(--ink);
  transform: translateY(-160%); transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 42px), var(--container)); margin-inline: auto; }
.container--wide { width: min(calc(100% - 42px), var(--wide)); margin-inline: auto; }
.section { position: relative; padding: 112px 0; overflow: clip; }
.section--small { padding: 74px 0; }
.section--tight { padding: 0 0 112px; }
.section--cream { background: var(--cream); }
.section--yellow { background: var(--yellow); }
.section--ink { color: var(--paper); background: var(--ink); }
.section--pattern { background-color: var(--cream); background-image: url('/assets/images/tile-pattern.svg'); }
.stack > * + * { margin-top: 22px; }

h1, h2, h3, h4 { margin-bottom: .5em; line-height: 1.07; letter-spacing: -.035em; }
h1, h2, .display { font-family: var(--serif); font-weight: 700; }
h1 { font-size: clamp(3.5rem, 7.2vw, 7.4rem); }
h2 { font-size: clamp(2.6rem, 5vw, 5rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 2rem); }
h4 { font-size: 1.15rem; }
.lead { max-width: 720px; color: var(--muted); font-size: clamp(1.08rem, 1.6vw, 1.32rem); line-height: 1.65; }
.section--ink .lead, .dark-copy .lead { color: rgba(255, 253, 248, .72); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px;
  font-size: .75rem; font-weight: 800; line-height: 1; letter-spacing: .19em; text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 34px; height: 3px; background: var(--coral); }
.eyebrow--light::before { background: var(--yellow); }
.kicker { font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.micro { color: var(--muted); font-size: .82rem; line-height: 1.45; }
.text-link {
  display: inline-flex; align-items: center; gap: 9px; padding-bottom: 4px;
  border-bottom: 2px solid currentColor; font-size: .86rem; font-weight: 800; letter-spacing: .08em; text-decoration: none; text-transform: uppercase;
}
.text-link .icon { transition: transform .25s var(--ease); }
.text-link:hover .icon { transform: translateX(4px); }

.icon { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.icon--sm { width: 17px; height: 17px; }
.icon--lg { width: 30px; height: 30px; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 22px; border: 2px solid transparent; border-radius: 999px;
  font-size: .79rem; font-weight: 800; line-height: 1; letter-spacing: .1em; text-decoration: none; text-transform: uppercase;
  cursor: pointer; transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s, box-shadow .25s;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .menu-toggle:focus-visible, .filter-button:focus-visible, .accordion__trigger:focus-visible, .route-tab:focus-visible, .gallery-button:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }
.button--primary { color: var(--paper); background: var(--ink); box-shadow: 0 12px 28px rgba(23, 33, 50, .18); }
.button--primary:hover { color: var(--ink); background: var(--yellow); }
.button--coral { color: var(--paper); background: var(--coral); }
.button--coral:hover { color: var(--paper); background: var(--teal); }
.button--light { color: var(--ink); background: var(--paper); }
.button--light:hover { background: var(--yellow); }
.button--outline { color: var(--ink); border-color: var(--ink); background: transparent; }
.button--outline:hover { color: var(--paper); background: var(--ink); }
.button--ghost-light { color: var(--paper); border-color: rgba(255,255,255,.62); background: transparent; }
.button--ghost-light:hover { color: var(--ink); border-color: var(--paper); background: var(--paper); }
.button--small { min-height: 43px; padding-inline: 17px; font-size: .72rem; }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 32px; }

/* Header */
.site-header {
  position: fixed; z-index: 1000; inset: 0 0 auto; height: var(--header-h); color: var(--paper);
  border-bottom: 1px solid transparent; transition: color .3s, background .3s, border-color .3s, box-shadow .3s, height .3s;
}
.site-header::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(16,24,38,.76), transparent); pointer-events: none; transition: opacity .3s; }
.site-header.is-scrolled, body:not(.page-home) .site-header { height: 76px; color: var(--ink); border-color: var(--line); background: rgba(255, 253, 248, .95); box-shadow: 0 8px 35px rgba(23,33,50,.07); backdrop-filter: blur(15px); }
.site-header.is-scrolled::before, body:not(.page-home) .site-header::before { opacity: 0; }
.header-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; height: 100%; }
.brand { position: relative; display: block; width: 238px; flex: 0 0 auto; }
.brand img { width: 100%; }
.brand .logo-dark { position: absolute; inset: 0; opacity: 0; }
.site-header.is-scrolled .brand .logo-light, body:not(.page-home) .site-header .brand .logo-light { opacity: 0; }
.site-header.is-scrolled .brand .logo-dark, body:not(.page-home) .site-header .brand .logo-dark { opacity: 1; }
.site-nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 29px; margin: 0; padding: 0; list-style: none; }
.nav-link { position: relative; padding: 12px 0; font-size: .73rem; font-weight: 800; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; }
.nav-link::after { content: ''; position: absolute; right: 0; bottom: 6px; left: 0; height: 2px; background: var(--yellow); transform: scaleX(0); transform-origin: right; transition: transform .3s var(--ease); }
.nav-link:hover::after, .nav-link[aria-current='page']::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: 12px; margin-left: 28px; }
.site-header:not(.is-scrolled) .header-actions .button--light { color: var(--ink); }
.menu-toggle { display: none; width: 45px; height: 45px; align-items: center; justify-content: center; border: 1px solid currentColor; border-radius: 50%; background: transparent; cursor: pointer; }
.mobile-nav { display: none; }

/* Home hero */
.home-hero {
  position: relative; min-height: 820px; color: var(--paper); background: var(--ink); overflow: hidden;
}
.home-hero::before { content: ''; position: absolute; inset: 0; opacity: .08; background-image: radial-gradient(var(--paper) 1px, transparent 1px); background-size: 24px 24px; }
.home-hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, .93fr) minmax(480px, 1.07fr); gap: 60px; align-items: center; min-height: 820px; padding-top: 105px; padding-bottom: 64px; }
.home-hero__copy { position: relative; padding: 45px 0; }
.home-hero__copy h1 { max-width: 780px; margin-bottom: 26px; }
.home-hero__copy h1 em { color: var(--yellow); font-style: italic; }
.home-hero__copy p { max-width: 620px; color: rgba(255,253,248,.76); font-size: 1.16rem; }
.hero-note { display: flex; gap: 30px; margin-top: 38px; padding-top: 25px; border-top: 1px solid var(--white-line); }
.hero-note__item strong { display: block; margin-bottom: 2px; color: var(--yellow); font-family: var(--serif); font-size: 1.75rem; }
.hero-note__item span { color: rgba(255,253,248,.65); font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.hero-collage { position: relative; height: 650px; }
.hero-photo {
  position: absolute; top: 39px; right: 0; width: 82%; height: 515px; overflow: hidden; border-radius: 6px 110px 6px 6px; background: var(--yellow); box-shadow: var(--shadow-md); transform: rotate(1.5deg);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-card {
  position: absolute; z-index: 3; left: 0; bottom: 25px; width: 300px; padding: 28px;
  color: var(--ink); background: var(--yellow); box-shadow: var(--shadow-md); transform: rotate(-3deg);
}
.hero-card .kicker { margin-bottom: 22px; }
.hero-card strong { display: block; margin-bottom: 6px; font-family: var(--serif); font-size: 2.4rem; line-height: .95; }
.hero-card p { font-size: .9rem; line-height: 1.5; }
.hero-stamp { position: absolute; z-index: 4; top: 2px; left: 8%; display: grid; width: 130px; aspect-ratio: 1; place-items: center; border: 2px solid var(--paper); border-radius: 50%; background: var(--coral); transform: rotate(-9deg); }
.hero-stamp::after { content: ''; position: absolute; inset: 8px; border: 1px dashed var(--paper); border-radius: inherit; }
.hero-stamp span { position: relative; z-index: 1; max-width: 80px; font-size: .69rem; font-weight: 900; line-height: 1.3; letter-spacing: .11em; text-align: center; text-transform: uppercase; }
.hero-shape { position: absolute; right: -38px; bottom: -100px; width: 240px; aspect-ratio: 1; border-radius: 45% 55% 40% 60%; background: var(--teal); opacity: .68; }

.quick-booking { position: relative; z-index: 10; margin-top: -30px; }
.quick-booking__inner { display: grid; grid-template-columns: 1fr 1fr .8fr auto; gap: 0; padding: 10px; color: var(--ink); background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.quick-field { position: relative; padding: 12px 22px; border-right: 1px solid var(--line); }
.quick-field label { display: block; margin-bottom: 3px; color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.quick-field input, .quick-field select { width: 100%; padding: 0; border: 0; color: var(--ink); background: transparent; font-weight: 700; outline: none; }
.quick-booking .button { min-width: 190px; border-radius: 0; }
.form-message { display: none; grid-column: 1/-1; margin: 8px 12px 0; color: #9d2f23; font-size: .82rem; }
.form-message.is-visible { display: block; }

.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--yellow); }
.marquee__track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.marquee__group { display: flex; align-items: center; }
.marquee__item { display: inline-flex; align-items: center; gap: 18px; padding: 18px 30px; font-size: .78rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; white-space: nowrap; }
.marquee__item::after { content: '✦'; color: var(--coral); font-size: 1rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 35px; margin-bottom: 54px; }
.section-heading h2 { max-width: 830px; margin-bottom: 0; }
.section-heading--center { display: block; max-width: 850px; margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading--center .lead { margin-inline: auto; }

/* Editorial story */
.story-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }
.story-number { position: relative; padding: 38px 40px 48px; background: var(--yellow); }
.story-number::before { content: ''; position: absolute; inset: 16px; border: 1px solid rgba(23,33,50,.25); pointer-events: none; }
.story-number strong { display: block; font-family: var(--serif); font-size: clamp(6rem, 14vw, 11rem); line-height: .86; letter-spacing: -.07em; }
.story-number span { display: block; max-width: 220px; margin-top: 22px; font-size: .8rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.story-number__dot { position: absolute; right: -28px; bottom: -28px; width: 80px; height: 80px; border-radius: 50%; background: var(--coral); }
.story-copy h2 { max-width: 720px; }
.fact-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin-top: 38px; border-top: 1px solid var(--line); }
.fact { display: flex; gap: 13px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.fact:nth-child(odd) { padding-right: 25px; }
.fact:nth-child(even) { padding-left: 25px; border-left: 1px solid var(--line); }
.fact strong { display: block; margin-bottom: 2px; font-size: .86rem; }
.fact span { display: block; color: var(--muted); font-size: .8rem; line-height: 1.45; }
.fact .icon { flex: 0 0 auto; color: var(--coral); }

/* Room cards */
.room-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.room-card { position: relative; overflow: hidden; border: 1px solid var(--line); background: var(--paper); transition: transform .35s var(--ease), box-shadow .35s; }
.room-card:hover { transform: translateY(-8px) rotate(.35deg); box-shadow: var(--shadow-md); }
.room-card__media { position: relative; aspect-ratio: 1.35; overflow: hidden; background: var(--cream); }
.room-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.room-card:hover .room-card__media img { transform: scale(1.035); }
.room-card__badge { position: absolute; top: 15px; left: 15px; padding: 8px 11px; color: var(--paper); background: var(--ink); font-size: .64rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.room-card__body { padding: 27px; }
.room-card__meta { display: flex; flex-wrap: wrap; gap: 9px 17px; margin-bottom: 17px; color: var(--muted); font-size: .76rem; }
.room-card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.room-card__body h3 { margin-bottom: 11px; }
.room-card__body p { color: var(--muted); font-size: .91rem; }
.room-card__body .text-link { margin-top: 10px; }
.room-note { margin-top: 26px; color: var(--muted); font-size: .82rem; }

/* Amenities */
.amenity-stage { position: relative; padding: 90px 0; color: var(--paper); background: var(--ink); }
.amenity-stage::after { content: ''; position: absolute; top: 0; right: 0; width: 35%; height: 100%; background: var(--teal); opacity: .13; clip-path: polygon(30% 0,100% 0,100% 100%,0 100%); }
.amenity-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--white-line); }
.amenity { min-height: 185px; padding: 28px; background: var(--ink); transition: background .3s; }
.amenity:hover { background: var(--ink-2); }
.amenity .icon { margin-bottom: 34px; color: var(--yellow); }
.amenity strong { display: block; margin-bottom: 6px; font-family: var(--serif); font-size: 1.35rem; }
.amenity span { color: rgba(255,253,248,.62); font-size: .82rem; }

/* Photo / gallery */
.photo-collage { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; }
.photo-main, .photo-small { position: relative; overflow: hidden; background: var(--sand); }
.photo-main { min-height: 570px; border-radius: 0 80px 0 0; }
.photo-small { min-height: 273px; }
.photo-side { display: grid; gap: 24px; }
.photo-main img, .photo-small img { width: 100%; height: 100%; object-fit: cover; }
.gallery-button { position: absolute; inset: 0; width: 100%; padding: 0; border: 0; background: transparent; cursor: zoom-in; }
.gallery-button::after { content: 'View'; position: absolute; right: 14px; bottom: 14px; padding: 8px 13px; color: var(--paper); background: var(--ink); border-radius: 999px; font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; opacity: 0; transform: translateY(5px); transition: .25s; }
.gallery-button:hover::after, .gallery-button:focus-visible::after { opacity: 1; transform: translateY(0); }

/* Location */
.location-band { display: grid; grid-template-columns: .92fr 1.08fr; min-height: 610px; }
.location-band__copy { display: flex; flex-direction: column; justify-content: center; padding: 70px max(40px, calc((100vw - var(--container))/2)); color: var(--paper); background: var(--blue); }
.location-band__visual { position: relative; overflow: hidden; background: var(--yellow); }
.location-band__visual img { width: 100%; height: 100%; object-fit: cover; }
.distance-list { margin: 28px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.25); }
.distance-list li { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.2); font-size: .88rem; }
.distance-list strong { color: var(--yellow); }

/* CTA */
.cta-panel { position: relative; display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; overflow: hidden; background: var(--yellow); }
.cta-panel__art { min-height: 480px; background: var(--cream); }
.cta-panel__art img { width: 100%; height: 100%; object-fit: cover; }
.cta-panel__copy { display: flex; flex-direction: column; justify-content: center; padding: 65px; }
.cta-panel__copy h2 { font-size: clamp(2.5rem,4.5vw,4.5rem); }
.cta-panel__copy p { max-width: 540px; }

/* Footer */
.site-footer { padding: 80px 0 25px; color: var(--paper); background: var(--ink); }
.footer-main { display: grid; grid-template-columns: 1.5fr .7fr .7fr 1.25fr; gap: 55px; }
.footer-brand img { width: 235px; margin-bottom: 24px; }
.footer-brand p { max-width: 350px; color: rgba(255,253,248,.6); font-size: .9rem; }
.footer-col h2 { margin-bottom: 22px; font-family: var(--sans); font-size: .72rem; letter-spacing: .17em; text-transform: uppercase; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li + li { margin-top: 10px; }
.footer-links a, .footer-contact a { color: rgba(255,253,248,.68); font-size: .86rem; text-decoration: none; transition: color .2s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--yellow); }
.footer-contact { display: grid; gap: 9px; }
.footer-contact address { margin-bottom: 5px; color: rgba(255,253,248,.68); font-size: .86rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 65px; padding-top: 22px; border-top: 1px solid var(--white-line); color: rgba(255,253,248,.44); font-size: .72rem; }
.footer-bottom__links { display: flex; gap: 25px; }
.footer-bottom a { text-decoration: none; }
.mobile-booking { display: none; }

/* Subpage hero */
.subhero { position: relative; min-height: 530px; padding: 155px 0 70px; color: var(--paper); background: var(--ink); overflow: hidden; }
.subhero::before { content: ''; position: absolute; inset: 0; opacity: .08; background-image: radial-gradient(var(--paper) 1px, transparent 1px); background-size: 24px 24px; }
.subhero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .72fr; gap: 70px; align-items: center; }
.subhero h1 { max-width: 820px; margin-bottom: 20px; font-size: clamp(3.4rem,6.6vw,6.5rem); }
.subhero h1 em { color: var(--yellow); font-style: italic; }
.subhero p { max-width: 670px; color: rgba(255,253,248,.72); font-size: 1.12rem; }
.subhero__visual { position: relative; height: 320px; }
.subhero__visual img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px 72px 4px 4px; }
.subhero__visual::after { content: ''; position: absolute; right: -22px; bottom: -22px; width: 110px; height: 110px; border: 2px solid var(--paper); border-radius: 50%; background: var(--coral); }
.breadcrumbs { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 35px; padding: 0; list-style: none; color: rgba(255,253,248,.58); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.breadcrumbs a { color: var(--paper); text-decoration: none; }
.breadcrumbs li:not(:last-child)::after { content: '/'; margin-left: 8px; }

/* Profile */
.profile-intro { display: grid; grid-template-columns: 1.05fr .95fr; gap: 90px; align-items: start; }
.profile-intro__aside { position: sticky; top: 110px; }
.profile-statement { padding: 42px; color: var(--paper); background: var(--blue); }
.profile-statement blockquote { margin: 0 0 23px; font-family: var(--serif); font-size: clamp(2rem,3.3vw,3.3rem); line-height: 1.12; }
.profile-statement p { color: rgba(255,253,248,.72); }
.principle-list { display: grid; gap: 0; margin-top: 45px; border-top: 1px solid var(--line); }
.principle { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.principle__number { display: grid; width: 42px; height: 42px; place-items: center; color: var(--paper); border-radius: 50%; background: var(--coral); font-family: var(--serif); font-weight: 700; }
.principle h3 { margin-bottom: 6px; font-family: var(--sans); font-size: 1.1rem; letter-spacing: -.01em; }
.principle p { color: var(--muted); font-size: .9rem; }
.truth-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.truth-card { padding: 30px; border: 1px solid var(--line); background: var(--paper); }
.truth-card .icon { margin-bottom: 25px; color: var(--coral); }
.truth-card h3 { font-size: 1.3rem; }
.truth-card p { color: var(--muted); font-size: .88rem; }

/* Rooms catalog */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 45px; }
.filter-button { min-height: 44px; padding: 0 18px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); background: transparent; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: .25s; }
.filter-button:hover, .filter-button.is-active { color: var(--paper); border-color: var(--ink); background: var(--ink); }
.room-catalog { display: grid; gap: 26px; }
.room-entry { display: grid; grid-template-columns: .92fr 1.08fr; min-height: 440px; border: 1px solid var(--line); background: var(--paper); transition: opacity .25s, transform .25s; }
.room-entry.is-hidden { display: none; }
.room-entry:nth-child(even) { grid-template-columns: 1.08fr .92fr; }
.room-entry:nth-child(even) .room-entry__media { order: 2; }
.room-entry__media { position: relative; min-height: 430px; overflow: hidden; background: var(--cream); }
.room-entry__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.room-entry:hover .room-entry__media img { transform: scale(1.025); }
.room-entry__content { display: flex; flex-direction: column; justify-content: center; padding: 52px; }
.room-entry__label { margin-bottom: 17px; color: var(--coral); font-size: .7rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.room-entry__content h2 { font-size: clamp(2.1rem,3.6vw,3.7rem); }
.room-entry__content > p { color: var(--muted); }
.room-specs { display: flex; flex-wrap: wrap; gap: 11px 18px; margin: 20px 0 0; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.room-spec { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-size: .78rem; }
.room-feature-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px 22px; margin: 20px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: .82rem; }
.room-feature-list li { position: relative; padding-left: 18px; }
.room-feature-list li::before { content: ''; position: absolute; top: .68em; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--teal); }
.room-entry .actions { margin-top: 25px; }

/* Facilities */
.facility-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.facility-card { position: relative; min-height: 260px; padding: 32px; overflow: hidden; border: 1px solid var(--line); background: var(--paper); }
.facility-card::after { content: ''; position: absolute; right: -28px; bottom: -28px; width: 100px; height: 100px; border-radius: 50%; background: var(--yellow); opacity: .16; transition: transform .35s; }
.facility-card:hover::after { transform: scale(1.35); }
.facility-card .icon { margin-bottom: 36px; color: var(--coral); }
.facility-card h3 { font-size: 1.4rem; }
.facility-card p { color: var(--muted); font-size: .87rem; }
.service-board { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--white-line); }
.service-board__item { display: grid; grid-template-columns: 48px 1fr; gap: 17px; padding: 26px; border-right: 1px solid var(--white-line); border-bottom: 1px solid var(--white-line); }
.service-board__item:nth-child(even) { border-right: 0; }
.service-board__item .icon { color: var(--yellow); }
.service-board__item strong { display: block; margin-bottom: 4px; }
.service-board__item span { color: rgba(255,253,248,.62); font-size: .84rem; }
.honesty-panel { display: grid; grid-template-columns: .72fr 1.28fr; align-items: stretch; background: var(--yellow); }
.honesty-panel__title { display: flex; flex-direction: column; justify-content: center; padding: 45px; border-right: 1px solid rgba(23,33,50,.2); }
.honesty-panel__title h2 { font-size: clamp(2.2rem,4vw,4rem); }
.honesty-list { display: grid; grid-template-columns: repeat(2,1fr); }
.honesty-item { padding: 30px; border-right: 1px solid rgba(23,33,50,.2); border-bottom: 1px solid rgba(23,33,50,.2); }
.honesty-item:nth-child(even) { border-right: 0; }
.honesty-item h3 { font-family: var(--sans); font-size: 1rem; letter-spacing: -.01em; }
.honesty-item p { font-size: .84rem; }

/* Experiences */
.route-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 35px; }
.route-tab { display: inline-flex; align-items: center; gap: 9px; min-height: 46px; padding: 0 18px; border: 1px solid var(--line); border-radius: 999px; background: transparent; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; }
.route-tab.is-active { color: var(--paper); border-color: var(--ink); background: var(--ink); }
.route-panels { position: relative; }
.route-panel { display: none; grid-template-columns: 1.05fr .95fr; min-height: 570px; background: var(--cream); }
.route-panel.is-active { display: grid; animation: panelIn .5s var(--ease); }
@keyframes panelIn { from { opacity: 0; transform: translateY(8px); } }
.route-panel__art { min-height: 520px; }
.route-panel__art img { width: 100%; height: 100%; object-fit: cover; }
.route-panel__copy { display: flex; flex-direction: column; justify-content: center; padding: 58px; }
.route-panel__meta { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px; color: var(--coral); font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.route-panel__copy h2 { font-size: clamp(2.5rem,4.2vw,4.5rem); }
.route-panel__copy p { color: var(--muted); }
.route-steps { margin: 25px 0 0; padding: 0; list-style: none; counter-reset: route; }
.route-steps li { position: relative; padding: 10px 0 10px 40px; color: var(--muted); font-size: .88rem; counter-increment: route; }
.route-steps li::before { content: counter(route); position: absolute; top: 9px; left: 0; display: grid; width: 26px; height: 26px; place-items: center; color: var(--paper); border-radius: 50%; background: var(--coral); font-size: .68rem; font-weight: 800; }
.experience-disclaimer { margin-top: 24px; padding: 20px 22px; border-left: 4px solid var(--yellow); background: var(--cream); color: var(--muted); font-size: .83rem; }

/* Contact and reservation */
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.contact-cards { display: grid; gap: 13px; }
.contact-card { display: flex; align-items: flex-start; gap: 16px; padding: 22px; border: 1px solid var(--line); background: var(--paper); text-decoration: none; transition: transform .25s, box-shadow .25s; }
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.contact-card .icon { flex: 0 0 auto; color: var(--coral); }
.contact-card small { display: block; margin-bottom: 3px; color: var(--muted); font-size: .67rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-card strong { overflow-wrap: anywhere; }
.form-shell { padding: 46px; color: var(--paper); background: var(--ink); }
.form-shell h2 { font-size: clamp(2.4rem,4vw,4rem); }
.form-shell > p { color: rgba(255,253,248,.65); }
.reservation-form { display: grid; grid-template-columns: repeat(2,1fr); gap: 17px; margin-top: 34px; }
.form-field { display: grid; gap: 7px; }
.form-field--full { grid-column: 1/-1; }
.form-field label { font-size: .68rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-height: 51px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.22); border-radius: 0; color: var(--paper); background: rgba(255,255,255,.07); outline: none; }
.form-field textarea { min-height: 110px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(244,184,68,.15); }
.form-field select option { color: var(--ink); }
.form-note { grid-column: 1/-1; color: rgba(255,253,248,.55); font-size: .76rem; }
.form-error { display: none; grid-column: 1/-1; padding: 12px 14px; color: #721c16; background: #ffd8d1; font-size: .82rem; }
.form-error.is-visible { display: block; }
.reservation-actions { grid-column: 1/-1; display: flex; flex-wrap: wrap; gap: 10px; }
.reservation-summary { display: none; grid-column: 1/-1; margin-top: 10px; padding: 18px; color: var(--ink); background: var(--paper); white-space: pre-line; font-size: .8rem; }
.reservation-summary.is-visible { display: block; }
.map-frame { position: relative; min-height: 520px; overflow: hidden; background: var(--sand); }
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-overlay { position: absolute; z-index: 2; left: 24px; bottom: 24px; max-width: 380px; padding: 22px; color: var(--paper); background: var(--ink); }
.map-overlay strong { display: block; margin-bottom: 6px; font-family: var(--serif); font-size: 1.35rem; }
.map-overlay span { color: rgba(255,253,248,.65); font-size: .8rem; }
.policy-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; align-items: start; }
.policy-layout__intro { position: sticky; top: 115px; }
.accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__trigger { display: flex; width: 100%; justify-content: space-between; gap: 20px; padding: 24px 0; border: 0; background: transparent; text-align: left; cursor: pointer; }
.accordion__trigger strong { font-family: var(--serif); font-size: 1.35rem; }
.accordion__trigger .icon { flex: 0 0 auto; transition: transform .25s; }
.accordion__item.is-open .accordion__trigger .icon { transform: rotate(180deg); }
.accordion__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.accordion__panel > div { overflow: hidden; }
.accordion__item.is-open .accordion__panel { grid-template-rows: 1fr; }
.accordion__panel p, .accordion__panel ul { margin-bottom: 24px; color: var(--muted); font-size: .9rem; }

/* 404 */
.error-page { display: grid; min-height: 100vh; place-items: center; padding: 80px 20px; color: var(--paper); background: var(--ink); }
.error-card { max-width: 820px; text-align: center; }
.error-code { color: var(--yellow); font-family: var(--serif); font-size: clamp(8rem,25vw,18rem); line-height: .65; }
.error-card h1 { margin-top: 55px; font-size: clamp(2.5rem,6vw,5.5rem); }
.error-card p { max-width: 600px; margin-inline: auto; color: rgba(255,253,248,.66); }
.error-card .actions { justify-content: center; }

/* Lightbox */
.lightbox { position: fixed; z-index: 2100; inset: 0; display: grid; place-items: center; padding: 35px; visibility: hidden; opacity: 0; background: rgba(12,18,29,.94); transition: .25s; }
.lightbox[aria-hidden='false'] { visibility: visible; opacity: 1; }
.lightbox__figure { max-width: min(1100px,90vw); max-height: 88vh; margin: 0; }
.lightbox__image { max-width: 100%; max-height: 80vh; object-fit: contain; }
.lightbox__caption { margin-top: 12px; color: rgba(255,255,255,.7); font-size: .82rem; text-align: center; }
.lightbox__close { position: absolute; top: 20px; right: 20px; display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; color: var(--paper); background: transparent; cursor: pointer; }

/* Motion */
.reveal, .reveal-left, .reveal-right { opacity: 0; transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal { transform: translateY(30px); }
.reveal-left { transform: translateX(-35px); }
.reveal-right { transform: translateX(35px); }
.reveal.is-visible, .reveal-left.is-visible, .reveal-right.is-visible { opacity: 1; transform: translate(0); }
.is-remote-photo { animation: photoFade .6s ease both; }
@keyframes photoFade { from { opacity: .3; } }

@media (max-width: 1120px) {
  :root { --header-h: 78px; }
  .site-nav { display: none; }
  .menu-toggle { display: flex; }
  .header-actions .button { display: none; }
  .mobile-nav { position: fixed; z-index: 999; inset: 0; display: flex; flex-direction: column; justify-content: center; padding: 100px 7vw 60px; color: var(--paper); background: var(--ink); visibility: hidden; opacity: 0; transform: translateY(-12px); transition: .3s var(--ease); }
  .mobile-nav[aria-hidden='false'] { visibility: visible; opacity: 1; transform: none; }
  .mobile-nav ul { margin: 0 0 35px; padding: 0; list-style: none; }
  .mobile-nav li { border-bottom: 1px solid var(--white-line); }
  .mobile-nav a:not(.button) { display: block; padding: 15px 0; font-family: var(--serif); font-size: clamp(1.9rem,5vw,3.5rem); text-decoration: none; }
  .site-header.mobile-open { color: var(--paper) !important; background: transparent !important; border-color: transparent !important; box-shadow: none !important; }
  .site-header.mobile-open .logo-light { opacity: 1 !important; }
  .site-header.mobile-open .logo-dark { opacity: 0 !important; }
  .home-hero__grid { grid-template-columns: 1fr .95fr; gap: 30px; }
  .room-grid { grid-template-columns: repeat(2,1fr); }
  .amenity-grid { grid-template-columns: repeat(2,1fr); }
  .footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 900px) {
  .section { padding: 88px 0; }
  .section--tight { padding-bottom: 88px; }
  .home-hero, .home-hero__grid { min-height: auto; }
  .home-hero__grid { grid-template-columns: 1fr; padding-top: 135px; padding-bottom: 70px; }
  .home-hero__copy { padding: 0; }
  .hero-collage { height: 560px; max-width: 720px; }
  .hero-photo { width: 84%; height: 450px; }
  .quick-booking { margin-top: 0; background: var(--cream); padding: 22px 0; }
  .quick-booking__inner { grid-template-columns: 1fr 1fr; }
  .quick-field:nth-child(2) { border-right: 0; }
  .quick-field:nth-child(3) { border-top: 1px solid var(--line); }
  .quick-booking .button { min-height: 70px; border-top: 1px solid var(--line); }
  .story-grid, .profile-intro, .contact-grid, .policy-layout { grid-template-columns: 1fr; gap: 50px; }
  .profile-intro__aside, .policy-layout__intro { position: static; }
  .truth-grid { grid-template-columns: 1fr 1fr; }
  .photo-collage { grid-template-columns: 1fr; }
  .photo-main { min-height: 480px; }
  .photo-side { grid-template-columns: 1fr 1fr; }
  .location-band { grid-template-columns: 1fr; }
  .location-band__copy { padding: 70px 35px; }
  .location-band__visual { min-height: 500px; }
  .cta-panel { grid-template-columns: 1fr; }
  .cta-panel__art { min-height: 360px; }
  .subhero__grid { grid-template-columns: 1fr; }
  .subhero__visual { display: none; }
  .room-entry, .room-entry:nth-child(even) { grid-template-columns: 1fr; }
  .room-entry:nth-child(even) .room-entry__media { order: 0; }
  .room-entry__media { min-height: 380px; }
  .facility-grid { grid-template-columns: repeat(2,1fr); }
  .honesty-panel { grid-template-columns: 1fr; }
  .honesty-panel__title { border-right: 0; border-bottom: 1px solid rgba(23,33,50,.2); }
  .route-panel, .route-panel.is-active { grid-template-columns: 1fr; }
  .route-panel__art { min-height: 400px; }
  .footer-main { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 640px) {
  :root { --header-h: 70px; }
  html { scroll-padding-top: 85px; }
  body { padding-bottom: 72px; }
  .container, .container--wide { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 72px 0; }
  .section--small { padding: 56px 0; }
  .section--tight { padding-bottom: 72px; }
  .brand { width: 190px; }
  .menu-toggle { width: 41px; height: 41px; }
  h1 { font-size: clamp(3rem,15vw,5.5rem); }
  h2 { font-size: clamp(2.35rem,11vw,4rem); }
  .home-hero__grid { padding-top: 112px; }
  .home-hero__copy p { font-size: 1rem; }
  .hero-note { gap: 18px; }
  .hero-note__item strong { font-size: 1.45rem; }
  .hero-collage { height: 440px; }
  .hero-photo { top: 36px; width: 92%; height: 350px; border-radius: 4px 60px 4px 4px; }
  .hero-card { bottom: 2px; width: 230px; padding: 20px; }
  .hero-card strong { font-size: 1.8rem; }
  .hero-stamp { width: 95px; }
  .quick-booking__inner { grid-template-columns: 1fr; padding: 7px; }
  .quick-field { padding: 13px 15px; border-right: 0; border-bottom: 1px solid var(--line); }
  .quick-field:nth-child(3) { border-top: 0; }
  .quick-booking .button { min-height: 56px; border-top: 0; }
  .section-heading { display: block; }
  .section-heading .text-link { margin-top: 25px; }
  .story-grid { gap: 45px; }
  .story-number { max-width: 90%; }
  .fact-list { grid-template-columns: 1fr; }
  .fact:nth-child(odd), .fact:nth-child(even) { padding: 18px 0; border-left: 0; }
  .room-grid, .truth-grid, .facility-grid { grid-template-columns: 1fr; }
  .amenity-grid { grid-template-columns: 1fr 1fr; }
  .amenity { min-height: 165px; padding: 22px; }
  .amenity .icon { margin-bottom: 24px; }
  .photo-main { min-height: 330px; }
  .photo-side { grid-template-columns: 1fr; }
  .photo-small { min-height: 260px; }
  .location-band__visual { min-height: 380px; }
  .cta-panel__copy { padding: 42px 26px; }
  .footer-main { grid-template-columns: 1fr; gap: 38px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { display: block; }
  .footer-bottom__links { margin-top: 12px; }
  .mobile-booking { position: fixed; z-index: 950; inset: auto 0 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 72px; padding: 10px 15px; color: var(--paper); background: var(--ink); box-shadow: 0 -8px 28px rgba(23,33,50,.16); }
  .mobile-booking span { font-size: .68rem; line-height: 1.3; }
  .mobile-booking strong { display: block; color: var(--yellow); font-size: .75rem; }
  .subhero { min-height: 460px; padding-top: 130px; }
  .subhero h1 { font-size: clamp(3.1rem,14vw,5rem); }
  .room-entry__media { min-height: 285px; }
  .room-entry__content { padding: 32px 24px; }
  .room-feature-list { grid-template-columns: 1fr; }
  .service-board { grid-template-columns: 1fr; }
  .service-board__item { border-right: 0; }
  .honesty-list { grid-template-columns: 1fr; }
  .honesty-item { border-right: 0; }
  .route-tab { flex: 1 1 calc(50% - 8px); justify-content: center; }
  .route-panel__art { min-height: 290px; }
  .route-panel__copy { padding: 34px 24px; }
  .form-shell { padding: 34px 22px; }
  .reservation-form { grid-template-columns: 1fr; }
  .form-field--full, .form-note, .form-error, .reservation-actions, .reservation-summary { grid-column: auto; }
  .map-frame { min-height: 520px; }
  .map-overlay { right: 18px; left: 18px; }
  .lightbox { padding: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; }
}


/* Local property photography */
.property-photo { filter: saturate(.94) contrast(1.035); }
.hero-photo::before, .subhero__visual::before { content: ''; position: absolute; z-index: 1; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 48%, rgba(17,27,42,.52) 100%); }
.hero-photo__caption, .subhero__caption { position: absolute; z-index: 2; right: 18px; bottom: 16px; padding: 8px 12px; color: var(--paper); border: 1px solid rgba(255,255,255,.26); border-radius: 999px; background: rgba(17,27,42,.62); backdrop-filter: blur(8px); font-size: .64rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.subhero__caption { right: 18px; bottom: 16px; }
.photo-main .property-photo, .photo-small .property-photo, .room-card__media .property-photo, .room-entry__media .property-photo, .cta-panel__art .property-photo { transition: transform .8s var(--ease), filter .4s; }
.photo-main:hover .property-photo, .photo-small:hover .property-photo { transform: scale(1.025); filter: saturate(1) contrast(1.045); }
