:root {
  --accent: #6E260E;
  --accent-dark: #4f1b0a;
  --ink: #1a1a1a;
  --muted: #68615b;
  --line: #e8e2dc;
  --paper: #fffaf4;
  --stone: #f3eee8;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  background: #dedbd7;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent-dark);
}

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

.site-frame {
  width: min(100% - 24px, 1380px);
  margin: 32px auto;
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--accent);
  color: var(--white);
  border-radius: 6px;
}

.skip-link:focus {
  top: 16px;
}

.top-bar {
  background: #2a2521;
  color: #fff7ec;
  font-size: 0.875rem;
}

.top-bar a {
  color: #fff7ec;
  text-decoration: none;
}

.navbar {
  min-height: 78px;
  border-bottom: 1px solid var(--line);
}

.navbar-brand {
  margin: 0;
  color: var(--ink);
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
}

.brand-name {
  display: block;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-kicker {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  color: var(--ink);
  font-weight: 600;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--accent);
}

.btn-accent {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--accent);
  --bs-btn-border-color: var(--accent);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--accent-dark);
  --bs-btn-hover-border-color: var(--accent-dark);
  --bs-btn-focus-shadow-rgb: 110, 38, 14;
  border-radius: 999px;
  font-weight: 700;
  padding: 0.78rem 1.35rem;
}

.btn-outline-accent {
  --bs-btn-color: var(--accent);
  --bs-btn-border-color: var(--accent);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--accent);
  --bs-btn-hover-border-color: var(--accent);
  border-radius: 999px;
  font-weight: 700;
  padding: 0.72rem 1.25rem;
}

.hero {
  padding: 26px clamp(14px, 4vw, 58px) 0;
}

.hero-panel {
  position: relative;
  min-height: clamp(560px, 62vw, 720px);
  overflow: hidden;
  border-radius: 26px;
  background: #31231d;
}

.hero-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(34, 25, 20, 0.2), rgba(34, 25, 20, 0.68));
}

.hero-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  inset: auto 0 92px;
  z-index: 2;
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  color: #fff;
  text-align: center;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd8c5;
}

.hero h1 {
  font-size: clamp(2.25rem, 4.8vw, 4.4rem);
  font-weight: 400;
  line-height: 1.06;
}

.page-hero h1 {
  max-width: 980px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  font-weight: 400;
  line-height: 1.14;
}

.hero h1 strong,
.page-hero h1 strong {
  font-weight: 800;
}

.hero-lede {
  max-width: 680px;
  margin: 18px auto 0;
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.enquiry-form label {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
}

.form-control,
.form-select {
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  background-color: #f5f3f0;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2rem rgba(110, 38, 14, 0.16);
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 76px);
}

.section-soft {
  background: var(--paper);
}

.section-stone {
  background: var(--stone);
}

.section-title {
  max-width: 760px;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(1.75rem, 2.7vw, 2.65rem);
  font-weight: 800;
  line-height: 1.12;
}

.section-title p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-card,
.room-card,
.destination-card,
.contact-card {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-card {
  padding: 26px;
}

.feature-card i,
.contact-card i {
  color: var(--accent);
  font-size: 1.55rem;
}

.feature-card h3,
.room-card h3,
.destination-card h2,
.contact-card h2 {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
}

.destination-card {
  padding: 24px;
}

.destination-card .distance {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
}

.destination-card p {
  color: var(--muted);
}

.room-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.room-card .card-body {
  padding: 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.gallery-item {
  grid-column: span 4;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.gallery-item.wide {
  grid-column: span 8;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.page-hero {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 76px);
  background: var(--paper);
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.map-frame {
  width: 100%;
  min-height: 430px;
  border: 0;
  border-radius: 8px;
}

.site-footer {
  padding: 54px clamp(18px, 5vw, 76px);
  color: #f8f1eb;
  background: #241f1b;
}

.site-footer a {
  color: #f8f1eb;
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffd8c5;
}

.footer-title {
  font-weight: 800;
  text-transform: uppercase;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.84);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-height: 86vh;
  border-radius: 8px;
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
}

@media (max-width: 991.98px) {
  .site-frame {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }

  .navbar-brand {
    text-align: left;
  }

  .hero-panel {
    min-height: 620px;
  }

  .hero-content {
    inset: auto 0 72px;
  }

  .gallery-item,
  .gallery-item.wide {
    grid-column: span 6;
  }
}

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

  .hero {
    padding: 14px 12px 0;
  }

  .hero-panel {
    min-height: 620px;
    border-radius: 22px;
  }

  .hero-content {
    inset: auto 0 56px;
  }

  .section,
  .page-hero,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .gallery-item,
  .gallery-item.wide {
    grid-column: 1 / -1;
  }
}
