:root {
  --bg: #F4F7F6;
  --bg-soft: #E8EEE9;
  --surface: #FFFFFF;
  --text: #0E2A2F;
  --text-muted: #4A5F62;
  --accent: #0F6E6B;
  --accent-hover: #0A5754;
  --accent-soft: #D7EBEA;
  --champagne: #C4A574;
  --champagne-dark: #A88855;
  --dark: #0E2A2F;
  --dark-2: #16363B;
  --line: rgba(14, 42, 47, 0.1);
  --shadow: 0 18px 40px rgba(14, 42, 47, 0.1);
  --radius: 16px;
  --header-h: 88px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Outfit", "Segoe UI", sans-serif;
  --wrap: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font-family: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3.15rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); }

p { margin: 0 0 1em; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--accent);
  color: #fff;
  padding: 8px 14px;
  z-index: 10000;
}

.skip-link:focus { left: 8px; }

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

.kicker {
  display: inline-block;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 26px;
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.45);
}

.btn-ghost:hover { background: rgba(255,255,255,0.1); }

.btn-line {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.btn-line:hover {
  background: var(--accent);
  color: #fff;
}

.link-more {
  color: var(--champagne-dark);
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.link-more:hover { color: var(--accent); }

/* Header */
.topbar {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 38px;
  gap: 16px;
}

.topbar a { color: var(--text-muted); }
.topbar a:hover { color: var(--accent); }

.social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--text);
}

.social a:hover { color: var(--accent); }
.social svg { width: 15px; height: 15px; fill: currentColor; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 247, 246, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header-h);
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  white-space: nowrap;
}

.logo img, .logo svg {
  width: 40px;
  height: 40px;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.nav a, .nav-drop > span {
  padding: 10px 12px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav a:hover, .nav a.is-active, .nav-drop:hover > span {
  color: var(--accent);
}

.nav-drop { position: relative; }
.nav-drop > span { cursor: pointer; }
.nav-drop > span::after { content: "▾"; font-size: 0.65em; opacity: 0.7; }

.nav-drop:hover .drop,
.nav-drop:focus-within .drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.drop {
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.18s;
}

.drop a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
}

.drop a:hover { background: var(--accent-soft); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  position: relative;
  margin: 0 auto;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

/* Hero */
.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.hero img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,42,47,0.45) 0%, rgba(14,42,47,0.62) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 40px));
  padding: 80px 0;
}

.hero h1 { color: #fff; }
.hero p {
  color: rgba(255,255,255,0.9);
  font-size: 1.08rem;
  max-width: 640px;
  margin-inline: auto;
}

.page-hero { min-height: 52vh; }

/* About */
.section { padding: 92px 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-copy p { color: var(--text-muted); }

.photo-stack {
  position: relative;
  min-height: 520px;
}

.photo-stack img {
  width: 58%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(196,165,116,0.35);
}

.photo-stack img:first-child {
  position: absolute;
  top: 0;
  left: 0;
}

.photo-stack img:last-child {
  position: absolute;
  right: 0;
  bottom: 0;
}

.center-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.center-intro p { color: var(--text-muted); }

/* Cards */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.room-card {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(196,165,116,0.4);
  box-shadow: var(--shadow);
}

.room-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.room-card:hover img { transform: scale(1.05); }

.room-card .cap {
  position: absolute;
  inset: auto 0 0;
  padding: 28px 24px 24px;
  background: linear-gradient(180deg, transparent, rgba(14,42,47,0.88));
  color: #fff;
}

.room-card h3 { color: #fff; margin-bottom: 8px; }
.room-card p { color: rgba(255,255,255,0.84); font-size: 0.94rem; margin-bottom: 10px; }
.room-card .link-more { color: var(--champagne); }

.amenities-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
  align-items: end;
}

.amenities-head p { color: var(--text-muted); margin: 0; }

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.amenity-card {
  position: relative;
  min-height: 460px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(196,165,116,0.35);
}

.amenity-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amenity-card .cap {
  position: absolute;
  inset: auto 0 0;
  padding: 24px 18px 20px;
  background: linear-gradient(180deg, transparent, rgba(14,42,47,0.9));
  color: #fff;
}

.amenity-card h3 { color: #fff; font-size: 1.35rem; }
.amenity-card p { color: rgba(255,255,255,0.86); font-size: 0.9rem; margin: 0; }

.cta-band {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 84px 20px;
}

.cta-band h2 { color: #fff; }
.cta-band p {
  max-width: 620px;
  margin: 0 auto 24px;
  color: rgba(255,255,255,0.82);
}

.cta-band .btn {
  background: var(--champagne);
  color: var(--dark);
}

.cta-band .btn:hover {
  background: #d4b483;
}

.footer {
  background: #081C20;
  color: rgba(255,255,255,0.78);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 48px;
}

.footer h4 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.footer p { font-size: 0.92rem; }
.footer a { color: rgba(255,255,255,0.72); display: block; padding: 4px 0; }
.footer a:hover { color: var(--champagne); }
.footer .logo { color: #fff; margin-bottom: 14px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 64px;
  font-size: 0.85rem;
}

.footer-bottom .social a { color: #fff; }

/* Inner */
.hotel-list {
  display: grid;
  gap: 28px;
}

.hotel-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;
  background: var(--surface);
  border: 1px solid rgba(196,165,116,0.35);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(14,42,47,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.hotel-card img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.hotel-card .body { padding: 28px 28px 28px 0; }
.hotel-card p { color: var(--text-muted); margin: 0; }
.hotel-card .btn { margin-top: 16px; }
.hotel-card:hover { transform: translateY(-3px); transition: transform 0.2s; }

.prose { max-width: 820px; }
.prose h3 { margin-top: 1.6em; }
.prose ul { padding-left: 1.1em; color: var(--text-muted); }

.info-split {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.hours {
  background: #fff;
  border: 1px solid rgba(196,165,116,0.4);
  border-radius: var(--radius);
  padding: 28px;
}

.hours dt { font-weight: 600; }
.hours dd { margin: 0 0 10px; color: var(--text-muted); }

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 10px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq p { margin: 10px 0 0; color: var(--text-muted); }

.venue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.venue-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(196,165,116,0.35);
  box-shadow: var(--shadow);
}

.venue-card img { height: 220px; width: 100%; object-fit: cover; }
.venue-card .body { padding: 22px; }

.form {
  display: grid;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(196,165,116,0.4);
  border-radius: var(--radius);
  padding: 28px;
}

.form label { font-weight: 600; font-size: 0.88rem; }
.form input, .form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 1rem;
  background: var(--bg);
}

.form input:focus, .form textarea:focus {
  outline: 2px solid var(--accent);
  border-color: transparent;
}

.form .error { color: #9B2C2C; font-size: 0.85rem; display: none; }
.form.is-invalid .error { display: block; }
.form-success {
  display: none;
  background: var(--accent-soft);
  border-radius: 12px;
  padding: 18px;
  color: var(--accent-hover);
  font-weight: 600;
}

.form.is-sent { display: none; }
.form.is-sent + .form-success { display: block; }

.sitemap-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sitemap-cols a { display: block; padding: 6px 0; color: var(--text-muted); }
.sitemap-cols a:hover { color: var(--accent); }

.seating img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(196,165,116,0.4);
  background: #fff;
}

/* Popups */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 28, 32, 0.62);
  z-index: 80;
  display: none;
  place-items: center;
  padding: 20px;
}

.overlay.is-open { display: grid; }

.modal {
  width: min(460px, 100%);
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  text-align: center;
}

.modal h2 { font-size: 2rem; }
.modal .actions { display: flex; gap: 10px; justify-content: center; margin-top: 18px; }

.cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 16px 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}

.cookie-bar.is-open { display: flex; }
.cookie-bar p { margin: 0; font-size: 0.92rem; color: var(--text-muted); }

@media (max-width: 1020px) {
  .header-row { grid-template-columns: auto auto; }
  .header-row > .btn { display: none; }
  #nav-enquire { display: inline-flex !important; margin: 10px 12px 6px !important; width: calc(100% - 24px); color: #fff !important; }
  .nav-drop .drop {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 0 10px;
    pointer-events: none;
  }
  .nav-drop.is-open .drop {
    opacity: 1;
    visibility: visible;
    max-height: 320px;
    pointer-events: auto;
    padding: 4px 0 8px 10px;
  }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 20px;
    border-bottom: 1px solid var(--line);
  }
  .nav.is-open { display: flex; }
  .menu-toggle { display: grid; place-items: center; justify-self: end; }
  .about-grid, .amenities-head, .hotel-card, .info-split, .footer-grid,
  .sitemap-cols, .venue-grid { grid-template-columns: 1fr; }
  .rooms-grid, .amenity-grid { grid-template-columns: 1fr 1fr; }
  .photo-stack { min-height: 420px; }
  .hotel-card .body { padding: 22px; }
}

@media (max-width: 680px) {
  .rooms-grid, .amenity-grid { grid-template-columns: 1fr; }
  .cookie-bar { flex-direction: column; align-items: stretch; }
  .footer-bottom { flex-direction: column; gap: 10px; padding: 16px 0; }
  .photo-stack img { width: 70%; height: 260px; }
}
