:root {
  --ink: #161412;
  --muted: #5f5851;
  --line: #ddd6cf;
  --paper: #fbf8f3;
  --white: #ffffff;
  --gold: #f5a623;
  --gold-dark: #c77800;
  --green: #2d6b5f;
  --blue: #264d63;
  --shadow: 0 18px 48px rgba(21, 18, 13, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(251, 248, 243, 0.96);
  color: var(--ink);
  box-shadow: 0 10px 36px rgba(20, 16, 12, 0.08);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 68px;
}

.site-header:not(.is-scrolled):not(.is-open) .brand {
  opacity: 0;
  pointer-events: none;
}

.brand img,
.site-footer img {
  object-fit: contain;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  padding: 8px 0;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.header-cta {
  color: var(--ink);
  background: var(--gold);
}

.btn:hover,
.header-cta:hover,
.filter:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.btn-secondary.light {
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.18);
  color: currentColor;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 12, 8, 0.88) 0%, rgba(16, 12, 8, 0.62) 42%, rgba(16, 12, 8, 0.14) 100%),
    linear-gradient(0deg, rgba(16, 12, 8, 0.72) 0%, rgba(16, 12, 8, 0.02) 48%);
}

.hero-content {
  position: relative;
  width: min(720px, calc(100% - 36px));
  margin: 0 clamp(18px, 7vw, 88px) clamp(34px, 8vh, 76px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.06rem, 2vw, 1.26rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.hero-stats div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.hero-stats dt {
  font-size: 1.45rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
}

.booking-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 6vw, 76px);
  background: var(--gold);
}

.booking-strip span,
.booking-strip strong {
  display: block;
}

.booking-strip span {
  color: rgba(22, 20, 18, 0.72);
  font-weight: 700;
}

.booking-strip strong {
  font-size: clamp(1.05rem, 2vw, 1.42rem);
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 6vw, 76px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.intro-grid,
.room-grid,
.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.intro-grid article,
.room-card,
.policy-grid article,
.location-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.intro-grid article,
.room-card,
.policy-grid article {
  padding: 24px;
}

.intro-grid h3,
.room-card h3,
.location-card h3,
.policy-grid h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.intro-grid p,
.room-card p,
.location-card p,
.policy-grid p {
  color: var(--muted);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: var(--radius);
  background: #fff3d8;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.rooms-section,
.amenities-section,
.info-list-section {
  background: #f1ebe4;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.filter {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.filter.is-active {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.room-label {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.room-card ul {
  margin: 0 0 20px;
  padding-left: 18px;
  color: var(--muted);
}

.room-card a {
  display: inline-flex;
  font-weight: 900;
  color: var(--green);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.location-card {
  min-height: 250px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.92)),
    linear-gradient(135deg, #fff8e8, #e6f0ee);
}

.location-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.92)),
    linear-gradient(135deg, #e8f1f4, #fff1df);
}

.location-card:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.92)),
    linear-gradient(135deg, #eef4e7, #fff5db);
}

.location-card span {
  display: block;
  min-height: 1.9em;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

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

.amenity-list span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 800;
}

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

.info-card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.info-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.info-card h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  line-height: 1.18;
}

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

.info-card a {
  font-weight: 900;
  color: var(--green);
}

.content-page {
  background: var(--paper);
}

.content-page .site-header {
  color: var(--ink);
}

.content-main {
  padding-top: 78px;
}

.info-hero,
.article-page {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
}

.info-hero {
  padding: clamp(64px, 9vw, 118px) 0 clamp(36px, 6vw, 72px);
}

.info-hero h1,
.article-page h1 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 0.98;
}

.info-hero p:not(.eyebrow),
.article-lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.article-page {
  padding: clamp(48px, 8vw, 92px) 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--green);
}

.article-page h2 {
  max-width: 760px;
  margin: 38px 0 12px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.12;
}

.article-page p,
.article-page li {
  max-width: 760px;
  color: var(--muted);
}

.article-page ul {
  max-width: 760px;
  margin: 0 0 18px;
  padding-left: 22px;
}

.article-page li + li {
  margin-top: 8px;
}

.article-table-wrap {
  max-width: 920px;
  overflow-x: auto;
  margin: 18px 0 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.article-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.article-table th,
.article-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.article-table th {
  background: #f1ebe4;
  color: var(--ink);
  font-size: 0.84rem;
  text-transform: uppercase;
}

.article-table tr:last-child td {
  border-bottom: 0;
}

.article-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 42px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--green);
  color: var(--white);
}

.article-cta h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.article-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.not-found-page {
  width: min(860px, calc(100% - 36px));
  min-height: calc(100vh - 246px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding: clamp(64px, 10vw, 118px) 0;
}

.not-found-page h1 {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2.8rem, 8vw, 5.8rem);
  line-height: 0.98;
}

.not-found-page p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.not-found-contact {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.faq-list {
  max-width: 920px;
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 22px 0;
  font-size: 1.1rem;
  font-weight: 900;
}

details p {
  max-width: 760px;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(48px, 7vw, 88px) clamp(18px, 6vw, 76px);
  background: var(--green);
  color: var(--white);
}

.contact-section h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
}

.contact-section p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 6vw, 76px);
  background: var(--ink);
  color: var(--white);
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

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

  .site-header.is-open .site-nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 12px;
  }

  .site-header.is-open .site-nav a {
    padding: 14px 0;
    border-top: 1px solid var(--line);
  }

  .site-header.is-open .header-cta {
    grid-column: 1 / -1;
  }

  .intro-grid,
  .room-grid,
  .policy-grid,
  .amenity-list,
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 94vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(16, 12, 8, 0.88), rgba(16, 12, 8, 0.5)),
      linear-gradient(0deg, rgba(16, 12, 8, 0.78) 0%, rgba(16, 12, 8, 0.08) 58%);
  }

  .hero-content {
    width: calc(100% - 36px);
    margin-bottom: 28px;
  }

  h1 {
    font-size: clamp(2.7rem, 16vw, 4rem);
  }

  .hero-actions,
  .booking-strip,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .booking-strip .btn,
  .contact-actions .btn {
    width: 100%;
  }

  .hero-stats,
  .intro-grid,
  .room-grid,
  .policy-grid,
  .amenity-list,
  .info-grid,
  .article-cta {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .location-grid {
    grid-template-columns: repeat(5, 82vw);
  }
}
