/* ── Variables ── */
:root {
  --white: #ffffff;
  --charcoal: #1a1a1a;
  --charcoal-dark: #111111;
  --muted: #6f6a63;
  --accent: #a89060;
  --accent-soft: #c4b28a;
  --border: #e6e2db;
  --surface: #f5f3ef;
  --surface-warm: #ebe4d8;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Montserrat", system-ui, sans-serif;
  --max-width: 80rem;
  --page-gutter: 30px;
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* ── Utilities ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
}

.serif {
  font-family: var(--font-serif);
}

.label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

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

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

.btn-outline-white {
  border: 1px solid var(--white);
  color: var(--white);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

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

.btn-white:hover {
  background: var(--accent);
  color: var(--white);
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--charcoal);
}

/* ── Top Bar ── */
.top-bar {
  position: relative;
  z-index: 60;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 0.625rem 0;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.top-bar__location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.top-bar__location svg {
  flex-shrink: 0;
  color: var(--charcoal);
}

.top-bar__right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.top-bar__link {
  display: none;
  align-items: center;
  gap: 0.45rem;
  color: var(--charcoal);
  transition: color 0.2s;
}

.top-bar__link svg {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
}

.top-bar__link:hover {
  color: var(--accent);
}

.top-bar__social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.top-bar__social a {
  display: flex;
  color: var(--charcoal);
  transition: color 0.2s;
}

.top-bar__social a:hover {
  color: var(--accent);
}

@media (min-width: 768px) {
  .top-bar__link {
    display: inline-flex;
  }
}

/* ── Header ── */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding-top: 1.125rem;
  padding-bottom: 1.125rem;
}

.logo {
  flex-shrink: 0;
  justify-self: start;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--charcoal);
}

.logo__sub {
  display: block;
  margin-top: 0.3rem;
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--muted);
}

.nav-desktop {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
}

.nav-desktop a {
  position: relative;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.2s;
  padding-bottom: 0.25rem;
}

.nav-desktop a:hover {
  color: var(--accent);
}

.nav-desktop a.active {
  color: var(--charcoal);
}

.nav-desktop a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--charcoal);
}

.header__actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-self: end;
  gap: 1rem;
}

.header__book {
  display: none;
  padding: 0.7rem 1.35rem;
  font-size: 0.6875rem;
  border-radius: 3px;
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
}

.menu-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Transparent header over hero */
body:has(.header--overlay) .top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.header--overlay {
  position: absolute;
  top: var(--top-bar-height, 2.75rem);
  left: 0;
  right: 0;
  background: transparent;
  box-shadow: none;
}

.header--overlay .logo,
.header--overlay .nav-desktop a,
.header--overlay .menu-toggle {
  color: var(--white);
}

.header--overlay .logo__sub {
  color: rgba(255, 255, 255, 0.72);
}

.header--overlay .nav-desktop a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.header--overlay .nav-desktop a.active {
  color: var(--white);
}

.header--overlay .nav-desktop a.active::after {
  background: var(--white);
}

.header--overlay .header__book {
  background: var(--white);
  color: var(--charcoal);
}

.header--overlay .header__book:hover {
  background: var(--accent);
  color: var(--white);
}

.header--overlay.header--scrolled,
.header--overlay.is-menu-open {
  position: fixed;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header--overlay.header--scrolled .logo,
.header--overlay.header--scrolled .nav-desktop a,
.header--overlay.header--scrolled .menu-toggle,
.header--overlay.is-menu-open .logo,
.header--overlay.is-menu-open .nav-desktop a,
.header--overlay.is-menu-open .menu-toggle {
  color: var(--charcoal);
}

.header--overlay.header--scrolled .logo__sub,
.header--overlay.is-menu-open .logo__sub {
  color: var(--muted);
}

.header--overlay.header--scrolled .nav-desktop a:hover,
.header--overlay.is-menu-open .nav-desktop a:hover {
  color: var(--accent);
}

.header--overlay.header--scrolled .nav-desktop a.active,
.header--overlay.is-menu-open .nav-desktop a.active {
  color: var(--charcoal);
}

.header--overlay.header--scrolled .nav-desktop a.active::after,
.header--overlay.is-menu-open .nav-desktop a.active::after {
  background: var(--charcoal);
}

.header--overlay.header--scrolled .header__book,
.header--overlay.is-menu-open .header__book {
  background: var(--charcoal);
  color: var(--white);
}

.header--overlay.header--scrolled .header__book:hover,
.header--overlay.is-menu-open .header__book:hover {
  background: var(--accent);
  color: var(--white);
}

.header--overlay .nav-mobile.open {
  background: var(--white);
}

/* Keep mobile menu above the absolute top bar */
.header.is-menu-open,
.header--overlay.is-menu-open {
  z-index: 70;
}

body.menu-open .top-bar {
  visibility: hidden;
  pointer-events: none;
}

body:has(.header--overlay) .hero__content {
  padding-top: calc(var(--top-bar-height, 2rem) + 10rem);
}

body:has(.header--overlay) .page-hero__content {
  padding-top: calc(var(--top-bar-height, 2.75rem) + 5.5rem);
}

.nav-mobile {
  display: none;
  border-top: 1px solid var(--border);
  padding: 1rem var(--page-gutter);
}

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

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-mobile a {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.nav-mobile li:last-child a {
  border-bottom: none;
}

.nav-mobile__book {
  width: 100%;
  text-align: center;
  margin-top: 0.5rem;
  padding: 0.875rem 1.5rem !important;
  border-bottom: none !important;
}

@media (min-width: 640px) {
  .header__book {
    display: inline-block;
  }
}

@media (min-width: 1024px) {
  .header__inner {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    padding-top: 1.35rem;
    padding-bottom: 1.35rem;
  }

  .nav-desktop {
    display: flex;
  }

  .logo {
    font-size: 1.35rem;
    letter-spacing: 0.2em;
  }

  .logo__sub {
    font-size: 0.625rem;
    letter-spacing: 0.32em;
  }

  .menu-toggle {
    display: none;
  }
}

/* ── Hero ── */
.hero {
  position: relative;
  background: var(--surface);
}

.hero__image-wrap {
  position: relative;
  height: 85vh;
  min-height: 700px;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgb(0 0 0 / 50%), rgba(0, 0, 0, 0.1), transparent);
}

.hero__content {
  position: relative;
  display: flex;
  padding-top: 5rem;
  height: 100%;
}

.hero__text {
  max-width: 50rem;
  color: var(--white);
}

.hero__text .label {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.15;
}

.hero__desc {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero__booking-wrap {
  position: relative;
  z-index: 10;
  margin-top: -3.25rem;
  padding: 0 var(--page-gutter);
  background: transparent;
}

/* ── Booking Widget ── */
.booking {
  max-width: 68rem;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 3px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
  overflow: hidden;
}

.booking__form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.booking__fields {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.booking__field {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.125rem 1.5rem;
  border-bottom: 1px solid #ececec;
  background: transparent;
  cursor: pointer;
}

.booking__field:focus-within {
  outline: none;
}

.booking__icon {
  display: flex;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: #1a1a1a;
}

.booking__icon svg {
  width: 100%;
  height: 100%;
}

.booking__text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
  flex: 1;
}

.booking__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
  color: #1a1a1a;
}

.booking__control {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 1.25rem;
}

.booking__display,
.booking__guests-display {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.3;
  color: #888888;
  pointer-events: none;
}

.booking__display.is-filled {
  color: #888888;
  font-weight: 400;
}

.booking__field input[type="date"] {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
  background: transparent;
  font-size: 1rem;
  -webkit-appearance: none;
  appearance: none;
  color: transparent;
}

.booking__field select {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
  background-color: #ffffff;
  color: #1a1a1a;
  font-size: 1rem;
  -webkit-appearance: none;
  appearance: none;
}

.booking__field select option {
  background-color: #ffffff;
  color: #1a1a1a;
}

.booking__field select option:checked,
.booking__field select option:hover {
  background-color: var(--accent);
  color: #ffffff;
}

.booking__submit {
  width: calc(100% - 1.25rem);
  margin: 0.625rem auto 0.75rem;
  padding: 1rem 1.5rem;
  letter-spacing: 0.12em;
  border-radius: 3px;
}

@media (min-width: 900px) {
  .booking__form {
    flex-direction: row;
    align-items: stretch;
    padding: 10px 10px 10px 8px;
    gap: 0;
  }

  .booking__fields {
    flex-direction: row;
    align-items: stretch;
  }

  .booking__field {
    flex: 1 1 0;
    min-width: 0;
    padding: 14px 28px;
    border-bottom: none;
  }

  .booking__icon {
    width: 22px;
    height: 22px;
  }

  .booking__label {
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .booking__display,
  .booking__guests-display {
    font-size: 15px;
  }

  .booking__submit {
    width: auto;
    min-width: 220px;
    margin: 0;
    padding: 0 28px;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
  }
}

/* ── Suites ── */
.suites {
  padding: 5rem 0 7rem;
  background: var(--surface);
}

.suites__header {
  text-align: center;
  margin-bottom: 3rem;
}

.suites__header .label {
  margin-bottom: 0.75rem;
}

.suites__intro {
  max-width: 42rem;
  margin: 1.5rem auto 0;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--muted);
}

.suites__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem 1.5rem;
}

.suite-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-width: 0;
  background: var(--white);
  border-radius: 9px;
  overflow: hidden;
}

.suite-card__image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  flex-shrink: 0;
}

.suite-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.suite-card:hover .suite-card__image {
  transform: scale(1.05);
}

.suite-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 2rem;
}

.suite-card__name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
}

.suite-card__desc {
  margin-top: 0.625rem;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--muted);
}

.suite-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.25rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.suite-card__meta span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.suite-card__meta svg {
  width: 0.875rem;
  height: 0.875rem;
}

.suite-card__price {
  margin-top: 0.75rem;
  font-size: 0.875rem;
}

.suite-card__price strong {
  font-weight: 600;
}

.suite-card__price span {
  color: var(--muted);
}

@media (min-width: 640px) {
  .suites__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .suites__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
  }
}

/* ── Experience ── */
.experience {
  padding: 0;
  background: var(--white);
}

.experience__grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 0;
}

.experience__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem var(--page-gutter);
  background: var(--white);
}

.experience__text .label {
  margin-bottom: 0.75rem;
}

.experience__text p {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 32rem;
}

.experience__text .btn {
  margin-top: 2rem;
  align-self: flex-start;
}

.experience__image-wrap {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  aspect-ratio: 4 / 3;
}

.experience__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 768px) {
  .experience__grid {
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
  }

  .experience__text {
    padding: 5rem clamp(var(--page-gutter), 6vw, 5rem)
      5rem max(var(--page-gutter), calc((100vw - var(--max-width)) / 2 + var(--page-gutter)));
  }

  .experience__image-wrap {
    aspect-ratio: auto;
    min-height: 0;
    height: auto;
    align-self: stretch;
  }

  .experience__image {
    position: absolute;
    inset: 0;
  }

  .experience__text p {
    font-size: 1rem;
  }
}

/* ── Amenities ── */
.amenities {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, transparent 28%),
    var(--surface-warm);
  padding: 4.5rem 0 5rem;
  overflow: hidden;
}

.amenities::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255, 255, 255, 0.45), transparent 70%);
  pointer-events: none;
}

.amenities__inner {
  position: relative;
  z-index: 1;
}

.amenities__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.amenity {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.25rem 1.25rem;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.amenity__icon {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1.35rem;
  color: var(--charcoal);
  border: 1px solid rgba(168, 144, 96, 0.4);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.35);
  transition: color 0.35s ease, border-color 0.35s ease, background-color 0.35s ease;
}

.amenity__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.amenity__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.01em;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.amenity__desc {
  max-width: 17rem;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--muted);
}

.amenity:hover .amenity__icon {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.55);
}

@media (min-width: 768px) {
  .amenities {
    padding: 5.5rem 0 6rem;
  }

  .amenities__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }

  .amenity {
    padding: 0.5rem 2.5rem;
  }

  .amenity:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 12%;
    right: 0;
    width: 1px;
    height: 76%;
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(26, 26, 26, 0.16) 18%,
      rgba(26, 26, 26, 0.16) 82%,
      transparent 100%
    );
  }

  .amenity__title {
    font-size: 1.375rem;
  }

  .amenity__desc {
    font-size: 0.875rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .amenity {
    transition: none;
  }

  .amenity__icon {
    transition: none;
  }
}

/* ── Testimonials ── */
.testimonials {
  padding: 5rem 0 7rem;
  background: var(--white);
}

.testimonials__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  justify-content: center;
}

.testimonials__content {
  text-align: left;
}

.testimonials__content .label {
  margin-bottom: 0.75rem;
}

.testimonials__quote {
  margin-top: 2rem;
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  font-style: italic;
  line-height: 1.7;
}

.testimonials__author {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.testimonials__location {
  font-size: 0.75rem;
  color: var(--muted);
}

.testimonials__nav {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}

.testimonials__nav button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  transition: background 0.2s;
}

.testimonials__nav button:hover {
  background: rgba(255, 255, 255, 0.8);
}

.testimonials__nav svg {
  width: 1rem;
  height: 1rem;
}

.ratings-badge {
  position: relative;
  width: 100%;
  margin-inline: auto;
  padding: 2.5rem 2rem 0;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, transparent 40%),
    var(--surface);
  border: 1px solid rgba(168, 144, 96, 0.28);
  border-radius: 3px;
}

.ratings-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 3.5rem;
  height: 2px;
  background: var(--accent);
  transform: translateX(-50%);
}

.ratings-badge__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 2rem;
}

.ratings-badge__score {
  font-family: var(--font-serif);
  font-size: clamp(3.75rem, 8vw, 4.5rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

.ratings-badge__stars {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 1rem;
  color: var(--accent);
}

.ratings-badge__stars svg {
  width: 1.125rem;
  height: 1.125rem;
}

.ratings-badge__label {
  margin-top: 1rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--charcoal);
}

.ratings-badge__count {
  margin-top: 0.4rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--muted);
}

.ratings-badge__source {
  margin: 0;
  padding: 0.9rem 1.5rem;
  border-top: 1px solid rgba(168, 144, 96, 0.22);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: minmax(18rem, 34rem) 20rem;
    gap: 4rem;
    justify-content: center;
  }

  .ratings-badge {
    margin-inline: 0;
    max-width: none;
  }
}

/* ── Footer ── */
.footer {
  background: var(--charcoal-dark);
  color: var(--white);
}

.footer__main {
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.footer__grid {
  display: grid;
  gap: 3rem;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.footer__logo-sub {
  margin-top: 0.125rem;
  font-size: 0.625rem;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.5);
}

.footer__about {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.footer__contact {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__contact li a {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer__contact li a:hover {
  color: var(--white);
}

.footer__contact svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
  opacity: 0.8;
}

.footer__cta-text {
  margin-bottom: 1.75rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: border-color 0.2s;
}

.footer__social a:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.footer__social svg {
  width: 1rem;
  height: 1rem;
}

.footer__heading {
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.footer__links li {
  margin-bottom: 0.75rem;
}

.footer__links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.75rem 0;
}

.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

.footer__bottom-inner p {
  margin: 0;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.5rem;
}

.footer__legal a {
  transition: color 0.2s;
}

.footer__legal a:hover {
  color: rgba(255, 255, 255, 0.75);
}

@media (min-width: 640px) {
  .footer__bottom {
    padding: 1.5rem 0;
  }

  .footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer__legal {
    justify-content: flex-end;
    flex-wrap: nowrap;
  }
}

@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1.6fr 0.9fr 0.9fr 1fr;
    gap: 3rem 2.5rem;
  }
}

/* ── Icon sizing helper ── */
.icon-sm {
  width: 0.875rem;
  height: 0.875rem;
}

.icon-xs {
  width: 0.75rem;
  height: 0.75rem;
}

/* ── Mobile (< 768px) ── */
@media (max-width: 767px) {
  .container {
    padding: 0 var(--page-gutter);
  }

  .label {
    letter-spacing: 0.2em;
    font-size: 0.6875rem;
  }

  .experience__text .label {
    margin-top: 0;
  }

  /* Top bar */
  .top-bar {
    padding: 0.625rem 0;
  }

  .top-bar__inner {
    gap: 0.75rem;
    font-size: 0.6875rem;
  }

  .top-bar__location {
    min-width: 0;
    flex: 1;
  }

  .top-bar__location-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .top-bar__right {
    gap: 0.75rem;
    flex-shrink: 0;
  }

  .top-bar__link {
    display: none;
  }

  /* Header */
  .header__inner {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .logo {
    font-size: 1rem;
    letter-spacing: 0.14em;
  }

  .logo__sub {
    letter-spacing: 0.22em;
  }

  .header__book {
    display: none !important;
  }

  .nav-mobile {
    padding: 0.5rem var(--page-gutter) 1.25rem;
  }

  /* Hero */
  .hero__image-wrap {
    height: 75vh;
    min-height: 620px;
    max-height: 750px;
  }

  .hero__overlay {
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.35) 45%,
      rgba(0, 0, 0, 0.15) 100%
    );
  }

  .hero__content {
    align-items: center;
    padding-bottom: 5rem;
  }

  body:has(.header--overlay) .hero__content {
    padding-top: calc(var(--top-bar-height, 2.75rem) + 7rem);
  }

  body:has(.header--overlay) .page-hero__content {
    padding-top: calc(var(--top-bar-height, 2.75rem) + 4.5rem);
  }

  .hero__text {
    max-width: none;
  }

  .hero__title {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  .hero__desc {
    margin-top: 1rem;
    font-size: 0.8125rem;
  }

  .hero__buttons {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .hero__buttons .btn {
    width: 100%;
    text-align: center;
    padding: 0.9375rem 1.5rem;
  }

  .hero__booking-wrap {
    margin-top: -2.5rem;
    padding: 0 var(--page-gutter);
  }

  /* Booking */
  .booking {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  }

  .booking__field {
    padding: 1.125rem 1.25rem;
  }

  .booking__field:last-child {
    border-bottom: none;
  }

  .booking__submit {
    width: calc(100% - 1.25rem);
    margin: 0.5rem auto 0.75rem;
    padding: 1rem 1.5rem;
    font-size: 0.6875rem;
  }

  /* Houses */
  .suites {
    padding: 3.5rem 0 4rem;
  }

  .suites__header {
    margin-bottom: 2rem;
    text-align: left;
  }

  .suites__intro {
    margin-top: 1rem;
    font-size: 0.875rem;
    text-align: left;
  }

  .suites__grid {
    gap: 2rem;
  }

  /* Experience */
  .experience__image-wrap {
    order: -1;
    aspect-ratio: 4 / 3;
    min-height: 280px;
  }

  .experience__text {
    padding: 3rem var(--page-gutter) 3.5rem;
  }

  .experience__text .btn {
    width: 100%;
    text-align: center;
    align-self: stretch;
  }

  /* Amenities */
  .amenities {
    padding: 3rem 0 3.5rem;
  }

  .amenity {
    padding: 2rem 0;
  }

  .amenity:not(:last-child) {
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
  }

  .amenity__title {
    font-size: 1.125rem;
  }

  /* Testimonials */
  .testimonials {
    padding: 3.5rem 0 4rem;
  }

  .testimonials__grid {
    gap: 2rem;
  }

  .testimonials__quote {
    margin-top: 1.25rem;
    font-size: 1.0625rem;
  }

  .ratings-badge {
    padding: 2rem 1.5rem 0;
  }

  .ratings-badge__main {
    padding-bottom: 1.5rem;
  }

  .ratings-badge__source {
    padding: 0.85rem 1.25rem;
  }

  /* Footer */
  .footer__main {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .footer__grid {
    gap: 2.5rem;
  }

  .footer__cta-text {
    margin-bottom: 1.25rem;
  }
}

/* ── Small phones (< 400px) ── */
@media (max-width: 399px) {
  .top-bar__location-text {
    max-width: 9rem;
  }

  .top-bar__social {
    gap: 0.5rem;
  }

  .logo {
    font-size: 0.75rem;
  }
}

/* Body lock when mobile menu open */
body.menu-open {
  overflow: hidden;
}

/* ── Inner page hero ── */
.page-hero {
  position: relative;
  height: clamp(16rem, 38vh, 22rem);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--charcoal-dark);
}

.page-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  animation: page-hero-drift 18s ease-in-out infinite alternate;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.48);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  color: var(--white);
  text-align: center;
}

.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 2.875rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.page-hero__rule {
  display: block;
  width: 2.5rem;
  height: 1px;
  margin: 1rem auto 0;
  background: rgba(255, 255, 255, 0.45);
}

@keyframes page-hero-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.1) translate3d(0, -1.5%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero__image {
    animation: none;
    transform: scale(1.04);
  }
}

/* ── About page ── */
.about-story {
  padding: 5rem 0;
  background: var(--white);
}

.about-story__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.about-story__text .label {
  margin-bottom: 0.75rem;
}

.about-story__text p {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--muted);
}

.about-story__text p + p {
  margin-top: 1rem;
}

.about-story__image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.about-story__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.about-pillars {
  padding: 4rem 0 5rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-pillars__header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3rem;
}

.about-pillars__header .label {
  margin-bottom: 0.75rem;
}

.about-pillars__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.about-pillar {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.about-pillar:last-child {
  border-bottom: none;
}

.about-pillar__title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  margin-bottom: 0.625rem;
}

.about-pillar__desc {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 18rem;
  margin: 0 auto;
}

.about-cta {
  padding: 5rem 0;
  background: var(--white);
  text-align: center;
}

.about-cta .label {
  margin-bottom: 0.75rem;
}

.about-cta p {
  max-width: 34rem;
  margin: 1.25rem auto 2rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--muted);
}

@media (min-width: 768px) {
  .about-story__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
  }

  .about-pillars__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-pillar {
    padding: 0 1.5rem;
    border-bottom: none;
    border-right: 1px solid var(--border);
  }

  .about-pillar:last-child {
    border-right: none;
  }
}

/* ── Contact page ── */
.contact-section {
  padding: 5rem 0 6rem;
  background: var(--white);
}

.contact-section__grid {
  display: grid;
  gap: 3.5rem;
}

.contact-info .label {
  margin-bottom: 0.75rem;
}

.contact-info__intro {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--muted);
}

.contact-info__list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.contact-info__item svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--charcoal);
}

.contact-info__item strong {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.contact-info__item a,
.contact-info__item span {
  font-size: 0.9375rem;
  color: var(--charcoal);
  line-height: 1.5;
}

.contact-info__item a:hover {
  opacity: 0.7;
}

.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2rem 1.5rem;
}

.contact-form-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact-form-card__note {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form__row {
  display: grid;
  gap: 1.25rem;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form__field label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--white);
  padding: 0.875rem 1rem;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
}

.contact-form__field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 0.75rem;
  cursor: pointer;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  border-color: var(--charcoal);
}

.contact-form__field textarea {
  min-height: 8rem;
  resize: vertical;
}

.contact-form__submit {
  width: 100%;
  margin-top: 0.5rem;
}

.contact-form__success {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--charcoal);
  line-height: 1.6;
}

.contact-form__success.is-visible {
  display: block;
}

.contact-map {
  padding: 0 0 5rem;
  background: var(--white);
}

.contact-map__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.contact-map__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (min-width: 768px) {
  .contact-section__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: start;
  }

  .contact-form-card {
    padding: 2.5rem;
  }

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

  .contact-form__submit {
    width: auto;
    align-self: flex-start;
  }
}

@media (max-width: 767px) {
  .page-hero {
    height: clamp(14rem, 34vh, 18rem);
  }

  .page-hero__content {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .about-story,
  .about-cta,
  .contact-section,
  .gallery-section {
    padding: 3.5rem 0 4rem;
  }

  .about-story__image-wrap {
    aspect-ratio: 4 / 3;
    order: -1;
  }

  .about-pillars {
    padding: 3rem 0;
  }

  .contact-form-card {
    padding: 1.5rem 1.25rem;
  }

  .contact-map {
    padding-bottom: 3rem;
  }

  .contact-map__frame {
    aspect-ratio: 4 / 3;
  }

  .gallery-filters {
    gap: 0.5rem;
    margin-bottom: 2rem;
  }

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

  .lightbox__nav {
    width: 2.5rem;
    height: 2.5rem;
  }

  .lightbox__nav--prev {
    left: 0.75rem;
  }

  .lightbox__nav--next {
    right: 0.75rem;
  }
}

/* ── Gallery page ── */
.gallery-section {
  padding: 4rem 0 6rem;
  background: var(--white);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
  margin-bottom: 2.5rem;
}

.gallery-filters__btn {
  padding: 0.625rem 1.125rem;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.gallery-filters__btn:hover {
  border-color: var(--charcoal);
  color: var(--charcoal);
}

.gallery-filters__btn.is-active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
  border: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gallery-item__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.5rem 1rem 1rem;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.7), transparent);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: left;
  opacity: 0;
  transform: translateY(0.4rem);
  transition: opacity 0.25s, transform 0.25s;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.05);
}

.gallery-item:hover .gallery-item__caption,
.gallery-item:focus-visible .gallery-item__caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item.is-hidden {
  display: none;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(10, 10, 10, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox__figure {
  max-width: min(1100px, 92vw);
  max-height: 85vh;
  margin: 0;
  text-align: center;
}

.lightbox__image {
  max-width: 100%;
  max-height: 75vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.lightbox__caption {
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.lightbox__close:hover {
  opacity: 1;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  transition: background 0.2s, border-color 0.2s;
}

.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

.lightbox__nav svg {
  width: 1.25rem;
  height: 1.25rem;
}

.lightbox__nav--prev {
  left: 1.25rem;
}

.lightbox__nav--next {
  right: 1.25rem;
}

body.lightbox-open {
  overflow: hidden;
}

/* ── Legal pages ── */
.legal-page {
  padding: 4rem 0 6rem;
  background: var(--white);
}

.legal-page__inner {
  max-width: 46rem;
}

.legal-page__updated {
  margin-bottom: 2rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.legal-content h2 {
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--charcoal);
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--muted);
}

.legal-content p + p {
  margin-top: 1rem;
}

.legal-content ul {
  margin: 0.75rem 0 1rem;
  padding-left: 1.25rem;
  list-style: disc;
}

.legal-content li + li {
  margin-top: 0.5rem;
}

.legal-content a {
  color: var(--charcoal);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.legal-content a:hover {
  color: var(--accent);
}

@media (max-width: 767px) {
  .legal-page {
    padding: 3rem 0 4rem;
  }
}
