:root {
  --forest-900: #0d2019;
  --forest-800: #153427;
  --forest-700: #214d3e;
  --forest-600: #2b5d4b;
  --forest-500: #3b735d;
  --gold-500: #d8b56b;
  --gold-400: #e3c788;
  --cream-50: #f7f3ec;
  --cream-100: #efe5d6;
  --charcoal: #1b1d1b;
  --soft: rgba(13, 32, 25, 0.7);
  --shadow: 0 18px 40px rgba(14, 25, 20, 0.12);
  --transition: 0.3s ease;
  --container: min(1180px, calc(100% - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--cream-50);
  color: var(--forest-900);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section-pad {
  padding: 6rem 0;
}

.eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: var(--gold-400);
  margin: 0 0 0.9rem;
  font-weight: 600;
}

.eyebrow-dark {
  color: var(--forest-700);
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.1;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  margin-bottom: 1rem;
  max-width: 620px;
}

h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.9rem, 2vw, 2.5rem);
  margin-bottom: 0.4rem;
}

p {
  margin-top: 0;
  color: rgba(13, 32, 25, 0.82);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(8, 23, 18, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(216, 181, 107, 0.2);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(8, 23, 18, 0.92);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  overflow: hidden;
  box-shadow: inset 0 0 0 2px rgba(13, 32, 25, 0.18);
}

.brand-logo {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong,
.brand-text small {
  font-family: "Cormorant Garamond", serif;
}

.brand-text strong {
  font-size: 1.7rem;
}

.brand-text small {
  font-size: 0.9rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
}

.site-nav a {
  position: relative;
  font-size: 0.95rem;
  transition: color var(--transition);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 2px;
  background: var(--gold-400);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  border-radius: 0.8rem;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  margin: 0.28rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.5rem;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--forest-900);
  box-shadow: 0 12px 24px rgba(216, 181, 107, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(8, 23, 18, 0.72), rgba(13, 32, 25, 0.38)),
    url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 18, 14, 0.78), rgba(7, 18, 14, 0.2));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.7fr;
  gap: 2rem;
  align-items: end;
  padding: 5rem 0;
}

.hero-copy {
  color: #fff;
  padding-top: 4rem;
}

.hero-copy .lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.06rem;
  max-width: 620px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-meta li {
  border-left: 1px solid rgba(255, 255, 255, 0.32);
  padding-left: 1rem;
  font-size: 0.9rem;
}

.hero-meta li:first-child {
  border-left: none;
  padding-left: 0;
}

.booking-panel {
  background: rgba(247, 243, 236, 0.96);
  border: 1px solid rgba(13, 32, 25, 0.08);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  padding: 1.3rem 1.2rem 1.1rem;
}

.panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(13, 32, 25, 0.7);
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(13, 32, 25, 0.08);
}

.panel-top strong {
  color: var(--forest-900);
  font-size: 1.1rem;
}

.panel-body {
  display: grid;
  gap: 1rem;
  padding-top: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(13, 32, 25, 0.7);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(13, 32, 25, 0.14);
  border-radius: 0.85rem;
  background: #fff;
  padding: 0.85rem 1rem;
  color: var(--forest-900);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(216, 181, 107, 0.45);
  border-color: transparent;
}

.panel-button {
  width: 100%;
  margin-top: 0.5rem;
}

.about,
.location,
.contact {
  background: rgba(255, 255, 255, 0.38);
}

.intro-grid,
.location-grid,
.contact-grid,
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-card {
  position: relative;
  min-height: 420px;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image {
  height: 100%;
  min-height: 420px;
  background: url("https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
}

.about-detail {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  background: rgba(13, 32, 25, 0.74);
  color: #fff;
}

.about-detail strong,
.about-detail span {
  display: block;
}

.about-detail strong {
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
}

.about-detail span {
  color: rgba(255, 255, 255, 0.8);
}

.section-heading {
  margin-bottom: 2.3rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.room-card {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(13, 32, 25, 0.06);
  box-shadow: 0 12px 28px rgba(12, 24, 18, 0.05);
}

.room-card img {
  height: 260px;
  width: 100%;
  object-fit: cover;
}

.room-content {
  padding: 1.3rem 1.2rem 1.4rem;
}

.room-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.7rem;
}

.room-header h3 {
  margin: 0;
  font-size: 2rem;
}

.room-header span {
  color: var(--forest-700);
  font-weight: 700;
  white-space: nowrap;
}

.room-card p {
  margin-bottom: 1rem;
}

.room-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: rgba(13, 32, 25, 0.8);
  font-size: 0.9rem;
}

.room-card li {
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(216, 181, 107, 0.15);
}

.dining {
  background: linear-gradient(180deg, rgba(13, 32, 25, 0.04), rgba(13, 32, 25, 0));
}

.feature-list {
  margin: 1.4rem 0 0;
  padding-left: 1.25rem;
  color: rgba(13, 32, 25, 0.8);
}

.feature-list li + li {
  margin-top: 0.75rem;
}

.card-stack {
  position: relative;
  min-height: 500px;
}

.dish-card {
  position: absolute;
  overflow: hidden;
  border-radius: 1.8rem;
  box-shadow: var(--shadow);
}

.dish-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dish-large {
  inset: 0 20% 0 0;
}

.dish-small {
  right: 0;
  bottom: 0;
  width: 45%;
  height: 60%;
  border: 6px solid rgba(247, 243, 236, 0.9);
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.amenity-item {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(13, 32, 25, 0.08);
  border-radius: 1.4rem;
  padding: 1.5rem 1.2rem;
  box-shadow: 0 8px 18px rgba(12, 24, 18, 0.04);
}

.amenity-item .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  font-size: 1.2rem;
  background: rgba(216, 181, 107, 0.18);
  color: var(--forest-700);
  margin-bottom: 1rem;
}

.amenity-item h3 {
  margin-bottom: 0.45rem;
  font-size: 1.8rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border: none;
  padding: 0;
  overflow: hidden;
  border-radius: 1.2rem;
  box-shadow: 0 12px 25px rgba(12, 24, 18, 0.08);
  aspect-ratio: 4 / 3;
  background: rgba(13, 32, 25, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.05);
}

.location-map {
  position: relative;
  min-height: 430px;
  border-radius: 1.8rem;
  background:
    linear-gradient(135deg, rgba(27, 52, 42, 0.3), rgba(27, 52, 42, 0.15)),
    url("https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  border: 6px solid rgba(255, 255, 255, 0.5);
  color: var(--forest-900);
  font-weight: 800;
  font-size: 1.4rem;
  box-shadow: 0 12px 28px rgba(13, 32, 25, 0.18);
}

.location-details {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.location-details strong,
.location-details span {
  display: block;
}

.contact-grid {
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-list span {
  display: block;
  color: rgba(13, 32, 25, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  font-size: 0.72rem;
  margin-bottom: 0.25rem;
}

.contact-form {
  background: #fff;
  border-radius: 1.4rem;
  padding: 1.3rem;
  border: 1px solid rgba(13, 32, 25, 0.06);
  box-shadow: 0 12px 28px rgba(12, 24, 18, 0.05);
}

.field-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-footer {
  background: var(--forest-900);
  color: rgba(255, 255, 255, 0.8);
  padding: 1.5rem 0;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  color: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition);
  z-index: 100;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 18, 15, 0.62);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem 1.5rem 1.5rem;
  box-shadow: var(--shadow);
}

.modal-close,
.lightbox-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 1px solid rgba(13, 32, 25, 0.12);
  background: rgba(13, 32, 25, 0.02);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--forest-900);
}

.modal-header {
  margin-bottom: 1rem;
}

.booking-form {
  display: grid;
  gap: 1rem;
}

.booking-submit {
  width: 100%;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(9, 18, 15, 0.9);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition);
  z-index: 120;
  padding: 2rem;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(1000px, 92vw);
  max-height: 86vh;
  object-fit: cover;
  border-radius: 1.2rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.page-hero {
  background: linear-gradient(135deg, rgba(8, 23, 18, 0.9), rgba(13, 32, 25, 0.65)),
    url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  color: #fff;
  padding: 3.5rem 0 2.5rem;
}

.page-hero-inner {
  padding: 3rem 0 1rem;
}

.page-kicker {
  font-size: 0.76rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.page-hero h1 {
  color: #fff;
  max-width: 720px;
}

.page-intro {
  padding: 4rem 0 1rem;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.page-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 14px 30px rgba(12, 24, 18, 0.06);
  border: 1px solid rgba(13, 32, 25, 0.06);
  overflow: hidden;
}

.page-card img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.page-copy {
  padding: 2rem 1.4rem;
}

.info-list {
  list-style: none;
  margin: 1.3rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.info-list li {
  background: rgba(216, 181, 107, 0.07);
  border: 1px solid rgba(13, 32, 25, 0.05);
  border-radius: 0.9rem;
  padding: 0.9rem 1rem;
  font-weight: 500;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.feature-box {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.5rem 1.2rem;
  box-shadow: 0 12px 26px rgba(12, 24, 18, 0.05);
  border: 1px solid rgba(13, 32, 25, 0.06);
}

.feature-box h3 {
  font-size: 1.95rem;
  margin-bottom: 0.6rem;
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-page-grid .gallery-item {
  aspect-ratio: 4 / 3;
}

.page-form {
  background: #fff;
  border-radius: 1.4rem;
  padding: 1.5rem;
  box-shadow: 0 12px 28px rgba(12, 24, 18, 0.05);
  border: 1px solid rgba(13, 32, 25, 0.06);
}

.map-card {
  min-height: 420px;
  border-radius: 1.6rem;
  background: linear-gradient(135deg, rgba(27, 52, 42, 0.25), rgba(27, 52, 42, 0.12)),
    url("https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
  position: relative;
  box-shadow: var(--shadow);
}

.page-map-pin {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--forest-900);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  border: 6px solid rgba(255, 255, 255, 0.5);
}

@media (max-width: 980px) {
  .hero-inner,
  .intro-grid,
  .split-layout,
  .location-grid,
  .contact-grid,
  .card-grid,
  .amenity-grid,
  .page-grid,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .amenity-grid,
  .gallery-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-inner {
    padding-top: 3rem;
  }

  .dish-large {
    inset: 0 0 12% 0;
  }

  .dish-small {
    width: 55%;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(8, 23, 18, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 0.3rem 0;
  }

  .nav-book {
    width: 100%;
    margin-top: 0.6rem;
  }

  .hero {
    min-height: 630px;
  }

  .hero-copy {
    padding-top: 2rem;
  }

  .two-up,
  .gallery-grid,
  .card-grid,
  .amenity-grid,
  .footer-wrap {
    grid-template-columns: 1fr;
    display: grid;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-wrap {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-meta li {
    border-left: none;
    padding-left: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section-pad {
    padding: 4.5rem 0;
  }
}
