:root {
  --ink: #20231f;
  --paper: #f4efe5;
  --cream: #fcfaf5;
  --clay: #c65319;
  --clay-dark: #893b25;
  --sand: #e8c7a8;
  --muted: #62645e;
  --line: rgba(32, 35, 31, 0.18);
  --focus: #893b25;
  --shadow: 0 22px 60px rgba(25, 24, 20, 0.16);
}

* { box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

body.large-text { font-size: 1.18rem; }
body.dialog-open { overflow: hidden; }

body.high-contrast {
  --ink: #000;
  --paper: #fff;
  --cream: #fff;
  --clay: #702000;
  --clay-dark: #4d0000;
  --sand: #fff;
  --muted: #111;
  --line: #000;
  --focus: #000;
}

img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 9999;
  padding: .8rem 1rem;
  border: 3px solid var(--focus);
  background: #fff;
  color: #000;
}

.skip-link:focus { top: 1rem; }

*:focus {
  outline: 0 !important;
  box-shadow: none !important;
}

*:focus-visible {
  outline: 3px solid var(--focus) !important;
  outline-offset: 3px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--clay-dark) !important;
}

.site-header {
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  padding: 0 clamp(20px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.site-brand {
  color: var(--ink);
  line-height: 1;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-brand:hover,
.site-brand:focus { color: var(--ink); text-decoration: none; }
.site-brand span { display: block; margin-bottom: 7px; font-size: 10px; }
.site-brand strong { font: normal 22px Georgia, serif; letter-spacing: .04em; }
.site-header nav { display: flex; align-items: center; gap: 22px; }

.site-header nav a,
.site-header nav button {
  padding: 10px 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header nav button { cursor: pointer; }

.site-header nav a:hover,
.site-header nav a:focus,
.site-header nav button:hover,
.site-header nav button:focus,
.site-header nav a[aria-current="page"] { border-color: var(--ink); text-decoration: none; }

.site-header nav .nav-book {
  padding: 13px 18px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
}

.menu-toggle { display: none; border: 0; background: none; color: var(--ink); font-size: 25px; }

.hero-carousel {
  position: relative;
  height: calc(100vh - 88px);
  min-height: 620px;
  overflow: hidden;
  background: #352f29;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .7s, transform 1.3s;
}

.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }

.hero-overlay,
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 14, 12, .76), rgba(15, 14, 12, .28) 60%, rgba(15, 14, 12, .12)),
    linear-gradient(0deg, rgba(0, 0, 0, .42), transparent 48%);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: clamp(24px, 7vw, 112px);
  max-width: 780px;
  padding-right: 24px;
  color: #fff;
  transform: translateY(-50%);
}

.eyebrow,
.section-label {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-content h1,
.page-hero h1,
.split-story h2,
.features-section h2,
.gallery-heading h2,
.booking-banner h2 {
  margin: 18px 0 25px;
  font: normal clamp(58px, 7vw, 112px) / .92 Georgia, serif;
  letter-spacing: -.045em;
}

.hero-content h1 em { color: var(--sand); font-weight: 400; }
.heading-punctuation { color: var(--clay); }
.hero-content > p:not(.eyebrow) { max-width: 780px; font-size: 17px; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.hero-explore-group {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero-content .hero-explore-group .button-link { margin-left: 0; }
.hero-pride-heart {
  flex: 0 0 auto;
  width: 42px;
  height: 38px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, .42));
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 15px 19px;
  border: 1px solid currentColor;
  border-radius: 0;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button:hover,
.button:focus { text-decoration: none; }
.button-primary { border-color: var(--clay); background: var(--clay); color: #fff; }
.button-primary:hover,
.button-primary:focus { border-color: var(--clay-dark); background: var(--clay-dark); color: #fff; }
.button-link { margin-left: 15px; border-width: 0 0 1px; background: transparent; color: #fff; }
.button-light { border-color: #fff; background: #fff; color: var(--ink); }

.carousel-nav {
  position: absolute;
  right: auto;
  bottom: 34px;
  left: clamp(24px, 7vw, 112px);
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 12px;
  letter-spacing: .12em;
}

.carousel-nav button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .6);
  background: rgba(0, 0, 0, .3);
  color: #fff;
}

.property-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.property-specs div {
  display: grid;
  padding: 32px clamp(18px, 3vw, 48px);
  border-right: 1px solid var(--line);
}

.property-specs div:last-child { border-right: 0; }
.property-specs strong { font: normal 18px Georgia, serif; }
.property-specs span { color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

.split-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 8vw, 128px);
  padding: clamp(75px, 10vw, 160px) clamp(24px, 7vw, 112px);
}

.split-story h2,
.features-section h2,
.gallery-heading h2,
.booking-banner h2 { font-size: clamp(44px, 5vw, 80px); line-height: 1.02; }
.split-story > div > p:not(.section-label) { max-width: 590px; color: #555850; font-size: 17px; }

.text-link {
  display: inline-flex;
  gap: 16px;
  margin-top: 15px;
  padding: 10px 0;
  border-bottom: 1px solid;
  color: var(--ink);
  text-decoration: none;
}

.split-story figure { margin: 0; }
.split-story img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.split-story figcaption { margin-top: 8px; color: var(--muted); font-size: 12px; }

.features-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  padding: clamp(65px, 8vw, 128px) clamp(24px, 7vw, 112px);
  background: var(--ink);
  color: var(--cream);
}

.features-section ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .25);
  list-style: none;
}

.features-section li { display: flex; gap: 15px; padding: 22px 10px; border-bottom: 1px solid rgba(255, 255, 255, .25); }
.features-section li span { color: var(--sand); }

.gallery-section { padding: clamp(70px, 9vw, 140px) clamp(18px, 5vw, 80px); background: var(--paper); }

.gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr);
  align-items: end;
  gap: clamp(30px, 7vw, 110px);
  max-width: 1400px;
  margin: 0 auto 50px;
}

.gallery-heading h2 { max-width: 870px; margin-bottom: 0; }
.gallery-heading > p { margin: 0 0 8px; color: var(--muted); font-size: 15px; }

.photo-gallery {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 1600px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  min-height: 260px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #d9d0c0;
  color: #fff;
  text-align: left;
  cursor: zoom-in;
}

.gallery-item-wide { grid-column: span 2; grid-row: span 2; min-height: 532px; }
.gallery-item img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; transition: transform .45s ease; }

.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, .66), transparent 48%);
}

.gallery-item span {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 1;
  font: normal 16px/1.35 Georgia, serif;
}

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

.gallery-dialog {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(10, 10, 9, .92);
}

.gallery-dialog[hidden] { display: none; }

.gallery-dialog-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  width: min(1220px, 100%);
  max-height: calc(100vh - 48px);
}

.gallery-dialog figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  max-height: calc(100vh - 48px);
  margin: 0;
}

.gallery-dialog figure img { width: 100%; max-height: calc(100vh - 120px); object-fit: contain; }
.gallery-dialog figcaption { padding: 14px 20px; background: #111; color: #fff; text-align: center; }

.gallery-dialog button {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, .7);
  background: rgba(0, 0, 0, .45);
  color: #fff;
  font-size: 24px;
}

.gallery-close { position: absolute; top: 12px; right: 12px; z-index: 2; }
.gallery-previous { margin-right: 14px; }
.gallery-next { margin-left: 14px; }

.booking-banner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: clamp(65px, 8vw, 112px) clamp(24px, 7vw, 112px);
  background: var(--clay);
  color: #fff;
}

.booking-banner .heading-punctuation { color: var(--sand); }

.page-hero {
  position: relative;
  display: grid;
  min-height: clamp(420px, 58vw, 680px);
  overflow: hidden;
  background: #3d382f;
  color: #fff;
}

.page-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.page-hero-content {
  position: relative;
  z-index: 1;
  align-self: end;
  width: min(1380px, 100%);
  padding: clamp(75px, 10vw, 145px) clamp(24px, 9vw, 145px) clamp(50px, 7vw, 95px);
}

.page-hero h1 { max-width: 1050px; margin-bottom: 0; font-size: clamp(52px, 7vw, 108px); }
.page-hero-content .button { margin-top: 28px; }
.page-section { padding: clamp(55px, 7vw, 110px) clamp(24px, 9vw, 145px); }
.prose { max-width: 830px; margin: auto; padding: clamp(55px, 7vw, 110px) 24px; font-size: 17px; }
.prose .lead,
.contact-layout .lead { font: normal 27px/1.45 Georgia, serif; }
.prose h2 { margin: 55px 0 20px; font: normal 36px Georgia, serif; }

.prose aside,
.contact-layout aside {
  display: grid;
  margin-top: 45px;
  padding: 22px;
  border-left: 4px solid var(--clay);
  background: var(--paper);
}

.legal ul { padding-left: 22px; }
.intro { max-width: 700px; margin-bottom: 40px; font-size: 18px; }
.booking-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.booking-card {
  display: flex;
  flex-direction: column;
  min-height: 245px;
  padding: 30px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}

.booking-card:hover,
.booking-card:focus { color: var(--ink); text-decoration: none; transform: translateY(-3px); box-shadow: var(--shadow); }
.booking-card.featured { background: var(--ink); color: #fff; }
.booking-card.featured:hover,
.booking-card.featured:focus { color: #fff; }
.booking-card.featured h2 { color: var(--clay); }
.booking-card > span { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.booking-card h2 { margin: 30px 0 5px; font: normal 31px Georgia, serif; }
.booking-card p { opacity: .72; }
.booking-card strong { margin-top: auto; }
.booking-card[type="button"] { width: 100%; text-align: left; cursor: pointer; }
.fine-print { margin-top: 22px; color: var(--muted); font-size: 12px; }

.futurestay-widget-frame {
  display: block;
  width: 283px;
  min-width: 283px;
  max-width: 283px;
  margin: 0;
  justify-self: center;
  height: var(--booking-frame-height);
  min-height: 0;
  border: 0;
  background: #fff;
  opacity: .93;
}

.booking-modal {
  --booking-frame-height: 477px;
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: auto;
  padding: 24px 12px;
  background: rgba(12, 13, 11, .78);
}

.booking-modal[hidden] { display: none; }

.booking-modal-dialog {
  position: relative;
  width: min(350px, calc(100vw - 24px));
  min-width: 0;
  max-width: 350px;
  margin: auto;
  border: 1px solid rgba(255, 255, 255, .42);
  background: rgba(22, 24, 21, .96);
  color: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .52);
}

.booking-modal-header {
  position: relative;
  padding: 18px 52px 15px 18px;
}

.booking-modal-header h2 {
  margin: 5px 0 0;
  font: normal 31px / 1 Georgia, serif;
}

.booking-modal-close {
  position: absolute;
  top: 8px;
  right: 9px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .55);
  background: transparent;
  color: #fff;
  font-size: 25px;
  line-height: 1;
}

.booking-modal-frame {
  width: 283px;
  min-width: 283px;
  max-width: 283px;
}

.booking-modal-frame-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  width: 100%;
  overflow: hidden;
  background: transparent;
}

.booking-modal-footer {
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 12px 18px 14px;
  color: rgba(255, 255, 255, .76);
  font-size: 11px;
}

.booking-modal-footer a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.alternate-booking h2 {
  margin: 14px 0 16px;
  font: normal clamp(38px, 5vw, 68px) / 1.04 Georgia, serif;
  letter-spacing: -.035em;
}

.alternate-booking { border-top: 1px solid var(--line); }
.alternate-booking .section-introduction { max-width: 850px; }
.alternate-booking .section-introduction > h2 { font-size: clamp(36px, 4.5vw, 62px); }

.directory-section {
  padding: clamp(65px, 8vw, 125px) clamp(24px, 7vw, 112px);
  background: var(--paper);
}

.directory-introduction { max-width: 820px; }
.directory-introduction h2 {
  margin: 14px 0 20px;
  font: normal clamp(44px, 5vw, 76px) / 1.02 Georgia, serif;
  letter-spacing: -.04em;
}
.directory-introduction > p:last-child { max-width: 700px; color: var(--muted); font-size: 18px; }

.directory-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 38px 0 45px;
  padding: 0 0 24px;
  border-bottom: 1px solid var(--line);
}
.directory-filters a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.directory-filters a:hover,
.directory-filters a:focus,
.directory-filters a[aria-current="page"] { border-color: var(--ink); background: var(--ink); color: var(--cream); }

.directory-view-switch {
  display: inline-flex;
  margin: 0 0 18px;
  border: 1px solid var(--ink);
  background: var(--cream);
}
.directory-view-switch button {
  min-width: 125px;
  padding: 12px 18px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.directory-view-switch button + button { border-left: 1px solid var(--ink); }
.directory-view-switch button:hover,
.directory-view-switch button:focus,
.directory-view-switch button[aria-selected="true"] { background: var(--ink); color: var(--cream); }
.directory-map-panel[hidden],
.directory-list-view[hidden] { display: none; }

.directory-map-panel {
  max-width: 1600px;
  margin: 0 auto clamp(52px, 7vw, 90px);
  border: 1px solid var(--line);
  background: var(--cream);
}
.directory-map-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
  padding: clamp(24px, 4vw, 48px);
}
.directory-map-header > div:first-child { max-width: 760px; }
.directory-map-header h3 {
  margin: 10px 0 12px;
  font: normal clamp(32px, 4vw, 54px) / 1.05 Georgia, serif;
  letter-spacing: -.03em;
}
.directory-map-header p:last-child { margin-bottom: 0; color: var(--muted); }
.directory-map-location-wrap { flex: 0 0 230px; }
.directory-map-location {
  width: 100%;
  justify-content: center;
  border-color: var(--clay);
  background: var(--clay);
  color: #fff;
}
.directory-map-location:hover,
.directory-map-location:focus { border-color: var(--clay-dark); background: var(--clay-dark); color: #fff; }
.directory-map-location[disabled] { cursor: wait; opacity: .7; }
.directory-map-location-status {
  display: block;
  min-height: 36px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.directory-map {
  position: relative;
  height: clamp(440px, 56vw, 650px);
  min-height: 440px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #d8d4c8;
  cursor: grab;
  isolation: isolate;
  touch-action: pan-y;
  user-select: none;
}
.directory-map.is-dragging { cursor: grabbing; }
.directory-map-tiles,
.directory-map-markers { position: absolute; inset: 0; }
.directory-map-tiles { z-index: 1; overflow: hidden; }
.directory-map-tiles img {
  position: absolute;
  width: 256px;
  max-width: none;
  height: 256px;
  pointer-events: none;
}
.directory-map-markers { z-index: 3; pointer-events: none; }
.directory-map-marker {
  position: absolute;
  display: block;
  width: 40px;
  height: 50px;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  pointer-events: auto;
  transform: translate(-50%, -100%);
}
.directory-map-marker::before {
  position: absolute;
  bottom: 8px;
  left: 3px;
  width: 34px;
  height: 34px;
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  background: var(--clay);
  box-shadow: 0 5px 16px rgba(0, 0, 0, .35);
  content: "";
  transform: rotate(-45deg);
}
.directory-map-marker span {
  position: absolute;
  top: 10px;
  left: 0;
  z-index: 1;
  width: 40px;
  text-align: center;
}
.directory-map-marker:hover,
.directory-map-marker:focus,
.directory-map-marker[aria-expanded="true"] { z-index: 2; background: transparent; }
.directory-map-marker:hover::before,
.directory-map-marker:focus::before,
.directory-map-marker[aria-expanded="true"]::before { background: var(--ink); }
.directory-map-marker[hidden],
.directory-map-user-marker[hidden] { display: none !important; }
.directory-map-user-marker {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #1261c9;
  box-shadow: 0 0 0 8px rgba(18, 97, 201, .2), 0 4px 12px rgba(0, 0, 0, .35);
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.directory-map-controls {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.directory-map-pan-controls {
  display: grid;
  grid-template-columns: repeat(3, 40px);
  grid-template-rows: repeat(3, 40px);
  filter: drop-shadow(0 5px 9px rgba(0, 0, 0, .2));
}
.directory-map-pan-controls .map-pan-up { grid-column: 2; grid-row: 1; }
.directory-map-pan-controls .map-pan-left { grid-column: 1; grid-row: 2; }
.directory-map-pan-controls .map-pan-right { grid-column: 3; grid-row: 2; }
.directory-map-pan-controls .map-pan-down { grid-column: 2; grid-row: 3; }
.directory-map-zoom-controls {
  display: grid;
  border: 1px solid rgba(32, 35, 31, .3);
  box-shadow: 0 5px 18px rgba(0, 0, 0, .2);
}
.directory-map-controls button {
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(32, 35, 31, .3);
  background: #fff;
  color: #111;
  font-size: 23px;
  line-height: 1;
  place-items: center;
}
.directory-map-zoom-controls button { border: 0; }
.directory-map-zoom-controls button + button { border-top: 1px solid #bbb; }
.directory-map-controls button:hover,
.directory-map-controls button:focus { background: var(--ink); color: #fff; }
.directory-map-popup {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 7;
  width: min(330px, calc(100% - 92px));
  padding: 22px 46px 22px 24px;
  border-top: 5px solid var(--clay);
  background: rgba(252, 250, 245, .97);
  box-shadow: var(--shadow);
  color: var(--ink);
  cursor: default;
  user-select: text;
}
.directory-map-popup[hidden] { display: none; }
.directory-map-popup-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 27px;
  line-height: 1;
}
.directory-map-popup p {
  margin: 0 0 6px;
  color: var(--clay-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.directory-map-popup h4 { margin: 0 0 10px; font: normal 27px/1.08 Georgia, serif; }
.directory-map-popup address { margin: 0 0 13px; color: var(--muted); font-style: normal; }
.directory-map-popup a { color: var(--ink); font-size: 12px; font-weight: 700; text-underline-offset: 3px; }
.directory-map-attribution {
  position: absolute;
  right: 5px;
  bottom: 5px;
  z-index: 6;
  margin: 0;
  padding: 3px 6px;
  background: rgba(255, 255, 255, .9);
  color: #222;
  font-size: 10px;
  line-height: 1.3;
  pointer-events: auto;
}
.directory-map-attribution a { color: #111; }
.directory-map-privacy,
.directory-map-noscript { margin: 0; padding: 14px clamp(24px, 4vw, 48px); color: var(--muted); font-size: 12px; }
body.high-contrast .directory-map { border: 2px solid #000; }
body.high-contrast .directory-map-popup,
body.high-contrast .directory-map-attribution { background: #fff; }

.directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 34px);
  max-width: 1600px;
  margin: 0 auto;
}
.directory-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--cream);
}
.directory-card.featured { border-top: 5px solid var(--clay); }
.directory-card figure { position: relative; margin: 0; overflow: hidden; background: #d9d0c0; }
.directory-card figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .4s ease; }
.directory-card:hover figure img { transform: scale(1.025); }
.directory-photo-placeholder {
  display: grid;
  width: 100%;
  aspect-ratio: 4 / 3;
  place-items: center;
  background: var(--clay);
  color: #fff;
}
.directory-photo-placeholder span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.directory-card figcaption {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  background: var(--clay);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.directory-card-body { display: flex; flex: 1; flex-direction: column; padding: clamp(22px, 3vw, 34px); }
.directory-category { margin: 0; color: var(--clay-dark); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.directory-card h3 { margin: 10px 0 14px; font: normal 32px / 1.08 Georgia, serif; }
.directory-summary { margin: 0 0 23px; color: var(--muted); }
.directory-details { margin: 0; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.directory-details > div { display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: 12px; padding: 4px 0; }
.directory-details dt { color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.directory-details dd { min-width: 0; margin: 0; overflow-wrap: anywhere; }
.directory-details address { margin: 0; font: inherit; }
.directory-details a { color: var(--ink); text-underline-offset: 3px; }
.directory-description { margin-top: 22px; color: #50534d; }
.directory-coordinates { margin: 18px 0 0; color: var(--muted); font: 11px/1.5 Consolas, Monaco, monospace; }
.directory-coordinates span { margin-right: 8px; font-family: Arial, Helvetica, sans-serif; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.directory-actions { display: flex; flex-wrap: wrap; gap: 16px 24px; margin-top: auto; padding-top: 23px; }
.directory-actions .text-link { margin: 0; }
.directory-empty { padding: 45px; border: 1px solid var(--line); background: var(--cream); text-align: center; }
.directory-empty h3 { margin-top: 0; font: normal 30px Georgia, serif; }

.directory-place-modal {
  position: fixed;
  inset: 0;
  z-index: 450;
  display: grid;
  overflow: auto;
  padding: clamp(18px, 5vw, 60px);
  background: rgba(17, 18, 16, .78);
  place-items: center;
}
.directory-place-modal[hidden] { display: none; }
.directory-place-modal-dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: calc(100vh - clamp(36px, 10vw, 120px));
  overflow: auto;
  background: var(--cream);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .4);
}
.directory-place-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--ink);
  background: var(--cream);
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
  place-items: center;
}
.directory-place-modal-close:hover,
.directory-place-modal-close:focus { background: var(--ink); color: var(--cream); }
.directory-place-modal .directory-card {
  width: 100%;
  border: 0;
  background: var(--cream);
}
.directory-place-modal .directory-card figure img,
.directory-place-modal .directory-photo-placeholder {
  max-height: 360px;
  aspect-ratio: 16 / 8;
}
.directory-place-modal .directory-card figure img { object-fit: cover; }
.directory-place-modal .directory-card-body { padding: clamp(26px, 5vw, 48px); }
body.high-contrast .directory-place-modal { background: rgba(0, 0, 0, .9); }

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 8vw, 125px); }
form { position: relative; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
form label { display: grid; gap: 6px; margin-bottom: 18px; font-size: 12px; }

input,
select,
textarea {
  width: 100%;
  padding: 13px;
  border: 1px solid #7d8178;
  border-radius: 0;
  background: #fff;
  color: #111;
}

textarea { resize: vertical; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }

.captcha-row {
  display: grid;
  grid-template-columns: 240px 1fr auto;
  align-items: end;
  gap: 15px;
  margin-bottom: 22px;
}

.captcha-row img { width: 240px; height: 70px; border: 1px solid var(--line); }
.captcha-row label { margin: 0; }
.captcha-row button { height: 47px; border: 1px solid var(--ink); background: transparent; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 22px;
  padding: 45px clamp(24px, 5vw, 80px);
  background: #161815;
  color: #eae4d9;
}

.site-footer > div { display: grid; }
.site-footer > div strong { font: normal 21px Georgia, serif; }
.site-footer > div span,
.site-footer > p { opacity: .7; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 20px; }
.site-footer a,
.site-footer button { padding: 0; border: 0; background: none; color: inherit; font-size: 12px; }
.site-footer > p { grid-column: 1 / -1; margin: 0; }

.a11y-launch {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  width: 52px;
  height: 52px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--clay);
  color: #fff;
  box-shadow: 0 6px 22px rgba(0, 0, 0, .3);
  font-size: 22px;
}

.utility-panel,
.cookie-panel {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, .64);
}

.utility-panel[hidden],
.cookie-panel[hidden] { display: none; }

.utility-card,
.cookie-panel > div {
  position: relative;
  width: 100%;
  max-width: 520px;
  padding: 28px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.panel-close { position: absolute; top: 10px; right: 15px; border: 0; background: none; font-size: 30px; }

.utility-card > button:not(.panel-close) {
  display: flex;
  gap: 14px;
  width: 100%;
  margin-top: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  background: #fff;
}

.cookie-buttons { display: flex; gap: 12px; margin: 22px 0 14px; }
.cookie-buttons button { flex: 1; padding: 12px; border: 1px solid var(--ink); background: transparent; }
.cookie-buttons .primary { background: var(--ink); color: #fff; }
.alert { grid-column: 1 / -1; border-radius: 0; }

@media (max-width: 1100px) {
  .photo-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .site-header nav {
    position: absolute;
    top: 88px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    background: var(--cream);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .15);
  }
  .site-header nav.open { display: flex; }
  .property-specs { grid-template-columns: 1fr 1fr; }
  .split-story,
  .features-section,
  .contact-layout,
  .gallery-heading { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr 1fr; }
  .booking-banner { flex-direction: column; align-items: start; gap: 30px; }
  .photo-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .directory-map-header { align-items: stretch; flex-direction: column; }
  .directory-map-location-wrap { flex-basis: auto; width: min(100%, 330px); }
}

@media (max-width: 600px) {
  .site-header { height: 74px; }
  .site-header nav { top: 74px; }
  .hero-carousel { height: calc(100svh - 74px); min-height: 620px; }
  .hero-content { top: 44%; }
  .hero-content h1 { font-size: 56px; }
  .hero-content .button { display: flex; width: max-content; margin: 0 0 10px; }
  .hero-content .button-link { margin-left: 0; }
  .hero-actions { gap: 10px 14px; }
  .hero-explore-group { gap: 10px; }
  .hero-content .hero-explore-group .button { margin-bottom: 0; }
  .hero-pride-heart { width: 38px; height: 34px; }
  .carousel-nav { left: 24px; }
  .property-specs { grid-template-columns: 1fr; }
  .property-specs div { border-right: 0; border-bottom: 1px solid var(--line); }
  .split-story { padding-top: 60px; padding-bottom: 60px; }
  .split-story img { aspect-ratio: 4 / 3; }
  .features-section { gap: 20px; }
  .features-section ul,
  .booking-grid,
  .form-row,
  .captcha-row,
  .site-footer { grid-template-columns: 1fr; }
  .page-hero { min-height: 430px; }
  .page-hero h1 { font-size: 48px; }
  .photo-gallery { grid-template-columns: 1fr; }
  .directory-grid { grid-template-columns: 1fr; }
  .directory-map { height: 430px; min-height: 430px; }
  .directory-map-header { padding: 24px; }
  .directory-map-controls { top: 12px; right: 12px; gap: 7px; }
  .directory-map-pan-controls {
    grid-template-columns: repeat(3, 34px);
    grid-template-rows: repeat(3, 34px);
  }
  .directory-map-controls button { width: 34px; height: 34px; font-size: 20px; }
  .directory-map-popup { top: 12px; left: 12px; width: calc(100% - 80px); padding: 18px 40px 18px 18px; }
  .directory-map-privacy,
  .directory-map-noscript { padding-right: 24px; padding-left: 24px; }
  .directory-view-switch { display: flex; width: 100%; }
  .directory-view-switch button { min-width: 0; flex: 1; }
  .directory-place-modal { align-items: start; padding: 12px; }
  .directory-place-modal-dialog { width: 100%; max-height: calc(100vh - 24px); }
  .directory-place-modal .directory-card figure img,
  .directory-place-modal .directory-photo-placeholder { aspect-ratio: 4 / 3; }
  .directory-details > div { grid-template-columns: 64px minmax(0, 1fr); }
  .gallery-item,
  .gallery-item-wide { grid-column: auto; grid-row: auto; min-height: 300px; }
  .gallery-dialog { padding: 12px; }
  .gallery-dialog-card { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-dialog figure { grid-column: 1 / -1; grid-row: 1; }
  .gallery-previous,
  .gallery-next { grid-row: 2; width: 100% !important; margin: 0; }
  .captcha-row button { width: max-content; }
  .cookie-buttons { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
