/* ============================================================
   The Ring of Kerry Hotel — original design
   Palette: deep Atlantic navy, warm brass, slate mist, cream
   Type: Cormorant Garamond (display) + Manrope (body)
   ============================================================ */

:root {
  --ink: #0f1a22;
  --ink-soft: #1a2832;
  --paper: #f6f3ec;
  --paper-warm: #ece6d8;
  --brass: #b8956a;
  --brass-deep: #8a6f4f;
  --slate: #4a5d6e;
  --stone: #d8d1c0;
  --muted: #6b7480;
  --line: rgba(15, 26, 34, 0.12);
  --line-strong: rgba(15, 26, 34, 0.22);
  --line-light: rgba(246, 243, 236, 0.18);

  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;

  --nav-h: 76px;
  --book-h: 64px;
  --max: 1320px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; max-width: 100%; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + var(--book-h) + 12px);
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, select { font-family: inherit; }
a { color: inherit; text-decoration: none; }

/* Type ===================================================== */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.05;
}
.display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(38px, 4.8vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.display em { font-style: italic; color: var(--brass); }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--brass-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--brass);
}
.eyebrow.no-line::before { display: none; }
.on-dark .eyebrow { color: var(--brass); }

.section-title {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
}
.section-title em { font-style: italic; color: var(--brass); }

.lede {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.45;
  font-weight: 300;
  color: var(--ink);
  max-width: 60ch;
}

p { margin: 0 0 1em; }

/* Layout helpers =========================================== */

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

.section { padding: clamp(80px, 10vw, 140px) 0; }
.section.tight { padding: clamp(60px, 7vw, 100px) 0; }

.on-dark {
  background: var(--ink);
  color: var(--paper);
}
.on-dark .lede { color: var(--paper); }
.on-dark .muted { color: rgba(246, 243, 236, 0.6); }

.divider {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}

/* Buttons ================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 0;
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brass);
  color: var(--ink);
}
.btn-primary:hover { background: var(--ink); color: var(--paper); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.on-dark .btn-outline { border-color: var(--paper); color: var(--paper); }
.on-dark .btn-outline:hover { background: var(--paper); color: var(--ink); }
.btn-ghost {
  padding: 8px 0;
  border-bottom: 1px solid currentColor;
}
.btn-ghost:hover { color: var(--brass); }

.btn .arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

/* Nav ====================================================== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 80;
  display: flex;
  align-items: center;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(246, 243, 236, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  color: var(--ink);
}
.nav.on-hero { color: var(--paper); }
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
}
.nav-cta { flex-shrink: 0; }
.nav-links { flex-shrink: 1; min-width: 0; overflow: hidden; }

.nav-enquire {
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.nav-enquire.is-hidden {
  opacity: 0;
  transform: translateY(-6px);
  visibility: hidden;
  pointer-events: none;
}
.nav-enquire.is-visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
}
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: grid;
  place-items: center;
  font-size: 14px;
  letter-spacing: 0.05em;
  font-style: italic;
}
.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name .top {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 500;
  opacity: 0.8;
}
.brand-name .bottom {
  font-size: 18px;
  font-style: italic;
  letter-spacing: 0.01em;
  margin-top: 4px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav-links a.active { color: var(--brass); }
.nav-links a:hover { color: var(--brass); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-phone {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.85;
}

.nav-progress {
  position: absolute;
  bottom: -1px; left: 0;
  height: 2px;
  background: var(--brass);
  transition: width 0.15s linear;
  width: 0;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  position: relative;
}
.menu-btn span::before, .menu-btn span::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: currentColor;
}
.menu-btn span::before { top: -7px; }
.menu-btn span::after { top: 7px; }

@media (max-width: 1180px) { .nav-phone { display: none; } }
@media (max-width: 1080px) {
  .nav-links, .nav-phone { display: none; }
  .menu-btn { display: inline-flex; }
}
@media (max-width: 980px) {
  .nav-links, .nav-phone { display: none; }
  .menu-btn { display: inline-flex; }
}

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  background: var(--ink);
  color: var(--paper);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.6, 0.05, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 32px;
  visibility: hidden;
  pointer-events: none;
}
.drawer.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}
.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drawer-close {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  font-size: 22px;
}
.drawer-links {
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.drawer-links a {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
}
.drawer-links a em { color: var(--brass); font-style: italic; font-size: 14px; margin-right: 8px; font-family: var(--sans); letter-spacing: 0.1em; opacity: 0.6; }
.drawer-foot {
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.05em;
}

/* Sticky booking bar ======================================= */

.book-bar {
  position: fixed;
  top: 0;
  left: 0; right: 0;
  height: var(--book-h);
  z-index: 70;
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid var(--line-light);
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.6, 0.05, 0.2, 1);
  visibility: hidden;
  pointer-events: none;
}
.book-bar.show {
  transform: translateY(var(--nav-h));
  visibility: visible;
  pointer-events: auto;
}
.book-bar .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.book-bar-fields {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}
.book-bar-field {
  padding: 0 18px;
  border-right: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  min-width: 0;
}
.book-bar-field:first-child { padding-left: 0; }
.book-bar-field:last-child { border-right: 0; }
.book-bar-field .lbl {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.55;
  font-weight: 500;
}
.book-bar-field .val {
  font-family: var(--serif);
  font-size: 16px;
  white-space: nowrap;
  margin-top: 2px;
}
.book-bar .btn-primary { padding: 12px 22px; }

@media (max-width: 820px) {
  .book-bar { display: none; }
}

/* Hero ===================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding: calc(var(--nav-h) + 48px) 0 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(15, 26, 34, 0.55) 0%,
      rgba(15, 26, 34, 0.40) 35%,
      rgba(15, 26, 34, 0.75) 65%,
      rgba(10, 18, 24, 0.95) 100%),
    linear-gradient(90deg,
      rgba(15, 26, 34, 0.45) 0%,
      rgba(15, 26, 34, 0.10) 60%,
      rgba(15, 26, 34, 0.0) 100%);
}
/* Stylized atmospheric backdrop — abstract Atlantic horizon */
.hero-bg-art {
  position: absolute;
  inset: 0;
  background-image: url("img/exterior-night.jpg");
  background-size: cover;
  background-position: center 60%;
}
.hero-bg::after {
  background: linear-gradient(180deg,
    rgba(15, 26, 34, 0.55) 0%,
    rgba(15, 26, 34, 0.35) 40%,
    rgba(15, 26, 34, 0.85) 100%) !important;
}
.hero-horizon {
  position: absolute;
  left: 0; right: 0;
  bottom: 32%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(246, 243, 236, 0.18), transparent);
}
.hero-mountains {
  position: absolute;
  left: 0; right: 0;
  bottom: 18%;
  height: 22%;
  background:
    linear-gradient(180deg, transparent, rgba(10, 18, 24, 0.6) 70%, rgba(10, 18, 24, 0.9) 100%);
  -webkit-mask-image:
    linear-gradient(180deg, transparent 0%, #000 30%, #000 100%);
  mask-image:
    linear-gradient(180deg, transparent 0%, #000 30%, #000 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-headline,
.hero-tag,
.hero-meta {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35), 0 4px 24px rgba(0, 0, 0, 0.4);
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
}
.hero-meta .dot { width: 4px; height: 4px; background: var(--brass); border-radius: 50%; }
.hero-headline {
  max-width: 20ch;
  margin-bottom: 24px;
}
.hero-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 24px);
  max-width: 38ch;
  opacity: 0.9;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  right: 32px;
  bottom: 24px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.5;
  z-index: 3;
}
@media (max-width: 900px) { .hero-scroll { display: none; } }
.hero-scroll .line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--paper), transparent);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Hero booking card */
.hero-book {
  position: relative;
  z-index: 3;
  margin-top: 32px;
  background: rgba(246, 243, 236, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(246, 243, 236, 0.16);
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 0;
}
.hero-book .field {
  padding: 6px 16px;
  border-right: 1px solid rgba(246, 243, 236, 0.16);
  display: flex;
  flex-direction: column;
}
.hero-book .field:first-child { padding-left: 6px; }
.hero-book .field:nth-last-child(2) { border-right: 0; }
.hero-book .field label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.6;
  font-weight: 500;
  margin-bottom: 6px;
}
.hero-book .field .picker {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--paper);
  background: transparent;
  border: 0;
  outline: 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
  width: 100%;
}
.hero-book .field .picker.placeholder { opacity: 0.5; }
.hero-book .btn-primary { padding: 0 32px; align-self: stretch; }

@media (max-width: 900px) {
  .hero-book { grid-template-columns: 1fr 1fr; gap: 1px; }
  .hero-book .field { border-right: 0 !important; padding: 12px; }
  .hero-book .btn-primary { grid-column: 1 / -1; padding: 18px; }
}

/* Popovers ================================================= */

.pop {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(15, 26, 34, 0.18);
  padding: 20px;
  z-index: 50;
  min-width: 320px;
}
.field { position: relative; }

.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.cal-head h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
}
.cal-nav {
  display: flex;
  gap: 4px;
}
.cal-nav button {
  width: 32px; height: 32px;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 14px;
  transition: all 0.15s;
}
.cal-nav button:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  font-size: 12px;
}
.cal-dow {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.5;
  padding: 6px 0;
}
.cal-cell {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-size: 13px;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.12s;
  user-select: none;
}
.cal-cell:hover:not(.disabled):not(.empty) { background: var(--paper-warm); }
.cal-cell.empty { cursor: default; }
.cal-cell.disabled { opacity: 0.25; cursor: default; }
.cal-cell.in-range { background: var(--paper-warm); }
.cal-cell.start, .cal-cell.end {
  background: var(--ink);
  color: var(--paper);
}

.guest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.guest-row:last-child { border-bottom: 0; }
.guest-row .label { font-family: var(--serif); font-size: 18px; }
.guest-row .sub { font-size: 11px; opacity: 0.55; margin-top: 2px; letter-spacing: 0.05em; }
.stepper {
  display: flex;
  align-items: center;
  gap: 12px;
}
.stepper button {
  width: 32px; height: 32px;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 16px;
  transition: all 0.15s;
}
.stepper button:hover:not(:disabled) { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.stepper button:disabled { opacity: 0.3; cursor: not-allowed; }
.stepper .count {
  font-family: var(--serif);
  font-size: 18px;
  min-width: 20px;
  text-align: center;
}

/* About ==================================================== */

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}
.about-text .eyebrow { margin-bottom: 24px; }
.about-text h2 { margin-bottom: 32px; }
.about-text p { margin-bottom: 1.4em; color: var(--ink-soft); }

.heritage-card {
  background: var(--paper-warm);
  padding: 32px;
  border-left: 2px solid var(--brass);
  margin-top: 40px;
}
.heritage-card h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  margin-bottom: 12px;
}
.heritage-card p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  color: var(--ink-soft);
}

/* Real photos =============================================== */

.photo {
  position: relative;
  background-color: var(--paper-warm);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15, 26, 34, 0.15));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.photo:hover::after { opacity: 1; }

.about-imagery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 280px;
  gap: 16px;
}
.about-imagery .photo:first-child { grid-column: 1; grid-row: 1 / span 2; height: 100%; }
.about-imagery .photo:nth-child(2) { grid-column: 2; grid-row: 1; }
.about-imagery .photo:nth-child(3) { grid-column: 2; grid-row: 2; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 80px;
  padding-top: 56px;
  border-top: 1px solid var(--line);
}
@media (max-width: 720px) {
  .about-stats { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
}
.about-stats .stat .num {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 8px;
}
.about-stats .stat .num em { color: var(--brass); font-style: italic; }
.about-stats .stat .lbl {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.65;
}

/* Rooms ==================================================== */

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.section-head .left { max-width: 50ch; }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head .right { display: flex; gap: 12px; }

.room-filters {
  display: flex;
  gap: 4px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.room-filters button {
  padding: 16px 22px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  transition: color 0.2s;
}
.room-filters button:hover { color: var(--ink); }
.room-filters button.active { color: var(--ink); }
.room-filters button.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--brass);
}
.room-filters .count {
  margin-left: 6px;
  font-size: 10px;
  opacity: 0.6;
  font-feature-settings: "tnum";
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 1080px) { .rooms-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .rooms-grid { grid-template-columns: 1fr; gap: 40px; } }

.room {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}
.room:hover { transform: translateY(-4px); }
.room-img {
  aspect-ratio: 4 / 3;
  margin-bottom: 20px;
}
.room-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.room-tags span {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--paper-warm);
  padding: 4px 10px;
  color: var(--brass-deep);
  font-weight: 500;
}
.room h3 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 8px;
}
.room .meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
  display: flex;
  gap: 16px;
}
.room .meta span { display: inline-flex; align-items: center; gap: 6px; }
.room-foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.room-price {
  font-family: var(--serif);
  font-size: 22px;
}
.room-price .from {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--sans);
  color: var(--muted);
  margin-right: 6px;
}
.room-price .pn {
  font-size: 11px;
  letter-spacing: 0.05em;
  font-family: var(--sans);
  color: var(--muted);
  margin-left: 4px;
}
.room-link {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid var(--brass);
  padding-bottom: 2px;
}

/* Dining =================================================== */

.dining {
  background: var(--ink);
  color: var(--paper);
}
.dining-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .dining-grid { grid-template-columns: 1fr; gap: 48px; } }

.dining h2 { margin: 24px 0 32px; }
.dining .lede { color: rgba(246, 243, 236, 0.85); margin-bottom: 32px; }

.menu-preview {
  margin-top: 40px;
  border-top: 1px solid var(--line-light);
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light);
  gap: 24px;
}
.menu-item .name {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
}
.menu-item .desc {
  font-size: 12px;
  opacity: 0.55;
  margin-top: 4px;
  letter-spacing: 0.02em;
}
.menu-item .dots {
  flex: 1;
  border-bottom: 1px dotted rgba(246, 243, 236, 0.25);
  margin: 0 12px 6px;
  align-self: end;
  height: 1px;
}
.menu-item .price {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--brass);
  white-space: nowrap;
}

.dining-img { aspect-ratio: 4 / 5; }

.dining-venues {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 80px;
  padding-top: 56px;
  border-top: 1px solid var(--line-light);
}
@media (max-width: 720px) { .dining-venues { grid-template-columns: 1fr; } }
.venue h4 {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 8px;
}
.venue .hours {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 12px;
}
.venue p {
  font-size: 14px;
  color: rgba(246, 243, 236, 0.7);
  line-height: 1.6;
  margin: 0;
}

/* Weddings ================================================= */

.weddings { background: var(--paper-warm); }
.weddings-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .weddings-grid { grid-template-columns: 1fr; gap: 48px; } }
.weddings-img { aspect-ratio: 5 / 6; }
.weddings .features {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}
.weddings .features .feat {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.weddings .features .feat .num {
  font-family: var(--serif);
  font-size: 12px;
  color: var(--brass);
  letter-spacing: 0.05em;
  padding-top: 2px;
}
.weddings .features .feat .txt h5 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 4px;
}
.weddings .features .feat .txt p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* Things to do — map ======================================== */

.things {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}
.things .section-head { margin-bottom: 0; }

.map-wrap {
  position: relative;
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: stretch;
}
@media (max-width: 900px) { .map-wrap { grid-template-columns: 1fr; } }

.map-canvas {
  position: relative;
  background: #14202a;
  border: 1px solid var(--line-light);
  aspect-ratio: 16 / 11;
  overflow: hidden;
}
.map-canvas svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.map-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  cursor: pointer;
  z-index: 3;
}
.map-pin .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brass);
  border: 2px solid var(--ink);
  transition: all 0.2s;
  position: relative;
}
.map-pin .dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--brass);
  opacity: 0;
  transition: opacity 0.2s;
}
.map-pin:hover .dot,
.map-pin.active .dot {
  transform: scale(1.3);
  background: var(--paper);
}
.map-pin:hover .dot::after,
.map-pin.active .dot::after { opacity: 0.6; }
.map-pin .pin-label {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s;
  background: var(--ink);
  padding: 4px 8px;
  border: 1px solid var(--brass);
  pointer-events: none;
}
.map-pin:hover .pin-label,
.map-pin.active .pin-label { opacity: 1; }
.map-pin.hotel .dot {
  width: 18px;
  height: 18px;
  background: var(--paper);
  border: 2px solid var(--brass);
}
.map-pin.hotel .dot::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--brass);
}

.map-legend {
  position: absolute;
  bottom: 16px; left: 16px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.5;
  font-family: var(--mono);
}
.map-compass {
  position: absolute;
  top: 16px; right: 16px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--brass);
}

.map-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 540px;
  overflow-y: auto;
  padding-right: 8px;
}
.map-list::-webkit-scrollbar { width: 4px; }
.map-list::-webkit-scrollbar-thumb { background: var(--line-light); }

.attraction {
  padding: 16px;
  border: 1px solid transparent;
  border-left: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  width: 100%;
  display: block;
}
.attraction:hover, .attraction.active {
  background: rgba(246, 243, 236, 0.05);
  border-left-color: var(--brass);
}
.attraction h5 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 4px;
}
.attraction .meta {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 6px;
  display: flex;
  gap: 12px;
}
.attraction p {
  font-size: 12px;
  opacity: 0.65;
  margin: 0;
  line-height: 1.5;
}

/* Gallery ================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 80px;
  gap: 12px;
  margin-top: 56px;
}
.gallery-item { position: relative; cursor: pointer; overflow: hidden; }
.gallery-item .photo { height: 100%; width: 100%; transition: transform 0.5s ease, opacity 0.3s ease; }
.gallery-item:hover .photo { transform: scale(1.04); opacity: 0.9; }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.2s;
  pointer-events: none;
}
.gallery-item:hover::after { border-color: var(--brass); }

.gallery-item.g1 { grid-column: span 5; grid-row: span 5; }
.gallery-item.g2 { grid-column: span 4; grid-row: span 3; }
.gallery-item.g3 { grid-column: span 3; grid-row: span 3; }
.gallery-item.g4 { grid-column: span 4; grid-row: span 2; }
.gallery-item.g5 { grid-column: span 3; grid-row: span 2; }
.gallery-item.g6 { grid-column: span 4; grid-row: span 4; }
.gallery-item.g7 { grid-column: span 4; grid-row: span 4; }
.gallery-item.g8 { grid-column: span 4; grid-row: span 4; }
@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 120px; }
  .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; }
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 26, 34, 0.96);
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 80px 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-frame {
  position: relative;
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 4 / 3;
}
.lightbox-frame .photo { height: 100%; width: 100%; }
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  color: var(--paper);
  display: grid; place-items: center;
  font-size: 22px;
  border: 1px solid rgba(246, 243, 236, 0.2);
  z-index: 2;
}
.lightbox-close:hover { background: var(--paper); color: var(--ink); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px; height: 56px;
  color: var(--paper);
  display: grid; place-items: center;
  font-size: 28px;
  font-family: var(--serif);
  border: 1px solid rgba(246, 243, 236, 0.2);
  z-index: 2;
}
.lightbox-nav:hover { background: var(--paper); color: var(--ink); }
.lightbox-nav.prev { left: 24px; }
.lightbox-nav.next { right: 24px; }
.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--paper);
  opacity: 0.6;
}

/* Reviews ================================================== */

.reviews { background: var(--paper); }

/* Review platform tabs */
.rev-tabs {
  display: flex;
  gap: 0;
  margin: 0 0 48px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.rev-tab {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 32px;
  text-align: left;
  position: relative;
  transition: background 0.2s;
  border-right: 1px solid var(--line);
  min-width: 0;
}
.rev-tab:hover { background: var(--paper-warm); }
.rev-tab.active { background: var(--paper-warm); }
.rev-tab.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--brass);
}
.rev-tab-logo {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: var(--paper);
  border-radius: 50%;
  flex-shrink: 0;
}
.rev-tab.active .rev-tab-logo {
  background: #fff;
  box-shadow: 0 2px 6px rgba(15,26,34,0.08);
}
.rev-tab-name {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
}
.rev-tab-meta {
  display: block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 500;
}

.reviews-cta {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
  .rev-tab { padding: 16px 18px; flex: 1; }
  .rev-tab-name { font-size: 16px; }
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }

.review {
  padding: 36px 32px;
  background: var(--paper-warm);
  position: relative;
}
.review .quote {
  font-family: var(--serif);
  font-size: 56px;
  font-style: italic;
  line-height: 1;
  color: var(--brass);
  margin-bottom: 8px;
  font-weight: 300;
}
.review .stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--brass);
  font-size: 14px;
  letter-spacing: 2px;
}
.review p {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 300;
  margin: 0 0 24px;
}
.review .by {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.review .by .name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.review .by .src {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.reviews-aggregate {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.agg-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.agg-item .score {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--brass);
}
.agg-item .src {
  display: flex;
  flex-direction: column;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.agg-item .src .name { font-weight: 600; }
.agg-item .src .count { opacity: 0.5; margin-top: 2px; }

/* Contact ================================================== */

.contact { background: var(--ink); color: var(--paper); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }
.contact h2 { margin: 24px 0 32px; }

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
  margin-top: 40px;
}
.contact-info .item h5 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 10px;
  font-family: var(--sans);
  font-weight: 600;
}
.contact-info .item p {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
  font-weight: 300;
}
.contact-info .item a:hover { color: var(--brass); }

.directions {
  background: rgba(246, 243, 236, 0.04);
  border: 1px solid var(--line-light);
  padding: 32px;
}
.directions h4 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 24px;
}
.directions .row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: 14px;
}
.directions .row:last-child { border-bottom: 0; }
.directions .row .place { font-family: var(--serif); font-size: 16px; }
.directions .row .dist { color: var(--brass); font-family: var(--mono); font-size: 12px; letter-spacing: 0.05em; }

/* Footer =================================================== */

.foot {
  background: #0a1218;
  color: var(--paper);
  padding: 80px 0 32px;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-light);
}
@media (max-width: 900px) { .foot-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .foot-top { grid-template-columns: 1fr; } }

.foot h5 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  font-family: var(--sans);
  font-weight: 600;
  margin: 0 0 20px;
}
.foot ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot ul a { font-size: 14px; opacity: 0.75; }
.foot ul a:hover { opacity: 1; color: var(--brass); }

.foot-brand .brand-name .bottom { font-size: 24px; }
.foot-brand p { margin-top: 24px; font-size: 14px; opacity: 0.6; max-width: 38ch; line-height: 1.6; }

.foot-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  font-size: 11px;
  letter-spacing: 0.05em;
  opacity: 0.45;
  flex-wrap: wrap;
  gap: 16px;
}

/* Reveal animation ========================================= */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* Misc ===================================================== */

.muted { color: var(--muted); }
.spacer-sm { height: 24px; }
.spacer-md { height: 48px; }

.icon-line {
  width: 14px;
  height: 14px;
  display: inline-block;
}
