:root {
  --bg: #f6f0e4;
  --bg-strong: #eadfc8;
  --surface: rgba(255, 250, 240, 0.78);
  --surface-strong: rgba(255, 249, 236, 0.94);
  --card: rgba(255, 251, 242, 0.88);
  --ink: #193b2a;
  --muted: #506756;
  --accent: #b9782f;
  --accent-deep: #8b5e2b;
  --border: rgba(25, 59, 42, 0.12);
  --shadow: 0 24px 60px rgba(40, 38, 23, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(184, 120, 47, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(25, 59, 42, 0.12), transparent 32%),
    linear-gradient(180deg, #f7f1e6 0%, #f2ead9 54%, #ece2d0 100%);
  min-height: 100vh;
}

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

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

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding-bottom: 48px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 18px auto 28px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(250, 245, 235, 0.84);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 30px rgba(47, 43, 29, 0.08);
}

.brand img,
.footer-brand img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 130px);
  padding: 36px;
  border-radius: 40px;
  overflow: hidden;
  align-items: end;
  background: #16241b;
  box-shadow: 0 30px 70px rgba(29, 25, 17, 0.18);
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #16241b;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(12, 19, 15, 0.1) 0%, rgba(12, 19, 15, 0.28) 35%, rgba(12, 19, 15, 0.82) 100%),
    linear-gradient(90deg, rgba(14, 21, 17, 0.72) 0%, rgba(14, 21, 17, 0.34) 42%, rgba(14, 21, 17, 0.12) 100%);
}

.hero-copy-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  gap: 28px;
  align-items: end;
}

.hero-copy,
.hero-info-card {
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 247, 233, 0.14);
  box-shadow: 0 24px 60px rgba(10, 14, 12, 0.24);
}

.hero-copy {
  padding: 30px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(252, 246, 233, 0.14), rgba(252, 246, 233, 0.08));
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 800;
}

.hero h1,
.section-heading h2,
.booking-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(3.6rem, 8vw, 6.8rem);
  max-width: 9ch;
  color: #fff6e8;
}

.hero-text,
.about-copy p,
.highlight-card p,
.experience-panel p,
.booking-copy p,
.footer-copy,
.stat-value,
.feature-card li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.hero .eyebrow,
.hero-text,
.hero-points li,
.hero-scroll-cue,
.hero-info-card p,
.hero-info-label,
.hero-mini-grid span,
.hero-mini-grid strong {
  color: #f8efe0;
}

.hero-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--ink), #2c593f);
  color: #fff9ef;
  box-shadow: 0 18px 34px rgba(25, 59, 42, 0.24);
}

.button-secondary {
  border: 1px solid rgba(25, 59, 42, 0.2);
  background: rgba(255, 251, 242, 0.74);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-points li,
.contact-note {
  padding: 12px 16px;
  border: 1px solid rgba(255, 247, 233, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.12);
  font-size: 0.92rem;
}

.hero-scroll-cue {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  color: #f8efe0;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-info-card {
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(251, 244, 230, 0.18), rgba(251, 244, 230, 0.1));
}

.hero-info-label {
  margin: 0 0 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 800;
}

.hero-info-card h2 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  color: #fff6e8;
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.hero-mini-grid div {
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 247, 233, 0.08);
  border: 1px solid rgba(255, 247, 233, 0.12);
}

.hero-mini-grid span,
.hero-mini-grid strong {
  display: block;
}

.hero-mini-grid span {
  margin-bottom: 6px;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-mini-grid strong {
  font-size: 0.95rem;
  line-height: 1.45;
}

.hero-card img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-strip,
.booking-card,
.feature-card,
.highlight-card,
.experience-panel,
.gallery-item {
  background: var(--card);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 12px 0 48px;
  padding: 24px;
  border-radius: var(--radius-xl);
}

.stat-label {
  margin: 0 0 8px;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.stat-value {
  margin: 0;
  max-width: 24ch;
}

.section {
  padding: 34px 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: center;
}

.showcase-copy {
  padding: 30px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255, 251, 242, 0.9), rgba(241, 232, 217, 0.9));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.showcase-copy h2 {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  line-height: 0.95;
}

.showcase-copy p:last-of-type {
  margin-bottom: 22px;
  color: var(--muted);
  line-height: 1.8;
}

.showcase-stack {
  position: relative;
  min-height: 560px;
}

.showcase-image {
  margin: 0;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-image-main {
  position: absolute;
  inset: 0 80px 0 0;
}

.showcase-image-float {
  position: absolute;
  right: 0;
  bottom: 34px;
  width: 42%;
  height: 56%;
  border: 8px solid rgba(255, 248, 236, 0.9);
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.section-heading h2,
.booking-copy h2 {
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  max-width: 11ch;
}

.about-layout,
.experience-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.about-copy,
.feature-card,
.booking-card {
  border-radius: var(--radius-xl);
}

.about-copy {
  padding: 34px;
  background: linear-gradient(145deg, rgba(255, 251, 242, 0.88), rgba(242, 233, 219, 0.88));
  border: 1px solid var(--border);
}

.feature-card {
  padding: 32px;
  height: 100%;
}

.feature-card h3,
.highlight-card h3,
.experience-panel h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.feature-card ul {
  margin: 0;
  padding-left: 20px;
}

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

.rooms-grid,
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.highlight-card,
.experience-panel,
.room-card,
.video-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.highlight-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent-deep);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

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

.places-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 22px;
}

.places-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.place-feature-card,
.places-list-card {
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.place-feature-card {
  overflow: hidden;
  border-radius: 28px;
}

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

.place-feature-copy {
  padding: 20px;
}

.place-feature-copy span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
}

.place-feature-copy h3,
.places-list-card h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}

.place-feature-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.places-list-card {
  padding: 26px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(185, 120, 47, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(255, 250, 240, 0.95), rgba(241, 232, 217, 0.92));
}

.places-list {
  display: grid;
  gap: 10px;
}

.place-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(25, 59, 42, 0.08);
}

.place-row:last-child {
  border-bottom: 0;
}

.place-row span {
  color: var(--ink);
  font-weight: 600;
}

.place-row strong {
  color: var(--accent-deep);
  font-size: 0.95rem;
}

.room-card,
.video-card {
  background: var(--card);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.room-card {
  padding: 0;
  overflow: hidden;
}

.room-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.room-copy {
  padding: 22px;
}

.room-copy h3,
.video-card h3 {
  margin: 0 0 10px;
  font-size: 1.24rem;
}

.room-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.gallery-item {
  margin: 0;
  min-height: 280px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.gallery-item-large {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 580px;
}

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

.gallery-item:not(.gallery-item-large):not(.gallery-item-wide) {
  grid-column: span 5;
}

.video-card {
  padding: 14px;
}

.video-card video {
  width: 100%;
  height: 420px;
  display: block;
  object-fit: cover;
  border-radius: 18px;
  background: #000;
  margin-bottom: 16px;
}

.experience-layout {
  grid-template-columns: repeat(3, 1fr);
}

.booking-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  padding: 34px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(185, 120, 47, 0.2), transparent 32%),
    linear-gradient(145deg, rgba(255, 250, 240, 0.95), rgba(239, 229, 212, 0.92));
}

.contact-note {
  margin: 0;
}

.contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.contact-chips span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(25, 59, 42, 0.12);
  background: rgba(255, 252, 246, 0.86);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-panel {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(25, 59, 42, 0.96), rgba(34, 69, 49, 0.92));
  color: #fff6e8;
  box-shadow: 0 24px 60px rgba(25, 59, 42, 0.22);
}

.contact-panel-top {
  margin-bottom: 18px;
}

.contact-kicker {
  margin: 0 0 8px;
  color: rgba(255, 240, 215, 0.8);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
}

.contact-panel h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 22px 0 18px;
}

.contact-item {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 247, 233, 0.08);
  border: 1px solid rgba(255, 247, 233, 0.12);
}

.contact-item span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 240, 215, 0.74);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
}

.contact-item a,
.contact-item p {
  margin: 0;
  color: #fff6e8;
  line-height: 1.7;
}

.contact-item a {
  font-weight: 700;
}

.contact-panel .button-secondary {
  background: rgba(255, 247, 233, 0.08);
  border-color: rgba(255, 247, 233, 0.18);
  color: #fff6e8;
}

.contact-panel .contact-note {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 247, 233, 0.12);
  background: rgba(255, 247, 233, 0.08);
  color: rgba(255, 240, 215, 0.88);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 10px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand p {
  margin: 0;
  font-weight: 800;
}

.footer-brand span {
  color: var(--muted);
}

.footer-copy {
  max-width: 36ch;
  text-align: right;
}

@media (max-width: 1080px) {
  .hero,
  .about-layout,
  .booking-card,
  .showcase-grid,
  .places-layout {
    grid-template-columns: 1fr;
  }

  .highlights-grid,
  .experience-layout,
  .rooms-grid,
  .video-grid,
  .places-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .site-header {
    top: 10px;
    padding: 10px 12px;
    border-radius: 28px;
  }

  .brand img,
  .footer-brand img {
    width: 72px;
    height: 72px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: rgba(251, 246, 238, 0.97);
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .site-header.nav-open .nav-toggle span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: 88vh;
    padding: 18px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  .hero-copy-wrap {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-info-card,
  .showcase-copy {
    padding: 22px;
  }

  .hero-mini-grid {
    grid-template-columns: 1fr;
  }

  .showcase-stack {
    min-height: 420px;
  }

  .showcase-image-main {
    inset: 0 34px 0 0;
  }

  .showcase-image-float {
    width: 46%;
    height: 46%;
  }

  .intro-strip,
  .highlights-grid,
  .experience-layout,
  .rooms-grid,
  .video-grid,
  .places-feature-grid,
  .contact-grid,
  .booking-card,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .video-card video {
    height: 340px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item-large,
  .gallery-item-wide,
  .gallery-item:not(.gallery-item-large):not(.gallery-item-wide) {
    grid-column: auto;
    min-height: 240px;
  }

  .gallery-item-large {
    min-height: 420px;
  }

  .site-footer,
  .footer-copy {
    text-align: left;
  }
}
