/* ==========================================================================
   SRK Clasic — Site stylesheet
   Palette: warm paper + ink + brass, drawn from the property's brass signage,
   teak joinery and cream/burgundy interiors.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --ink:        #15171A;
  --ink-2:      #2E333A;
  --muted:      #6B7178;
  --muted-2:    #8C9299;

  --paper:      #FCFAF6;
  --paper-2:    #F5EFE5;
  --paper-3:    #EDE4D5;

  --line:       #E7DDCC;
  --line-2:     #D7C9B0;

  --brass:      #A98644;
  --brass-2:    #C7A669;
  --brass-3:    #E7D9BB;
  --wine:       #7C2637;

  --white:      #FFFFFF;

  --r:          6px;
  --r-sm:       3px;
  --r-lg:       14px;

  --shadow-sm:  0 1px 2px rgba(21,23,26,.05), 0 2px 8px rgba(21,23,26,.04);
  --shadow:     0 2px 6px rgba(21,23,26,.05), 0 14px 40px -12px rgba(21,23,26,.14);
  --shadow-lg:  0 4px 12px rgba(21,23,26,.06), 0 32px 70px -20px rgba(21,23,26,.26);

  --header-h:   78px;

  --ff-display: "Cormorant Garamond", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --ff-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --ease:       cubic-bezier(.22,.61,.36,1);
  --container:  1220px;
  --gutter:     clamp(20px, 5vw, 52px);
  --section:    clamp(72px, 9vw, 132px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-2);
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.72;
  font-feature-settings: "kern" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }

img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1,h2,h3,h4 { margin: 0; font-family: var(--ff-display); font-weight: 600; color: var(--ink); line-height: 1.08; letter-spacing: -.005em; }
p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
hr { border: 0; border-top: 1px solid var(--line); margin: 0; }

::selection { background: var(--brass-3); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: 16px; top: -100px; z-index: 200;
  background: var(--ink); color: var(--paper);
  padding: 12px 18px; border-radius: var(--r-sm); font-size: .875rem;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 860px; }
.container--wide { max-width: 1440px; }
.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(54px, 6vw, 86px); }
.section--paper2 { background: var(--paper-2); }
.section--ink { background: var(--ink); color: #C9CDD2; }
.section--ink h2, .section--ink h3 { color: var(--paper); }

/* ---------- Type helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--ff-body);
  font-size: .6875rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--brass); margin: 0 0 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--brass-2); }
.eyebrow--center::after { content: ""; width: 26px; height: 1px; background: var(--brass-2); }
.section--ink .eyebrow { color: var(--brass-2); }

.h-display { font-size: clamp(2.6rem, 5.8vw, 4.7rem); line-height: 1.02; letter-spacing: -.015em; }
.h1 { font-size: clamp(2.3rem, 5vw, 3.9rem); line-height: 1.06; }
.h2 { font-size: clamp(1.95rem, 3.5vw, 3rem); line-height: 1.1; }
.h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); line-height: 1.2; }
.h4 { font-size: 1.125rem; line-height: 1.3; }

.lede { font-size: clamp(1.0625rem, 1.4vw, 1.2rem); line-height: 1.68; color: var(--muted); max-width: 62ch; }
.section--ink .lede { color: #A7ADB5; }
.muted { color: var(--muted); }
.center { text-align: center; }
.center .lede { margin-inline: auto; }
.center .eyebrow::after { content: ""; width: 26px; height: 1px; background: var(--brass-2); }

.section-head { margin-bottom: clamp(40px, 5vw, 68px); }
.section-head .h2 + .lede { margin-top: 18px; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--ink); --btn-fg: var(--paper); --btn-bd: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: 15px 30px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid var(--btn-bd); border-radius: var(--r-sm);
  font-size: .8125rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  line-height: 1; cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -10px rgba(21,23,26,.5); }
.btn:active { transform: translateY(0); }
.btn svg, .link-more svg, .header-phone svg, .mobile-bar svg { width: 1.05em; height: 1.05em; flex: none; }
.btn .ico { transition: transform .3s var(--ease); }
.btn:hover .ico { transform: translateX(4px); }

.btn--brass { --btn-bg: var(--brass); --btn-fg: #fff; --btn-bd: var(--brass); }
.btn--brass:hover { --btn-bg: var(--brass-ink, #8E6E33); --btn-bd: #8E6E33; }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line-2); }
.btn--ghost:hover { --btn-bg: var(--ink); --btn-fg: var(--paper); --btn-bd: var(--ink); }
.btn--light { --btn-bg: rgba(255,255,255,.08); --btn-fg: #fff; --btn-bd: rgba(255,255,255,.42); backdrop-filter: blur(6px); }
.btn--light:hover { --btn-bg: #fff; --btn-fg: var(--ink); --btn-bd: #fff; }
.btn--sm { padding: 11px 20px; font-size: .75rem; }
.btn--block { width: 100%; }

.link-more {
  display: inline-flex; align-items: center; gap: .55em;
  font-size: .8125rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink); padding-bottom: 4px;
  border-bottom: 1px solid var(--line-2);
  transition: color .25s var(--ease), border-color .25s var(--ease), gap .25s var(--ease);
}
.link-more { white-space: nowrap; }
.link-more:hover { color: var(--brass); border-color: var(--brass); gap: .9em; }
.link-more svg { transition: transform .25s var(--ease); }
.link-more:hover svg { transform: translateX(3px); }
.section--ink .link-more { color: var(--paper); border-color: rgba(255,255,255,.3); }
.section--ink .link-more:hover { color: var(--brass-2); border-color: var(--brass-2); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.center .btn-row { justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  transition: background .35s var(--ease), border-color .35s var(--ease), height .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header .container { display: flex; align-items: center; gap: 28px; max-width: 1440px; }

.site-header[data-transparent="true"] {
  background: transparent; border-bottom-color: transparent;
}
.site-header[data-transparent="true"] .wordmark,
.site-header[data-transparent="true"] .nav a,
.site-header[data-transparent="true"] .header-phone,
.site-header[data-transparent="true"] .nav-toggle { color: #fff; }
.site-header[data-transparent="true"] .wordmark small { color: rgba(255,255,255,.72); }
.site-header[data-transparent="true"] .btn--ghost { --btn-fg: #fff; --btn-bd: rgba(255,255,255,.45); }
.site-header[data-transparent="true"] .btn--ghost:hover { --btn-bg: #fff; --btn-fg: var(--ink); --btn-bd: #fff; }
.site-header[data-transparent="true"] .nav-toggle span { background: #fff; }

.site-header.is-stuck {
  background: rgba(252,250,246,.94);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 20px rgba(21,23,26,.06);
  height: 66px;
}
.site-header.is-stuck .wordmark, .site-header.is-stuck .nav a,
.site-header.is-stuck .header-phone, .site-header.is-stuck .nav-toggle { color: var(--ink); }
.site-header.is-stuck .wordmark small { color: var(--brass); }
.site-header.is-stuck .btn--ghost { --btn-fg: var(--ink); --btn-bd: var(--line-2); }
.site-header.is-stuck .nav-toggle span { background: var(--ink); }

.wordmark {
  display: flex; flex-direction: column; gap: 1px; line-height: 1;
  color: var(--ink); margin-right: auto; transition: color .35s var(--ease);
}
.wordmark strong {
  font-family: var(--ff-display); font-weight: 700; font-size: 1.55rem; letter-spacing: .06em;
}
.wordmark small {
  font-size: .5625rem; font-weight: 600; letter-spacing: .34em; text-transform: uppercase;
  color: var(--brass); transition: color .35s var(--ease);
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  position: relative; font-size: .8125rem; font-weight: 500; letter-spacing: .07em;
  text-transform: uppercase; color: var(--ink-2); padding: 6px 0;
  transition: color .25s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--brass); }
.site-header[data-transparent="true"] .nav a[aria-current="page"] { color: var(--brass-2); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .875rem; font-weight: 600; letter-spacing: .02em; color: var(--ink);
  white-space: nowrap;
  transition: color .25s var(--ease);
}
.header-phone:hover { color: var(--brass); }

.nav-toggle {
  display: none; width: 44px; height: 44px; margin-right: -10px;
  background: none; border: 0; cursor: pointer; padding: 0;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px; background: var(--ink); border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s var(--ease), background .35s var(--ease);
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  background: var(--paper);
  padding: calc(var(--header-h) + 28px) var(--gutter) 40px;
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
  overflow-y: auto;
}
.nav-open .mobile-nav { opacity: 1; visibility: visible; transform: none; }
.mobile-nav ul { display: flex; flex-direction: column; }
.mobile-nav li { border-bottom: 1px solid var(--line); }
.mobile-nav a {
  display: flex; align-items: baseline; gap: 14px; padding: 18px 2px;
  font-family: var(--ff-display); font-size: 1.85rem; font-weight: 600; color: var(--ink);
}
.mobile-nav a i {
  font-family: var(--ff-body); font-style: normal; font-size: .6875rem; font-weight: 600;
  letter-spacing: .16em; color: var(--brass); min-width: 22px;
}
.mobile-nav a[aria-current="page"] { color: var(--brass); }
.mobile-nav .mobile-cta { margin-top: 30px; display: grid; gap: 12px; }
.mobile-nav .mobile-meta { margin-top: 32px; font-size: .9375rem; color: var(--muted); }

/* ---------- Hero (split: editorial panel + front elevation) ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  min-height: min(100svh, 900px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.hero__text {
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--header-h) + clamp(40px, 6vw, 76px)) clamp(24px, 4.4vw, 76px) clamp(48px, 6vw, 84px) var(--gutter);
  position: relative;
}
.hero__text::after {
  content: ""; position: absolute; right: 0; top: 22%; bottom: 22%; width: 1px;
  background: linear-gradient(to bottom, transparent, var(--line-2) 22%, var(--line-2) 78%, transparent);
}
.hero h1 { text-wrap: balance; max-width: 15ch; }
.hero h1 em {
  font-style: normal; color: var(--brass);
  display: block;
}
.hero__text p {
  margin-top: 24px; max-width: 46ch;
  font-size: clamp(1rem, 1.15vw, 1.125rem); line-height: 1.7; color: var(--muted);
}
.hero .btn-row { margin-top: 36px; }

.hero__media { position: relative; overflow: hidden; background: var(--paper-3); }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(252,250,246,.24), transparent 30%);
  pointer-events: none;
}
.hero__badge {
  position: absolute; left: 0; bottom: 0; z-index: 2;
  background: var(--ink); color: var(--paper);
  padding: 18px 26px 20px;
  display: flex; flex-direction: column; gap: 3px;
}
.hero__badge b { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 600; line-height: 1; }
.hero__badge span {
  font-size: .625rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--brass-2);
}

/* Page hero (interior pages) */
.page-hero {
  position: relative; color: #fff; isolation: isolate; overflow: hidden;
  padding-top: calc(var(--header-h) + clamp(64px, 9vw, 118px));
  padding-bottom: clamp(64px, 9vw, 118px);
}
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, rgba(10,11,13,.66), rgba(10,11,13,.72));
}
.page-hero h1 { color: #fff; max-width: 20ch; text-wrap: balance; }
.page-hero .lede { color: rgba(255,255,255,.84); margin-top: 20px; }
.page-hero .eyebrow { color: var(--brass-2); }
.page-hero .eyebrow::before { background: var(--brass-2); }

.crumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  font-size: .75rem; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.6); margin-bottom: 22px;
}
.crumbs a:hover { color: #fff; }
.crumbs span[aria-hidden] { color: rgba(255,255,255,.35); }

/* ---------- Facts strip ---------- */
.facts { background: var(--ink); color: #fff; }
.facts ul {
  display: grid; grid-template-columns: repeat(6, 1fr);
  border-left: 1px solid rgba(255,255,255,.1);
}
.facts li {
  display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center;
  padding: 30px 14px;
  border-right: 1px solid rgba(255,255,255,.1);
  font-size: .8125rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.82);
}
.facts svg { width: 24px; height: 24px; stroke: var(--brass-2); fill: none; stroke-width: 1.3; }

/* ---------- Cards / rooms ---------- */
.grid { display: grid; gap: clamp(20px, 2.4vw, 32px); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.room-card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line-2); }
.room-card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--paper-3); }
.room-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.room-card:hover .room-card__media img { transform: scale(1.06); }
.room-card__tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(252,250,246,.94); color: var(--ink);
  padding: 7px 13px; border-radius: 999px;
  font-size: .625rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
}
.room-card__body { padding: 28px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.room-card__body h3 { margin-bottom: 6px; }
.room-card__sub { font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--brass); margin-bottom: 16px; }
.room-card__body p { color: var(--muted); font-size: .96875rem; }
.room-card__foot {
  margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 16px;
}
.price { display: flex; flex-direction: column; line-height: 1.2; }
.price b { font-family: var(--ff-display); font-size: 1.75rem; font-weight: 600; color: var(--ink); }
.price span { font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); }

/* ---------- Feature rows ---------- */
.split {
  display: grid; grid-template-columns: 1.02fr .98fr;
  gap: clamp(32px, 5vw, 80px); align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--r); box-shadow: var(--shadow); }
.split__media .stack {
  position: absolute; right: -6%; bottom: -12%; width: 46%;
  border: 8px solid var(--paper); border-radius: var(--r);
  box-shadow: var(--shadow-lg);
}

/* Numbered "why" list */
.why-list { display: grid; gap: 2px; }
.why-item {
  display: grid; grid-template-columns: auto 1fr; gap: 24px;
  padding: 26px 0; border-bottom: 1px solid var(--line);
}
.why-item:first-child { border-top: 1px solid var(--line); }
.why-item__n {
  font-family: var(--ff-display); font-size: 1.5rem; font-weight: 600; color: var(--brass);
  line-height: 1; padding-top: 4px; min-width: 34px;
}
.why-item h3 { font-size: 1.25rem; margin-bottom: 8px; }
.why-item p { color: var(--muted); font-size: .96875rem; margin: 0; }

/* ---------- Amenity tiles ---------- */
.amenity-group { border-top: 1px solid var(--line); padding-top: 34px; margin-top: 54px; }
.amenity-group:first-of-type { margin-top: 0; }
.amenity-group > .h3 { margin-bottom: 26px; }
.amenity {
  display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start;
  padding: 22px; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--r);
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.amenity:hover { border-color: var(--line-2); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.amenity__ico {
  width: 40px; height: 40px; display: grid; place-items: center;
  background: var(--paper-2); border-radius: 50%;
}
.amenity__ico svg { width: 19px; height: 19px; stroke: var(--brass); fill: none; stroke-width: 1.4; }
.amenity h4 { margin-bottom: 4px; font-family: var(--ff-body); font-size: .9375rem; font-weight: 600; letter-spacing: .01em; }
.amenity p { font-size: .875rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* ---------- Trust strip ---------- */
.trust { border-block: 1px solid var(--line); background: var(--paper-2); }
.trust ul { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; padding-block: 34px; }
.trust li { display: flex; align-items: center; gap: 13px; font-size: .875rem; color: var(--ink-2); line-height: 1.45; }
.trust svg { width: 22px; height: 22px; flex: none; stroke: var(--brass); fill: none; stroke-width: 1.3; }

/* ---------- Room detail ---------- */
.room-detail { border-top: 1px solid var(--line); padding-block: clamp(52px, 6vw, 88px); }
.room-detail:first-of-type { border-top: 0; padding-top: 0; }
.room-detail__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(30px, 4.5vw, 68px); align-items: start; }
.room-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.room-gallery a:first-child { grid-column: 1 / -1; }
.room-gallery a { display: block; overflow: hidden; border-radius: var(--r); background: var(--paper-3); }
.room-gallery img { width: 100%; height: 100%; aspect-ratio: 3/2; object-fit: cover; transition: transform 1s var(--ease), opacity .3s var(--ease); }
.room-gallery a:hover img { transform: scale(1.05); }

.spec-list { display: grid; gap: 0; margin: 26px 0 30px; }
.spec-list li {
  display: flex; align-items: center; gap: 12px; padding: 13px 0;
  border-bottom: 1px solid var(--line); font-size: .9375rem;
}
.spec-list li:first-child { border-top: 1px solid var(--line); }
.spec-list svg { width: 16px; height: 16px; flex: none; stroke: var(--brass); fill: none; stroke-width: 1.8; }

.price-block { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
.price-block b { font-family: var(--ff-display); font-size: clamp(2.1rem, 3.6vw, 2.9rem); font-weight: 600; color: var(--ink); line-height: 1; }
.price-block span { font-size: .8125rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); }

/* ---------- Table ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); background: var(--white); }
table { width: 100%; border-collapse: collapse; min-width: 460px; }
th, td { text-align: left; padding: 16px 22px; border-bottom: 1px solid var(--line); font-size: .9375rem; }
th { font-size: .6875rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 600; background: var(--paper-2); }
tr:last-child td { border-bottom: 0; }
td b { font-weight: 600; color: var(--ink); }

/* ---------- Landmarks ---------- */
.landmarks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.landmark {
  padding: 22px 24px; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--r);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.landmark:hover { border-color: var(--line-2); transform: translateY(-3px); }
.landmark h4 { font-family: var(--ff-body); font-size: .9375rem; font-weight: 600; margin-bottom: 5px; }
.landmark p { font-size: .8125rem; color: var(--muted-2); margin: 0; letter-spacing: .02em; }
.landmark p.tbc { color: var(--brass); font-style: italic; }

/* ---------- Map ---------- */
.map-frame {
  position: relative; border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; background: var(--paper-3); box-shadow: var(--shadow-sm);
}
.map-frame iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; filter: saturate(.88) contrast(1.02); }
.map-frame--tall iframe { min-height: 520px; }

/* ---------- Gallery ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.filter {
  padding: 10px 20px; background: transparent;
  border: 1px solid var(--line-2); border-radius: 999px;
  font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); cursor: pointer;
  transition: all .28s var(--ease);
}
.filter:hover { color: var(--ink); border-color: var(--ink); }
.filter[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.masonry { columns: 3; column-gap: 16px; }
.masonry > * { break-inside: avoid; margin-bottom: 16px; }
.shot {
  display: block; position: relative; width: 100%; padding: 0; border: 0; cursor: zoom-in;
  background: var(--paper-3); border-radius: var(--r); overflow: hidden;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.shot img { width: 100%; transition: transform 1s var(--ease); }
.shot::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,11,13,.32), transparent 45%);
  opacity: 0; transition: opacity .35s var(--ease);
}
.shot:hover img { transform: scale(1.04); }
.shot:hover::after { opacity: 1; }
.shot__cap {
  position: absolute; left: 16px; bottom: 14px; z-index: 2;
  color: #fff; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
  opacity: 0; transform: translateY(6px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.shot:hover .shot__cap { opacity: 1; transform: none; }
.shot[hidden] { display: none; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(9,10,12,.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s;
  padding: clamp(16px, 4vw, 56px);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 100%; max-height: 84svh; object-fit: contain;
  border-radius: 3px; box-shadow: 0 30px 90px rgba(0,0,0,.6);
}
.lightbox__cap {
  position: absolute; left: 0; right: 0; bottom: 22px; text-align: center;
  color: rgba(255,255,255,.72); font-size: .8125rem; letter-spacing: .12em; text-transform: uppercase;
}
.lb-btn {
  position: absolute; width: 52px; height: 52px; display: grid; place-items: center;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); border-radius: 50%;
  color: #fff; cursor: pointer; transition: background .25s var(--ease), transform .25s var(--ease);
}
.lb-btn:hover { background: rgba(255,255,255,.2); }
.lb-close { top: clamp(14px,3vw,28px); right: clamp(14px,3vw,28px); }
.lb-prev { left: clamp(10px,2.5vw,28px); top: 50%; transform: translateY(-50%); }
.lb-next { right: clamp(10px,2.5vw,28px); top: 50%; transform: translateY(-50%); }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.06); }
.lb-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.6; }

/* ---------- Accordion ---------- */
.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 22px;
  padding: 26px 2px; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--ff-display); font-size: clamp(1.15rem, 1.9vw, 1.45rem); font-weight: 600; color: var(--ink);
  transition: color .25s var(--ease);
}
.acc__btn:hover { color: var(--brass); }
.acc__ico { flex: none; width: 22px; height: 22px; position: relative; }
.acc__ico::before, .acc__ico::after {
  content: ""; position: absolute; inset: 50% 0 auto 0; height: 1.5px; background: var(--brass);
  transition: transform .35s var(--ease);
}
.acc__ico::after { transform: rotate(90deg); }
.acc__btn[aria-expanded="true"] .acc__ico::after { transform: rotate(0); }
.acc__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.acc__btn[aria-expanded="true"] + .acc__panel { grid-template-rows: 1fr; }
.acc__panel > div { overflow: hidden; }
.acc__panel .inner { padding: 0 2px 30px; color: var(--muted); max-width: 70ch; }
.acc__panel .inner ul { display: grid; gap: 10px; }
.acc__panel .inner li { position: relative; padding-left: 22px; }
.acc__panel .inner li::before {
  content: ""; position: absolute; left: 2px; top: .72em; width: 6px; height: 6px;
  border-radius: 50%; background: var(--brass-2);
}

/* ---------- Forms ---------- */
.form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-size: .6875rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.field .req { color: var(--wine); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px;
  background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r-sm);
  font-size: .9375rem; color: var(--ink);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field textarea { resize: vertical; min-height: 118px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(169,134,68,.14);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%236B7178' stroke-width='1.4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; background-size: 12px; padding-right: 42px; }
.form-note { font-size: .8125rem; color: var(--muted-2); line-height: 1.6; }
.form-panel {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(26px, 3.4vw, 44px); box-shadow: var(--shadow-sm);
}

/* ---------- Booking widget slot ---------- */
.widget-slot {
  border: 1px dashed var(--line-2); border-radius: var(--r); background: var(--paper-2);
  padding: clamp(32px, 5vw, 64px); text-align: center;
}
.widget-slot h3 { margin-bottom: 12px; }
.widget-slot p { color: var(--muted); max-width: 54ch; margin-inline: auto; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; isolation: isolate; overflow: hidden; color: #fff; }
.cta-band__media { position: absolute; inset: 0; z-index: -2; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(12,13,15,.76); }
.cta-band h2 { color: #fff; }
.cta-band .lede { color: rgba(255,255,255,.8); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #9AA0A8; padding-top: clamp(56px, 7vw, 92px); }
.site-footer a:hover { color: var(--brass-2); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(40px, 5vw, 64px);
}
.footer-brand .wordmark { color: #fff; margin-bottom: 20px; }
.footer-brand .wordmark small { color: var(--brass-2); }
.footer-brand p { font-size: .9375rem; line-height: 1.75; max-width: 32ch; }
.site-footer h4 {
  font-family: var(--ff-body); font-size: .6875rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--brass-2); margin-bottom: 18px;
}
.site-footer li { margin-bottom: 11px; font-size: .9375rem; }
.site-footer li a { color: #9AA0A8; transition: color .25s var(--ease); }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; line-height: 1.6; }
.footer-contact svg { width: 16px; height: 16px; flex: none; margin-top: 4px; stroke: var(--brass-2); fill: none; stroke-width: 1.4; }
.footer-bar {
  border-top: 1px solid rgba(255,255,255,.09);
  padding-block: 24px 26px;
  display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between; align-items: center;
  font-size: .8125rem; color: #767C84;
}
.socials { display: flex; gap: 10px; }
.socials a, .socials .soon {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.16); border-radius: 50%;
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}
.socials a:hover { border-color: var(--brass-2); background: rgba(199,166,105,.12); transform: translateY(-2px); }
.socials .soon { opacity: .45; cursor: default; }
.socials svg { width: 16px; height: 16px; }

/* ---------- Sticky mobile bar ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  transform: translateY(110%); transition: transform .4s var(--ease);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bar.is-visible { transform: none; }
.mobile-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: .55em;
  padding: 16px 10px; background: var(--paper); color: var(--ink);
  font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
}
.mobile-bar a + a { background: var(--ink); color: var(--paper); }
.mobile-bar svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.6; }

/* ---------- Reveal animation ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js [data-reveal].is-in { opacity: 1; transform: none; }
.js [data-reveal-delay="1"] { transition-delay: .09s; }
.js [data-reveal-delay="2"] { transition-delay: .18s; }
.js [data-reveal-delay="3"] { transition-delay: .27s; }
.js [data-reveal-delay="4"] { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* ---------- Utility ---------- */
.note {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 18px 20px; background: var(--paper-2);
  border-left: 2px solid var(--brass); border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: .875rem; color: var(--muted); line-height: 1.65;
}
.note svg { width: 17px; height: 17px; flex: none; margin-top: 3px; stroke: var(--brass); fill: none; stroke-width: 1.5; }
.stack-sm > * + * { margin-top: 14px; }
.mt-lg { margin-top: clamp(34px, 4vw, 56px); }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1120px) {
  .nav { gap: 22px; }
  .nav a { font-size: .75rem; }
  .facts ul { grid-template-columns: repeat(3, 1fr); }
  .facts li:nth-child(-n+3) { border-bottom: 1px solid rgba(255,255,255,.1); }
}

@media (max-width: 1000px) {
  :root { --header-h: 66px; }
  .nav, .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn { display: none; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .landmarks { grid-template-columns: repeat(2, 1fr); }
  .room-detail__grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media .stack { display: none; }
  .masonry { columns: 2; }
  .trust ul { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero__media { order: -1; aspect-ratio: 4/3; min-height: 46svh; }
  .hero__media img { object-position: center 42%; }
  .hero__media::after { background: linear-gradient(to top, rgba(252,250,246,.28), transparent 34%); }
  .hero__text {
    padding: clamp(34px, 7vw, 56px) var(--gutter) clamp(44px, 8vw, 64px);
    text-align: left;
  }
  .hero__text::after { display: none; }
  .hero h1 { max-width: 18ch; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 0; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
  .landmarks { grid-template-columns: 1fr; }
  .facts ul { grid-template-columns: repeat(2, 1fr); }
  .facts li { padding: 22px 10px; font-size: .75rem; }
  .facts li:nth-child(-n+4) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .masonry { columns: 1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .hero__media { aspect-ratio: 3/4; min-height: 0; max-height: 62svh; }
  .hero__badge { padding: 14px 18px 15px; }
  .hero__badge b { font-size: 1.25rem; }
  .room-gallery { grid-template-columns: 1fr 1fr; }
  .why-item { grid-template-columns: 1fr; gap: 8px; }
  .why-item__n { padding-top: 0; }
  .btn { padding: 14px 24px; }
  .mobile-nav a { font-size: 1.6rem; padding: 15px 2px; }
}

@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; }
  .facts ul { grid-template-columns: 1fr 1fr; }
  .btn-row .btn { width: 100%; }
}

@media print {
  .site-header, .mobile-bar, .mobile-nav, .lightbox, .hero-scroll { display: none !important; }
  body { background: #fff; }
}
