:root {
  --bg: #f5f3f2;
  --surface: #ffffff;
  --surface-soft: #efebea;
  --text: #242424;
  --muted: #66615f;
  --accent: #cf6464;
  --accent-dark: #b45151;
  --gold: #d7b057;
  --border: #e2dcda;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

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

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

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 243, 242, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-top {
  padding: 0.55rem 0 0;
  text-align: center;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--accent-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 84px;
  padding: 0.45rem 0 0.9rem;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 150px;
  height: auto;
}

.nav-toggle {
  display: none;
}

.site-nav {
  flex: 1 1 auto;
}

.site-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: nowrap;
}

.site-nav a {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.84rem;
  line-height: 1.2;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--accent-dark);
  border-color: var(--accent);
}

/* HERO */

.page-hero {
  padding: 5rem 0;
  text-align: center;
}

.page-hero-card {
  width: min(820px, 100%);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--accent-dark);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 0;
}

.page-hero p {
  max-width: 780px;
  margin: 1.2rem auto 0;
  font-size: 1.12rem;
  color: #57514d;
  text-align: center;
}

/* SECTIONS */

.section {
  padding: 4rem 0;
}

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

.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-title p {
  max-width: 820px;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 1.08rem;
  text-align: center;
}

/* SPLIT LAYOUT */

.split-callout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

/* CARDS */

.card {
  background: var(--surface);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.content-block {
  text-align: center;
}

.content-block h2,
.content-block h3 {
  text-align: center;
  margin-top: 0;
}

.content-block p {
  text-align: left;
  color: var(--muted);
}

.content-block ul {
  margin: 0.75rem auto 0;
  display: inline-block;
  text-align: left;
}

/* GENERIC MEDIA STRIP
   Used by Rooms page and anywhere else a strip is not wrapped in .photo-panel */

.media-strip {
  display: flex;
  gap: 12px;
  width: 100%;
  height: 360px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  border-radius: 20px;
  box-shadow: var(--shadow);
  background: #ebe6e3;
}

.media-strip img {
  flex: 0 0 100%;
  width: 100%;
  height: 360px;
  object-fit: contain;
  background: #ebe6e3;
  scroll-snap-align: start;
  border-radius: 20px;
  box-shadow: none;
}

.media-strip::-webkit-scrollbar {
  height: 10px;
}

.media-strip::-webkit-scrollbar-thumb {
  background: #cbbfbb;
  border-radius: 999px;
}

/* PHOTO PANEL
   Used by split layout pages like About/Amenities/Activities */

.photo-panel {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.photo-panel img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  background: #ebe6e3;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.photo-panel .media-strip {
  max-width: 520px;
}

/* FEATURE + ROOM STACKS */

.feature-stack,
.rooms-stack {
  display: grid;
  gap: 2rem;
}

.feature-card,
.room-card {
  background: var(--surface);
  padding: 1.8rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.feature-card h3,
.room-card h3 {
  text-align: center;
  margin-top: 0;
}

.room-copy,
.feature-copy {
  text-align: center;
}

.room-copy p,
.feature-copy p {
  text-align: left;
  color: var(--muted);
}

.room-badge {
  display: inline-block;
  margin: 0 auto 1rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: #f8ecec;
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* SUPPORT LIST */

.support-list-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}

.support-list {
  margin: 0;
  padding: 0;
  list-style: none;
  width: min(560px, 100%);
  display: grid;
  gap: 0.9rem;
}

.support-list li {
  position: relative;
  padding-left: 1.6rem;
  text-align: left;
  color: var(--muted);
  font-size: 1.02rem;
}

.support-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-dark);
  font-size: 1.2rem;
  line-height: 1;
}

/* FOOTER */

.footer {
  padding: 1.5rem 0;
  background: #eee;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* TABLET */

@media (max-width: 900px) {
  .split-callout {
    grid-template-columns: 1fr;
  }

  .site-nav ul {
    gap: 0.8rem;
  }

  .site-nav a {
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  .brand img {
    width: 135px;
  }

  .photo-panel,
  .page-hero-card {
    max-width: 100%;
  }
}

/* MOBILE */

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.6rem 0.8rem;
    font-size: 0.95rem;
    cursor: pointer;
  }

  .header-inner {
    position: relative;
    align-items: center;
  }

  .brand img {
    width: 130px;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 1rem;
  }

  .site-nav.open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
  }

  .site-nav a {
    font-size: 0.92rem;
    letter-spacing: 0.12em;
  }

  .header-top {
    font-size: 0.95rem;
    padding-top: 0.65rem;
  }

  .page-hero {
    padding: 4rem 0;
  }

  .section {
    padding: 3rem 0;
  }

  .photo-panel img,
  .photo-panel .media-strip,
  .photo-panel .media-strip img,
  .media-strip,
  .media-strip img {
    height: 300px;
  }

  .card,
  .feature-card,
  .room-card {
    padding: 1.4rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}