:root {
  --bg: #f3eee6;
  --bg-deep: #ebe4d8;
  --paper: #fffdf8;
  --ink: #1a1714;
  --muted: #6d665c;
  --line: #ddd4c6;
  --line-strong: #c9bead;
  --accent: #2f3b32;
  --accent-soft: #e7eee8;
  --warn: #5c3a1e;
  --warn-bg: #f4e6d2;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(40, 32, 22, 0.08);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, #fffaf1 0%, transparent 50%),
    radial-gradient(900px 400px at 100% 0%, #e8efe9 0%, transparent 42%),
    var(--bg);
  font: 16px/1.55 "Segoe UI", "SF Pro Text", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.011em;
}
body.lightbox-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 10px;
  flex-wrap: wrap;
}
.top-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.site-nav { display: flex; gap: 16px; flex-wrap: wrap; font-size: 14px; }
.site-nav a {
  text-decoration: none;
  color: var(--muted);
  transition: color 220ms var(--ease);
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--ink); }
.locale-switch {
  display: flex;
  gap: 4px;
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.locale-switch a {
  text-decoration: none;
  color: var(--muted);
  padding: 4px 7px;
}
.locale-switch a:hover, .locale-switch a[aria-current="page"] { color: var(--ink); }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img { width: 42px; height: auto; }
.brand b {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.16em;
  font-size: 14px;
}

.top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 8px 0 8px;
  border-top: 1px solid var(--line);
}
.nav { display: flex; gap: 18px; flex-wrap: wrap; font-size: 14px; }
.nav a {
  text-decoration: none;
  color: var(--muted);
  transition: color 220ms var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }

.hero { padding: 36px 0 18px; }
.kicker {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
h1, h2, h3 {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0;
}
h1 { font-size: clamp(40px, 6vw, 72px); line-height: 1.02; }
h1 em { font-style: italic; color: #3e4a40; }
.lede { max-width: 38rem; color: var(--muted); margin: 16px 0 0; font-size: 17px; }

.note {
  margin: 22px 0 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 14px;
  color: var(--muted);
  font-size: 14px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 28px 0 28px;
}
@media (max-width: 820px) { .grid { grid-template-columns: 1fr; } }

.card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  transition: transform 420ms var(--ease), box-shadow 420ms var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(40, 32, 22, 0.12); }
.card .media {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--bg-deep);
}
.card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 700ms var(--ease);
  cursor: zoom-in;
}
.card:hover .media img { transform: scale(1.07); }
.card .copy { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card small { color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; font-size: 11px; }
.card h2 { font-size: 30px; }
.card p { margin: 0; color: var(--muted); font-size: 14px; }
.card .go {
  margin-top: auto;
  padding-top: 12px;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.badge {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  background: rgba(255,253,248,0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.6);
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 9px;
  border-radius: 999px;
}

.room-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
  padding: 18px 0 10px;
}
@media (max-width: 860px) { .room-hero { grid-template-columns: 1fr; } }
.room-hero .lead-photo {
  border-radius: 22px;
  overflow: hidden;
  background: transparent;
  box-shadow: var(--shadow);
}
.room-hero .lead-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}
.facts { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 0; }
.pill {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  color: var(--muted);
}
.access {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 14px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 28px 0 40px;
}
@media (max-width: 820px) { .gallery { grid-template-columns: 1fr 1fr; } }
.gallery figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
}
.gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 600ms var(--ease);
}
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption {
  padding: 8px 10px 10px;
  font-size: 12px;
  color: var(--muted);
}

.enquire {
  margin: 0 0 56px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 18px;
}
.enquire h2 { font-size: 28px; margin-bottom: 8px; }
.form { display: grid; gap: 12px; margin-top: 16px; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 640px) { .row { grid-template-columns: 1fr; } }
label { display: grid; gap: 6px; font-size: 13px; color: var(--muted); }
input, textarea {
  border: 1px solid var(--line-strong);
  background: #f7f3ec;
  color: var(--ink);
  border-radius: 12px;
  padding: 11px 12px;
  font: inherit;
}
input:disabled, textarea:disabled { opacity: 0.7; cursor: not-allowed; }
.actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
button[disabled] {
  border: 0;
  background: #d8d1c5;
  color: #5d574e;
  padding: 11px 14px;
  border-radius: 12px;
  cursor: not-allowed;
}
.mail {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 11px 14px;
  border-radius: 12px;
  background: var(--accent);
  color: #f7f3ec;
  transition: transform 220ms var(--ease), opacity 220ms var(--ease);
}
.mail:hover { transform: translateY(-1px); opacity: 0.94; }

.foot {
  padding: 18px 0 36px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.back { text-decoration: none; color: var(--muted); }
.back:hover { color: var(--ink); }

.prices-block { padding: 8px 0 36px; }
.prices-block h2 { font-size: 36px; }
.prices-source {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.prices-paper {
  margin-top: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.prices {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.prices th,
.prices td {
  padding: 14px 20px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}
.prices th {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  background: #f7f3ec;
}
.prices td:last-child {
  white-space: nowrap;
  text-align: right;
  width: 28%;
  font-variant-numeric: tabular-nums;
}
.prices tbody tr:last-child td { border-bottom: 0; }
.prices small {
  display: inline-block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

select {
  border: 1px solid var(--line-strong);
  background: #f7f3ec;
  color: var(--ink);
  border-radius: 12px;
  padding: 11px 12px;
  font: inherit;
}
.form-error {
  margin: 0;
  color: var(--warn);
  font-size: 13px;
}
.form-error[hidden] { display: none; }
button.mail {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.hours-note {
  margin: 14px 0 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 14px;
}
.hours-note[hidden] { display: none; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(12, 10, 8, 0.88);
  cursor: zoom-out;
}
.lightbox[hidden] { display: none !important; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  background: transparent;
}

/* Match the locked Yoake poster at a935402 without changing Grok's room structure. */
:root {
  --bg: #f3f1ea;
  --bg-deep: #e7efe6;
  --paper: #ffffff;
  --ink: #16382c;
  --muted: #4d6659;
  --line: rgba(22, 56, 44, 0.16);
  --line-strong: rgba(22, 56, 44, 0.3);
  --accent: #1f4a3a;
  --accent-soft: #e7efe6;
  --warn: #eef3ec;
  --warn-bg: #16382c;
  --radius: 0;
  --shadow: 0 18px 54px rgba(22, 56, 44, 0.08);
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #16382c;
  outline-offset: 4px;
}

.banner {
  min-height: 38px;
  padding: 9px 4vw;
  gap: 14px;
  background: #16382c;
  color: #eef3ec;
  border-color: rgba(238, 243, 236, 0.18);
  font-size: 11px;
}

.banner strong {
  padding: 5px 8px;
  border: 1px solid rgba(238, 243, 236, 0.35);
  color: #eef3ec;
  font-size: 9px;
  line-height: 1;
}

.wrap { width: min(1500px, calc(100% - 8vw)); }

.site-top {
  position: sticky;
  top: 0;
  z-index: 19;
  width: 100%;
  max-width: none;
  height: 88px;
  margin: 0;
  padding: 0 4vw;
  flex-wrap: nowrap;
  background: rgba(247, 245, 239, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 44px rgba(22, 56, 44, 0.08);
  backdrop-filter: blur(16px);
}

.brand { min-width: 220px; gap: 13px; }
.brand img { width: 34px; height: 34px; object-fit: contain; }
.brand b {
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 360;
  letter-spacing: 0.32em;
}

.top-actions { gap: 16px; flex-wrap: nowrap; }
.site-nav { gap: 4px; align-items: center; }
.site-nav a {
  padding: 12px 15px;
  color: var(--muted);
  font-size: 12px;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--ink); }

.locale-switch {
  display: inline-flex;
  gap: 0;
  padding: 3px;
  border: 1px solid var(--line);
}
.locale-switch a {
  min-width: 38px;
  padding: 8px 7px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-align: center;
}
.locale-switch a:hover { color: var(--ink); }
.locale-switch a[aria-current="page"] {
  background: var(--accent);
  color: #f7f5ef;
}

.top {
  padding: 14px 0;
  border-top: 0;
  border-bottom: 1px solid var(--line);
}
.nav { gap: 4px; }
.nav a {
  padding: 9px 12px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.04em;
}
.nav a:hover,
.nav a[aria-current="page"] {
  background: var(--accent-soft);
  color: var(--ink);
}

.hero { padding: 86px 0 36px; }
.kicker {
  margin-bottom: 18px;
  color: #16382c;
  font-size: 10px;
  font-weight: 680;
  letter-spacing: 0.23em;
}
h1,
h2,
h3 { color: var(--ink); font-family: Georgia, "Times New Roman", serif; }
h1 {
  max-width: 920px;
  font-size: clamp(54px, 6.4vw, 92px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.045em;
}
h1 em { color: #16382c; font-weight: 400; }
.lede {
  max-width: 660px;
  margin-top: 28px;
  color: var(--muted);
  font: 18px/1.65 Georgia, "Times New Roman", serif;
}
.parking-summary {
  max-width: 820px;
  margin-top: 34px;
  padding: 22px 24px;
  border-left: 3px solid var(--accent);
  background: var(--accent-soft);
}
.parking-summary .kicker { margin: 0 0 9px; }
.parking-summary h2 { font-size: 26px; font-weight: 400; }
.parking-summary > p:last-child {
  max-width: 720px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.note { display: none; }

.grid {
  gap: 16px;
  padding: 38px 0 96px;
}
.card {
  min-height: 450px;
  border-radius: 0;
  border-color: var(--line);
  background: var(--paper);
  box-shadow: none;
}
.card:hover {
  transform: translateY(-2px);
  border-color: rgba(22, 56, 44, 0.34);
  box-shadow: var(--shadow);
}
.card .media { height: 300px; background: var(--bg-deep); }
.card .copy { padding: 23px 24px 25px; gap: 9px; }
.card small {
  color: #55725e;
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.17em;
}
.card h2 { font-size: 31px; font-weight: 400; }
.card p { color: var(--muted); font-size: 12px; line-height: 1.55; }
.card .go { color: var(--accent); font-size: 11px; font-weight: 700; }
.badge {
  border-radius: 0;
  background: rgba(247, 245, 239, 0.94);
  color: var(--ink);
  font-size: 9px;
  font-weight: 760;
}

.room-hero {
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 44px;
  padding: 64px 0 18px;
  align-items: center;
}
.room-hero .lead-photo {
  border-radius: 0;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.room-hero h1 { font-size: clamp(48px, 5vw, 78px); }
.facts { gap: 7px; margin-top: 22px; }
.pill {
  border-radius: 0;
  border-color: var(--line);
  background: var(--paper);
  color: var(--muted);
  font-size: 11px;
}
.access {
  border-radius: 0;
  background: var(--accent-soft);
  color: var(--accent);
}

.gallery {
  gap: 10px;
  padding: 36px 0 72px;
}
.gallery figure {
  border-radius: 0;
  border-color: var(--line);
  background: var(--paper);
}
.gallery figcaption {
  padding: 10px 12px 12px;
  color: var(--muted);
  font-size: 11px;
}

.enquire {
  margin-bottom: 72px;
  padding: 32px;
  border-radius: 0;
  border-color: var(--line);
  background: var(--paper);
}
.enquire h2 { font-size: 36px; font-weight: 400; }
.enquire p { max-width: 680px; color: var(--muted); }
.mail {
  margin-top: 8px;
  border-radius: 0;
  background: var(--accent);
  color: #f7f5ef;
  font-size: 12px;
  font-weight: 700;
}
.foot { color: var(--muted); border-color: var(--line); font-size: 11px; }

@media (max-width: 900px) {
  .site-top {
    height: auto;
    min-height: 78px;
    width: 100%;
    max-width: none;
    padding: 14px 24px;
  }
  .top-actions { gap: 10px; }
  .site-nav { display: none; }
  .wrap { width: min(100% - 36px, 760px); }
  .wrap.site-top { width: 100%; max-width: none; }
  .hero { padding-top: 58px; }
  .parking-summary { padding: 20px; }
  .grid { grid-template-columns: 1fr; }
  .room-hero { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 640px) {
  .banner { align-items: flex-start; justify-content: flex-start; text-align: left; }
  .site-top { padding-inline: 14px; }
  .brand { min-width: 0; }
  .brand b { font-size: 14px; letter-spacing: 0.24em; }
  .locale-switch a {
    min-width: 34px;
    min-height: 44px;
    display: grid;
    place-items: center;
    padding: 0;
  }
  .top {
    padding-block: 7px;
    overflow-x: auto;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
  }
  .top::-webkit-scrollbar { display: none; }
  .nav { flex-wrap: nowrap; min-width: max-content; }
  .nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding-inline: 6px;
    font-size: 10px;
  }
  h1 { font-size: 50px; }
  .grid { padding-bottom: 64px; }
  .card .media { height: 240px; }
  .gallery { grid-template-columns: 1fr; }
  .enquire { padding: 24px; }
}
