:root {
  --color-background: #fffdf9;
  --color-surface: #ffffff;
  --color-muted: #f3eee7;
  --color-primary: #6f4e37;
  --color-primary-dark: #493225;
  --color-primary-light: #b88b65;
  --color-accent: #a8794f;
  --color-text: #27221f;
  --color-text-muted: #6c625b;
  --color-border: #ded5cc;
  --color-white: #ffffff;
  --shadow-small: 0 10px 30px rgba(45, 31, 22, 0.08);
  --shadow-large: 0 24px 60px rgba(45, 31, 22, 0.15);
  --container-width: 1180px;
  --header-height: 78px;
  --border-radius: 18px;
  --transition: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  background: var(--color-background);
  color: var(--color-text);
  font-family:
    Inter,
    "Segoe UI",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

h1,
h2,
h3 {
  line-height: 1.15;
}

h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.7rem);
  font-weight: 500;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

p {
  color: var(--color-text-muted);
}

.container {
  width: min(calc(100% - 40px), var(--container-width));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

.section-muted {
  background: var(--color-muted);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 12px 16px;
  background: var(--color-primary-dark);
  color: var(--color-white);
  text-decoration: none;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(111, 78, 55, 0.12);
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(18px);
}

.navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 600;
}

.brand-text small {
  margin-top: 3px;
  color: var(--color-text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: 28px;
}

.primary-navigation a {
  font-size: 0.93rem;
  font-weight: 600;
  text-decoration: none;
}

.primary-navigation a:hover,
.primary-navigation a:focus-visible {
  color: var(--color-primary);
}

.nav-booking {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-white);
}

.primary-navigation .nav-booking:hover,
.primary-navigation .nav-booking:focus-visible {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 6px 0;
  background: var(--color-text);
  transition: transform var(--transition), opacity var(--transition);
}

.hero {
  position: relative;
  display: flex;
  min-height: calc(100svh - var(--header-height));
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(184, 139, 101, 0.35), transparent 30%),
    radial-gradient(circle at 20% 80%, rgba(111, 78, 55, 0.28), transparent 34%),
    linear-gradient(135deg, #332218 0%, #6f4e37 45%, #a8794f 100%);
  color: var(--color-white);
}

.hero::after {
  position: absolute;
  right: -120px;
  bottom: -200px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19, 11, 7, 0.68), rgba(19, 11, 7, 0.08)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 0,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px,
      transparent 80px
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 90px;
  padding-bottom: 90px;
}

.hero .eyebrow,
.hero p {
  color: rgba(255, 255, 255, 0.85);
}

.hero-description {
  max-width: 720px;
  margin-bottom: 34px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.75);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    transform var(--transition);
}

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

.button-primary {
  background: var(--color-white);
  color: var(--color-primary-dark);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--color-white);
}

.button-light {
  background: var(--color-white);
  color: var(--color-primary-dark);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--color-white);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 50px 0 0;
  padding: 0;
  list-style: none;
}

.hero-highlights li {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.83rem;
  backdrop-filter: blur(10px);
}

.quick-information {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
  box-shadow: var(--shadow-small);
}

.quick-information-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.quick-information-grid div {
  padding: 26px 24px;
  border-right: 1px solid var(--color-border);
}

.quick-information-grid div:last-child {
  border-right: 0;
}

.quick-information-grid strong,
.quick-information-grid span {
  display: block;
}

.quick-information-grid strong {
  margin-bottom: 4px;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-information-grid span {
  font-size: 1rem;
  font-weight: 700;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  gap: 90px;
  align-items: center;
}

.section-content p {
  max-width: 680px;
  font-size: 1.06rem;
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none;
}

.feature-panel {
  padding: 20px 36px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  background: var(--color-surface);
  box-shadow: var(--shadow-large);
}

.feature-panel-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--color-border);
}

.feature-panel-item:last-child {
  border-bottom: 0;
}

.feature-panel-item > span {
  color: var(--color-primary-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
}

.feature-panel-item p {
  margin-bottom: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 50px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 8px;
}

.card-grid {
  display: grid;
  gap: 24px;
}

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

.room-card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  background: var(--color-surface);
  box-shadow: var(--shadow-small);
  transition: transform var(--transition), box-shadow var(--transition);
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.room-card-visual {
  display: flex;
  min-height: 210px;
  align-items: flex-end;
  padding: 24px;
  background:
    linear-gradient(180deg, transparent, rgba(35, 21, 13, 0.58)),
    linear-gradient(135deg, #cfb59d, #8f6749);
}

.room-card:nth-child(2) .room-card-visual {
  background:
    linear-gradient(180deg, transparent, rgba(35, 21, 13, 0.58)),
    linear-gradient(135deg, #b9aaa0, #725c50);
}

.room-card:nth-child(3) .room-card-visual {
  background:
    linear-gradient(180deg, transparent, rgba(35, 21, 13, 0.58)),
    linear-gradient(135deg, #d3b992, #8f7045);
}

.room-card:nth-child(4) .room-card-visual {
  background:
    linear-gradient(180deg, transparent, rgba(35, 21, 13, 0.58)),
    linear-gradient(135deg, #c7a88e, #705141);
}

.room-card:nth-child(5) .room-card-visual {
  background:
    linear-gradient(180deg, transparent, rgba(35, 21, 13, 0.58)),
    linear-gradient(135deg, #9f8068, #4d362a);
}

.room-card-visual span {
  color: var(--color-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.room-card-content {
  padding: 26px;
}

.room-count {
  margin-bottom: 8px;
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.room-card-content a {
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

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

.amenities-grid article {
  padding: 34px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  background: var(--color-surface);
}

.amenities-grid article p {
  margin-bottom: 0;
}

.amenity-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-muted);
  color: var(--color-primary);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.oxygen-section {
  background:
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.14), transparent 26%),
    var(--color-primary-dark);
  color: var(--color-white);
}

.oxygen-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: center;
}

.oxygen-layout h2,
.oxygen-layout p {
  color: var(--color-white);
}

.oxygen-layout p {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.78);
}

.service-note {
  padding-left: 16px;
  border-left: 3px solid rgba(255, 255, 255, 0.4);
  font-size: 0.88rem;
}

.oxygen-stat {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  text-align: center;
}

.oxygen-stat strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
}

.oxygen-stat span {
  max-width: 190px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
}

.location-layout address {
  margin-bottom: 24px;
  color: var(--color-text);
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 700;
}

.location-card {
  padding: 34px;
  border-radius: var(--border-radius);
  background: var(--color-primary-dark);
  color: var(--color-white);
  box-shadow: var(--shadow-large);
}

.location-card h3 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
}

.location-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.location-card li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.location-card li:last-child {
  border-bottom: 0;
}

.location-card strong {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-section {
  padding-top: 0;
  background: var(--color-muted);
}

.booking-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  padding: 58px;
  border-radius: 28px;
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-large);
}

.booking-panel h2 {
  margin-bottom: 16px;
  color: var(--color-white);
}

.booking-panel p {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.booking-actions {
  flex-direction: column;
}

.site-footer {
  padding: 80px 0 30px;
  background: #211712;
  color: var(--color-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 70px;
  padding-bottom: 60px;
}

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

.footer-brand .brand-text small {
  color: rgba(255, 255, 255, 0.55);
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer h2 {
  margin-bottom: 18px;
  color: var(--color-white);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 10px;
}

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

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--color-white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.82rem;
}

@media (max-width: 980px) {
  .menu-button {
    display: block;
  }

  .primary-navigation {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-background);
    box-shadow: var(--shadow-large);
  }

  .primary-navigation.is-open {
    display: flex;
  }

  .primary-navigation a {
    padding: 14px;
  }

  .nav-booking {
    margin-top: 10px;
    text-align: center;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .split-layout,
  .section-heading,
  .oxygen-layout,
  .booking-panel {
    grid-template-columns: 1fr;
  }

  .split-layout,
  .section-heading,
  .oxygen-layout {
    gap: 50px;
  }

  .room-grid,
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-actions {
    flex-direction: row;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container-width));
  }

  .section {
    padding: 78px 0;
  }

  .brand-text small {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .hero-actions,
  .booking-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .quick-information-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-information-grid div:nth-child(2) {
    border-right: 0;
  }

  .quick-information-grid div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--color-border);
  }

  .feature-panel {
    padding: 10px 24px;
  }

  .feature-panel-item {
    grid-template-columns: 38px 1fr;
  }

  .room-grid,
  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .room-card-visual {
    min-height: 180px;
  }

  .oxygen-stat {
    width: 230px;
    min-height: 230px;
    margin-inline: auto;
  }

  .booking-panel {
    padding: 38px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}