:root {
  --canvas: #f3f1eb;
  --surface: #fbfaf6;
  --surface-soft: #e9e6dd;
  --ink: #17201c;
  --muted: #6f746e;
  --pine: #18352d;
  --pine-light: #234a3d;
  --cedar: #a65d43;
  --cedar-dark: #874634;
  --line: #d9d7cf;
  --white: #fbfaf6;
  --shadow: 0 18px 48px rgb(23 32 28 / 0.10);
  --shadow-soft: 0 8px 24px rgb(23 32 28 / 0.08);
  --radius: 14px;
  --sans: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, serif;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--canvas);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
select {
  font: inherit;
}

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

button {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--cedar);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 30;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--pine);
  border-radius: 999px;
  transform: translateY(-150%);
}

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

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  min-height: 76px;
  background: rgb(243 241 235 / 0.92);
  border-bottom: 1px solid rgb(217 215 207 / 0.78);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand__mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: var(--pine);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.1;
}

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

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
}

.site-nav a {
  transition: color 180ms ease;
}

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

.site-nav__phone {
  color: var(--ink);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  min-height: 44px;
  padding: 8px 14px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button:active {
  transform: translateY(0) scale(0.98);
}

.button--small {
  min-height: 42px;
  padding: 9px 16px;
  font-size: 12px;
}

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

.button--cedar:hover {
  background: var(--cedar-dark);
}

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

.button--light:hover {
  background: #ffffff;
}

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

.button--dark:hover {
  background: var(--pine-light);
}

.button--text {
  min-height: 48px;
  padding-inline: 4px;
  color: var(--ink);
  border-color: transparent;
}

.button--text:hover {
  color: var(--cedar-dark);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cedar-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #d3a18f;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 560px;
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.98;
}

h2 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-size: 26px;
  line-height: 1.08;
}

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

.hero {
  overflow: hidden;
  padding: 64px 0 52px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(36px, 7vw, 110px);
  min-height: min(720px, calc(100dvh - 76px));
}

.hero__lede {
  max-width: 480px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 44px;
}

.hero__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  color: var(--muted);
  font-size: 12px;
}

.hero__notes span::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 9px 2px 0;
  background: var(--cedar);
  border-radius: 50%;
  content: "";
}

.hero__media {
  position: relative;
  margin: 0;
}

.hero__media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgb(255 255 255 / 0.24);
  border-radius: var(--radius);
  content: "";
  pointer-events: none;
}

.hero__media img {
  aspect-ratio: 1.1 / 1;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero__media figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 14px 16px;
  color: var(--white);
  background: rgb(24 53 45 / 0.82);
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 10px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.25;
}

.booking-section {
  padding: 0 0 88px;
}

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

.booking-panel__intro h2 {
  max-width: 260px;
  margin-bottom: 10px;
  font-size: 34px;
}

.booking-panel__intro p:last-child {
  max-width: 270px;
  margin-bottom: 0;
  color: #b8c7bf;
  font-size: 13px;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
}

.field-group {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.field-group label {
  color: #b8c7bf;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field-group input,
.field-group select {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  color: var(--white);
  background: rgb(255 255 255 / 0.06);
  border: 1px solid rgb(255 255 255 / 0.22);
  border-radius: 9px;
}

.date-field__control {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 52px;
}

.date-field__control input {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  min-height: 52px;
  padding-right: 68px;
  cursor: pointer;
}

.date-picker-trigger {
  position: absolute;
  inset: 1px 1px 1px auto;
  display: grid;
  place-items: center;
  z-index: 2;
  width: 58px;
  min-height: 50px;
  padding: 0;
  color: var(--white);
  background: rgb(255 255 255 / 0.08);
  border: 0;
  border-left: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  touch-action: manipulation;
  transition: background 180ms ease, color 180ms ease;
}

.date-picker-trigger:hover {
  color: var(--cedar);
  background: var(--white);
}

.date-picker-trigger:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.date-picker-trigger svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.field-group input::-webkit-calendar-picker-indicator {
  opacity: 0;
}

.field-group select option {
  color: var(--ink);
}

.field-group input[aria-invalid="true"],
.field-group select[aria-invalid="true"] {
  border-color: #e7a18a;
}

.booking-form__submit {
  display: grid;
  gap: 8px;
  grid-column: 1 / -1;
  min-width: 152px;
}

.booking-form__submit .button {
  width: 100%;
}

.form-status {
  min-height: 18px;
  margin: 0;
  color: #b8c7bf;
  font-size: 11px;
  line-height: 1.35;
}

.form-status.is-error {
  color: #f1b39f;
}

.booking-panel__price {
  display: grid;
  align-content: center;
  min-width: 132px;
  padding-left: 26px;
  border-left: 1px solid rgb(255 255 255 / 0.2);
}

.booking-panel__price span,
.booking-panel__price small {
  color: #b8c7bf;
  font-size: 11px;
}

.booking-panel__price strong {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
}

.booking-panel__price small {
  margin-top: 7px;
}

.booking-panel__price small + small {
  margin-top: 2px;
  color: var(--white);
  font-weight: 700;
}

.availability-dialog {
  width: min(960px, calc(100% - 32px));
  max-width: 960px;
  padding: 0;
  color: var(--ink);
  background: var(--surface);
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 28px 90px rgb(23 32 28 / 0.28);
}

.availability-dialog::backdrop {
  background: rgb(23 32 28 / 0.62);
  backdrop-filter: blur(5px);
}

.availability-dialog__header,
.availability-dialog__footer {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 30px;
}

.availability-dialog__header {
  border-bottom: 1px solid var(--line);
}

.availability-dialog__header h2 {
  margin-bottom: 8px;
  font-size: 32px;
}

.availability-dialog__header p:last-child,
.availability-dialog__footer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.dialog-close {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
}

.booking-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.booking-flow__step {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 70px;
  padding: 14px 18px;
  color: var(--muted);
  background: var(--surface-soft);
}

.booking-flow__step > span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
}

.booking-flow__step div {
  display: grid;
  gap: 3px;
}

.booking-flow__step strong {
  color: var(--ink);
  font-size: 12px;
}

.booking-flow__step small {
  color: var(--muted);
  font-size: 10px;
}

.booking-flow__step.is-active {
  background: var(--surface);
}

.booking-flow__step.is-active > span {
  color: var(--white);
  background: var(--cedar);
  border-color: var(--cedar);
}

.availability-dialog__frame {
  position: relative;
  min-height: 520px;
  background: #eeece5;
}

.availability-dialog__frame[aria-busy="true"] {
  cursor: progress;
}

.availability-dialog__frame iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
  transition: opacity 220ms ease;
}

.bed24-loading {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 12px;
  color: var(--muted);
  background: var(--surface);
  font-size: 13px;
  text-align: center;
}

.bed24-loading[hidden] {
  display: none;
}

.loading-dot {
  width: 10px;
  height: 10px;
  margin: 0 auto;
  background: var(--cedar);
  border-radius: 50%;
  animation: pulse 1.2s ease-in-out infinite;
}

.availability-dialog__footer {
  align-items: center;
  border-top: 1px solid var(--line);
}

.availability-dialog__footer p {
  max-width: 620px;
}

.availability-dialog__footer a,
.review-source {
  color: var(--cedar);
  font-size: 12px;
  font-weight: 700;
}

@keyframes pulse {
  0%,
  100% { opacity: 0.45; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1); }
}

.pricing-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.pricing-note--seasonal {
  color: var(--cedar-dark);
  font-weight: 700;
}

.trust-strip {
  padding: 0 0 96px;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip__grid div {
  display: grid;
  gap: 2px;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
}

.trust-strip__grid div:first-child {
  padding-left: 0;
}

.trust-strip__grid div:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-strip strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.trust-strip span {
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding: 112px 0;
}

.section--about,
.section--shuswap,
.section--policies {
  border-top: 1px solid var(--line);
}

.split-layout,
.destination-layout,
.reviews-layout,
.policies-layout,
.contact-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(42px, 8vw, 120px);
}

.split-layout__media,
.destination-layout__media {
  order: 1;
}

.split-layout__copy,
.destination-layout__copy {
  order: 2;
}

.split-layout__copy p,
.destination-layout__copy > p {
  max-width: 520px;
  font-size: 17px;
}

.split-layout__copy p + p {
  margin-top: -2px;
}

.image-frame {
  position: relative;
}

.image-frame img {
  aspect-ratio: 1 / 1.05;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.image-frame__label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 12px 14px;
  color: var(--white);
  background: rgb(24 53 45 / 0.82);
  border-radius: 9px;
  font-size: 12px;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  color: var(--cedar-dark);
  font-size: 13px;
  font-weight: 800;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 42px;
}

.section-header > div:first-child {
  max-width: 670px;
}

.section-header h2 {
  margin-bottom: 12px;
}

.section-header p:last-child {
  max-width: 560px;
  margin-bottom: 0;
}

.section-header--compact {
  margin-bottom: 42px;
}

.room-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.filter-button {
  min-height: 44px;
  padding: 8px 14px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--white);
  background: var(--pine);
  border-color: var(--pine);
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.room-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 5px 18px rgb(23 32 28 / 0.03);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

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

.room-card--featured {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1.25fr 0.75fr;
}

.room-card__media {
  position: relative;
  min-height: 260px;
  background: var(--surface-soft);
}

.room-card--featured .room-card__media {
  min-height: 440px;
}

.room-card__image {
  height: 100%;
  aspect-ratio: 1.3 / 1;
  object-fit: cover;
}

.room-card__controls {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}

.carousel-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: rgb(24 53 45 / 0.82);
  border: 1px solid rgb(255 255 255 / 0.3);
  border-radius: 50%;
  font-size: 17px;
}

.carousel-button:hover {
  background: var(--pine);
}

.room-card__count {
  padding: 7px 10px;
  background: rgb(24 53 45 / 0.82);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.room-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 27px;
}

.room-card__heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  width: 100%;
  gap: 18px;
}

.room-card__category {
  margin-bottom: 6px;
  color: var(--cedar-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.room-card h3 {
  margin-bottom: 10px;
  font-size: 29px;
}

.room-card__price {
  display: grid;
  justify-items: end;
  min-width: 92px;
  text-align: right;
}

.room-card__price strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.room-card__price span,
.room-card__price small {
  color: var(--muted);
  font-size: 11px;
}

.room-card__price small {
  color: var(--cedar-dark);
  font-weight: 700;
}

.room-card__details {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.room-card__body > p:not(.room-card__details) {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.amenity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.amenity-list li {
  padding: 6px 9px;
  color: var(--muted);
  background: var(--canvas);
  border-radius: 6px;
  font-size: 11px;
}

.room-card__book {
  margin-top: auto;
}

.pricing-note--rooms {
  text-align: left;
}

.amenity-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 16px;
}

.amenity-card {
  position: relative;
  min-height: 250px;
  padding: 28px;
  overflow: hidden;
  border-radius: var(--radius);
}

.amenity-card--feature {
  grid-row: span 2;
  min-height: 516px;
  color: var(--white);
  background: var(--pine);
}

.amenity-card--soft {
  background: var(--surface-soft);
}

.amenity-card--dark {
  color: var(--white);
  background: var(--pine-light);
}

.amenity-card__kicker {
  display: block;
  margin-bottom: 110px;
  color: var(--cedar);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.amenity-card h3 {
  max-width: 260px;
  margin-bottom: 12px;
  font-size: 34px;
}

.amenity-card p {
  max-width: 300px;
  margin-bottom: 0;
  color: inherit;
  opacity: 0.78;
  font-size: 14px;
}

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

.amenity-card--image {
  display: flex;
  align-items: end;
  min-height: 250px;
  padding: 0;
  color: var(--white);
  background: var(--pine);
}

.amenity-card--image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 18%, rgb(24 53 45 / 0.9) 100%);
  content: "";
}

.amenity-card--image img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.amenity-card--image div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
  padding: 22px;
}

.amenity-card--image span {
  color: #d7b09f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.amenity-card--image strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.amenity-card--wide {
  grid-column: 2 / -1;
}

.destination-layout__copy {
  order: 1;
}

.destination-layout__media {
  order: 2;
}

.image-frame--tall img {
  aspect-ratio: 0.92 / 1;
}

.distance-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 24px;
  max-width: 520px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.distance-list div {
  display: grid;
  gap: 2px;
}

.distance-list strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.distance-list span {
  color: var(--muted);
  font-size: 12px;
}

.section--reviews {
  color: var(--white);
  background: var(--pine);
}

.reviews-layout {
  grid-template-columns: 0.9fr 1.1fr;
}

.section--reviews h2 {
  max-width: 520px;
  margin-bottom: 36px;
}

.review-score {
  display: flex;
  align-items: end;
  gap: 14px;
}

.review-score strong {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 500;
  line-height: 0.9;
}

.review-score span {
  color: #b8c7bf;
  font-size: 12px;
  line-height: 1.35;
}

.review-score-note {
  margin-top: 16px;
  color: #b8c7bf;
  font-size: 12px;
}

.review-gallery {
  min-width: 0;
  padding: 0 0 0 64px;
  border-left: 1px solid rgb(255 255 255 / 0.2);
}

.review-gallery__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  color: #b8c7bf;
  font-size: 12px;
}

.review-gallery__controls {
  display: flex;
  gap: 8px;
}

.carousel-button--light {
  color: var(--white);
  background: transparent;
  border-color: rgb(255 255 255 / 0.32);
}

.carousel-button--light:hover {
  background: rgb(255 255 255 / 0.1);
}

.review-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 14px;
  scrollbar-width: thin;
  scrollbar-color: rgb(255 255 255 / 0.32) transparent;
  scroll-snap-type: x mandatory;
}

.review-card {
  display: grid;
  min-width: min(100%, 460px);
  min-height: 290px;
  padding: 28px;
  scroll-snap-align: start;
  color: var(--ink);
  background: var(--surface);
  border-radius: var(--radius);
}

.review-card__rating {
  color: var(--cedar);
  font-size: 13px;
  letter-spacing: 0.16em;
}

.review-card blockquote {
  align-self: center;
  margin: 26px 0;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
}

.review-card footer {
  display: grid;
  gap: 5px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.review-card footer strong {
  font-size: 13px;
}

.review-card footer span {
  color: var(--muted);
  font-size: 11px;
}

.review-source {
  display: inline-flex;
  gap: 6px;
  margin-top: 16px;
}

.review-quote {
  padding: 42px 0 42px 64px;
  border-left: 1px solid rgb(255 255 255 / 0.2);
}

.review-quote blockquote {
  max-width: 540px;
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
}

.review-quote cite {
  color: #b8c7bf;
  font-size: 12px;
  font-style: normal;
}

.policies-layout {
  align-items: start;
}

.policy-list {
  border-top: 1px solid var(--line);
}

.policy-list details {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.policy-list summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 23px;
}

.policy-list summary::-webkit-details-marker {
  display: none;
}

.policy-list summary::after {
  float: right;
  color: var(--cedar-dark);
  content: "+";
  font-family: var(--sans);
  font-size: 20px;
}

.policy-list details[open] summary::after {
  content: "−";
}

.policy-list details p {
  max-width: 600px;
  margin: 12px 32px 0 0;
  font-size: 14px;
}

.contact-section {
  padding: 84px 0;
  color: var(--white);
  background: var(--cedar-dark);
}

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

.contact-section h2 {
  margin-bottom: 14px;
}

.contact-section p:last-child {
  margin-bottom: 0;
  color: #f1d3c8;
  font-size: 15px;
}

.contact-section__actions {
  display: grid;
  justify-items: start;
  gap: 12px;
  min-width: 220px;
}

.contact-link {
  color: #f1d3c8;
  font-size: 13px;
}

.contact-link:hover {
  color: var(--white);
}

.site-footer {
  padding: 64px 0 24px;
  color: var(--white);
  background: var(--ink);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 42px;
  padding-bottom: 54px;
}

.brand--footer strong {
  font-size: 20px;
}

.brand--footer small {
  color: #aeb9b2;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 10px;
  color: #aeb9b2;
  font-size: 13px;
}

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

.site-footer__meta {
  color: #aeb9b2;
  font-size: 13px;
}

.site-footer__meta p {
  color: inherit;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  color: #8b9990;
  border-top: 1px solid rgb(255 255 255 / 0.14);
  font-size: 11px;
}

.mobile-booking-bar {
  display: none;
}

@media (max-width: 1040px) {
  .site-nav {
    gap: 16px;
  }

  .booking-panel {
    grid-template-columns: 1fr;
  }

  .booking-panel__intro h2,
  .booking-panel__intro p:last-child {
    max-width: 500px;
  }

  .booking-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-form__submit {
    grid-column: 1 / -1;
  }

  .booking-panel__price {
    grid-template-columns: auto auto auto;
    align-items: baseline;
    gap: 8px;
    min-width: 0;
    padding: 20px 0 0;
    border-top: 1px solid rgb(255 255 255 / 0.2);
    border-left: 0;
  }

  .booking-panel__price small {
    margin-top: 0;
  }
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 78px;
  }

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

  .site-header,
  .site-header__inner {
    min-height: 68px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    padding: 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open {
    display: grid;
  }

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

  .site-nav__phone {
    padding-top: 14px !important;
    border-top: 1px solid var(--line);
  }

  .hero {
    padding: 42px 0 34px;
  }

  .hero__grid,
  .split-layout,
  .destination-layout,
  .reviews-layout,
  .policies-layout,
  .contact-section__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero__grid {
    min-height: 0;
  }

  h1 {
    max-width: 470px;
    font-size: clamp(48px, 15vw, 70px);
  }

  h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .hero__media {
    order: -1;
  }

  .hero__media img {
    aspect-ratio: 1.18 / 1;
  }

  .hero__media figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    font-size: 16px;
  }

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

  .booking-panel {
    padding: 26px 22px;
  }

  .booking-form {
    grid-template-columns: 1fr 1fr;
  }

  .booking-form__submit {
    grid-column: 1 / -1;
  }

  .booking-panel__price {
    grid-template-columns: auto auto;
  }

  .booking-panel__price small:last-child {
    grid-column: 2;
  }

  .pricing-note {
    text-align: left;
  }

  .trust-strip {
    padding-bottom: 56px;
  }

  .trust-strip__grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip__grid div,
  .trust-strip__grid div:first-child,
  .trust-strip__grid div:last-child {
    padding: 18px 12px;
    border-right: 0;
  }

  .trust-strip__grid div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .trust-strip__grid div:nth-child(odd) {
    padding-left: 0;
    border-right: 1px solid var(--line);
  }

  .section {
    padding: 78px 0;
  }

  .section-header {
    display: grid;
    align-items: start;
    gap: 26px;
    margin-bottom: 30px;
  }

  .room-filters {
    justify-content: flex-start;
    flex-wrap: nowrap;
    max-width: calc(100vw - 40px);
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .room-filters::-webkit-scrollbar {
    display: none;
  }

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

  .room-card--featured {
    display: block;
  }

  .room-card--featured .room-card__media,
  .room-card__media {
    min-height: 280px;
  }

  .room-card__body {
    padding: 22px;
  }

  .room-card__heading {
    gap: 12px;
  }

  .room-card h3 {
    font-size: 26px;
  }

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

  .amenity-card--feature {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 330px;
  }

  .amenity-card__kicker {
    margin-bottom: 64px;
  }

  .amenity-card--wide {
    grid-column: 1 / -1;
  }

  .destination-layout__media,
  .split-layout__media {
    order: 1;
  }

  .destination-layout__copy,
  .split-layout__copy {
    order: 2;
  }

  .review-gallery {
    padding: 0;
    border-left: 0;
  }

  .review-card {
    min-width: calc(100vw - 40px);
  }

  .availability-dialog {
    width: calc(100% - 20px);
  }

  .availability-dialog__header,
  .availability-dialog__footer {
    padding: 20px;
  }

  .booking-flow {
    grid-template-columns: 1fr;
  }

  .booking-flow__step {
    min-height: 56px;
  }

  .availability-dialog__frame,
  .availability-dialog__frame iframe {
    min-height: 62vh;
    height: 62vh;
  }

  .review-quote {
    padding: 0;
    border-left: 0;
  }

  .contact-section__actions {
    justify-items: start;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__meta {
    grid-column: 1 / -1;
  }

  .site-footer__bottom {
    display: grid;
    gap: 6px;
  }

  .mobile-booking-bar {
    position: fixed;
    z-index: 18;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 20px calc(10px + env(safe-area-inset-bottom));
    background: rgb(251 250 246 / 0.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgb(23 32 28 / 0.08);
    backdrop-filter: blur(16px);
  }

  .mobile-booking-bar > div {
    display: grid;
    gap: 1px;
  }

  .mobile-booking-bar span {
    color: var(--muted);
    font-size: 10px;
  }

  .mobile-booking-bar strong {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 500;
  }

  .mobile-booking-bar strong small {
    color: var(--muted);
    font-family: var(--sans);
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .hero__notes {
    display: grid;
    gap: 8px;
  }

  .hero__media figcaption {
    position: static;
    margin-top: 10px;
    color: var(--ink);
    background: transparent;
    border: 0;
    padding: 0;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .booking-panel__price {
    grid-template-columns: auto auto auto;
  }

  .booking-panel__price small:last-child {
    grid-column: auto;
  }

  .trust-strip__grid strong {
    font-size: 24px;
  }

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

  .amenity-card--wide,
  .amenity-card--feature {
    grid-column: auto;
  }

  .distance-list {
    grid-template-columns: 1fr 1fr;
    gap: 14px 12px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .site-footer__meta {
    grid-column: auto;
  }

  .mobile-booking-bar .button {
    min-height: 44px;
    padding-inline: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
