:root {
  --ink: #182621;
  --muted: #5f6f67;
  --paper: #fbfaf5;
  --chalk: #ede9de;
  --sage: #6d8a78;
  --moss: #283d32;
  --clay: #b85f3a;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(24, 38, 33, 0.18);
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 clamp(18px, 4vw, 52px);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(8, 17, 14, 0.64), rgba(8, 17, 14, 0));
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-solid {
  color: var(--ink);
  background: rgba(251, 250, 245, 0.88);
  box-shadow: 0 1px 0 rgba(24, 38, 33, 0.1);
  backdrop-filter: blur(18px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1;
}

.wordmark-star {
  width: 1em;
  height: 1em;
  fill: currentColor;
  opacity: 0.92;
  transform: translateY(-1px);
  filter: drop-shadow(0 0 14px rgba(255, 240, 200, 0.45));
  animation: star-twinkle 4.6s ease-in-out infinite;
}

.site-header.is-solid .wordmark-star {
  filter: none;
}

@keyframes star-twinkle {
  0%, 100% { opacity: 0.95; }
  50%      { opacity: 0.62; }
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.header-cta {
  justify-self: end;
  min-width: 82px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  text-align: center;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-header.is-solid .header-cta {
  border-color: rgba(24, 38, 33, 0.22);
  background: var(--ink);
  color: var(--white);
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--white);
  color: var(--ink);
  transform: translateY(-1px);
}

.site-header.is-solid .header-cta:hover,
.site-header.is-solid .header-cta:focus-visible {
  background: var(--clay);
  color: var(--white);
}

.mobile-booking-bar {
  position: fixed;
  z-index: 18;
  right: 14px;
  bottom: 14px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 12px 22px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(24, 38, 33, 0.42);
  box-shadow: 0 18px 50px rgba(24, 38, 33, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.mobile-booking-bar span:first-child {
  font-weight: 850;
}

.mobile-booking-bar span:last-child {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--header-height) + 70px) clamp(18px, 5vw, 68px) 34px;
  color: var(--white);
  background: var(--moss);
}

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

.hero-image {
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  animation: hero-settle 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 18, 14, 0.78) 0%, rgba(8, 18, 14, 0.45) 42%, rgba(8, 18, 14, 0.12) 100%),
    linear-gradient(0deg, rgba(8, 18, 14, 0.7) 0%, rgba(8, 18, 14, 0.04) 52%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-bottom: clamp(70px, 12vh, 128px);
}

.hero .reveal {
  opacity: 1;
  transform: none;
  animation: hero-copy-in 820ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero .quick-facts {
  animation-delay: 180ms;
}

.eyebrow {
  margin: 0 0 14px;
  color: currentColor;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-variation-settings: "opsz" 72;
  letter-spacing: -0.01em;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(64px, 10.5vw, 138px);
  line-height: 0.94;
  letter-spacing: -0.02em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 5.8vw, 76px);
  line-height: 1.04;
}

h3 {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.2;
}

.lede {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.26;
}

.hero-actions,
.final-cta .reveal {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.primary-button,
.ghost-button,
.secondary-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

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

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

.ghost-button {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.secondary-button {
  border: 1px solid rgba(24, 38, 33, 0.24);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.secondary-button:hover,
.secondary-button:focus-visible {
  border-color: var(--clay);
  color: var(--clay);
  transform: translateY(-2px);
}

.quick-facts {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.quick-facts div {
  min-height: 88px;
  padding: 18px;
  background: rgba(10, 22, 18, 0.38);
}

.quick-facts dt {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 8px 0 0;
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.details,
.reviews,
.gallery-section,
.location,
.stay-story,
.final-cta {
  padding: clamp(76px, 12vw, 150px) clamp(18px, 6vw, 82px);
}

.feature-copy p,
.story-steps p,
.location-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(54px, 8vw, 110px) clamp(18px, 6vw, 82px);
  background: var(--chalk);
}

.feature-copy {
  max-width: 590px;
}

.feature-copy .eyebrow,
.stay-story .eyebrow,
.details .eyebrow,
.gallery-section .eyebrow,
.reviews .eyebrow,
.location .eyebrow,
.final-cta .eyebrow {
  color: var(--clay);
}

.feature-media {
  overflow: hidden;
  min-height: 420px;
}

.feature-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.feature-media:hover img {
  transform: scale(1.035);
}

.details-heading,
.gallery-heading,
.story-copy,
.review-intro {
  max-width: 880px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.stay-story {
  background: var(--paper);
}

.story-copy {
  max-width: 980px;
}

.story-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(24, 38, 33, 0.18);
}

.story-steps article {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 3vw, 42px);
  background: var(--chalk);
}

.story-steps span {
  margin-bottom: auto;
  color: var(--clay);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-steps h3 {
  min-height: 2.08em;
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.04;
}

.story-steps p {
  margin-bottom: 0;
  font-size: 17px;
}

.paw-mark {
  display: inline-block;
  width: 0.62em;
  height: 0.62em;
  margin-left: 0.28em;
  vertical-align: 0.04em;
  fill: var(--clay);
  transform: rotate(-12deg);
}

.detail-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(24, 38, 33, 0.2);
}

.detail-block {
  min-height: 250px;
  padding: clamp(24px, 3vw, 40px);
  background: var(--paper);
}

.detail-block p {
  color: var(--muted);
  line-height: 1.55;
}

.detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--muted);
  line-height: 1.5;
}

.detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 10px 0;
  font-size: 15px;
}

.detail-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  fill: none;
  stroke: var(--clay);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.image-strip {
  position: relative;
  min-height: 70svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(24px, 5vw, 68px);
  color: var(--white);
  background: var(--moss);
}

.image-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 20, 17, 0.76), rgba(10, 20, 17, 0.04));
}

.parallax-image {
  position: absolute;
  inset: -8% 0;
  width: 100%;
  height: 116%;
  object-fit: cover;
  object-position: center;
  transform: translateY(var(--strip-shift, 0));
}

.strip-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 6vw, 78px);
  line-height: 1;
}

.strip-copy p {
  margin: 0;
}

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

.review-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.22);
}

blockquote {
  min-height: 250px;
  margin: 0;
  padding: clamp(24px, 3vw, 38px);
  background: rgba(255, 255, 255, 0.07);
}

blockquote p {
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 2.5vw, 34px);
  line-height: 1.12;
}

cite {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 12px;
}

.gallery-button {
  position: relative;
  min-height: 260px;
  border: 0;
  padding: 0;
  overflow: hidden;
  background: var(--chalk);
  cursor: pointer;
}

.gallery-button:nth-child(1),
.gallery-button:nth-child(8),
.gallery-button:nth-child(17),
.gallery-button:nth-child(29),
.gallery-button:nth-child(43) {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 532px;
}

.gallery-button img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 450ms ease, filter 450ms ease;
}

.gallery-button:hover img,
.gallery-button:focus-visible img {
  filter: saturate(1.06);
  transform: scale(1.045);
}

.gallery-button::after {
  content: "View";
  position: absolute;
  right: 14px;
  bottom: 14px;
  opacity: 0;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(24, 38, 33, 0.72);
  font-size: 12px;
  font-weight: 800;
  transition: opacity 180ms ease;
}

.gallery-caption {
  position: absolute;
  left: 14px;
  right: 70px;
  bottom: 14px;
  z-index: 2;
  opacity: 0;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-align: left;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.62);
  transition: opacity 180ms ease, transform 180ms ease;
  transform: translateY(4px);
}

.gallery-button:hover::after,
.gallery-button:focus-visible::after,
.gallery-button:hover .gallery-caption,
.gallery-button:focus-visible .gallery-caption {
  opacity: 1;
}

.gallery-button:hover .gallery-caption,
.gallery-button:focus-visible .gallery-caption {
  transform: translateY(0);
}

.gallery-actions {
  display: flex;
  justify-content: center;
  padding-top: clamp(28px, 5vw, 54px);
}

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

.location {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(38px, 8vw, 110px);
  align-items: start;
}

.location-list {
  border-top: 1px solid rgba(24, 38, 33, 0.2);
}

.location-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(24, 38, 33, 0.2);
  color: var(--ink);
}

.location-list span {
  color: var(--clay);
  font-weight: 850;
}

.map-explorer {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.28fr);
  min-height: 620px;
  margin-top: clamp(16px, 3vw, 34px);
  background: var(--moss);
  color: var(--white);
  overflow: hidden;
}

.map-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
  padding: clamp(28px, 5vw, 58px);
}

.map-copy .eyebrow {
  color: rgba(255, 255, 255, 0.66);
}

.map-copy h3 {
  margin-bottom: 14px;
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 400;
  line-height: 1;
}

.map-copy p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.5;
}

.map-places {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.map-place {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  border: 0;
  padding: 17px 18px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.map-place-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition: background 180ms ease, transform 180ms ease;
}

.map-place-cottage .map-place-mark {
  width: 22px;
  height: 22px;
  background: transparent;
  border-radius: 0;
}

.map-place-cottage .map-place-mark svg {
  width: 100%;
  height: 100%;
  fill: #f2c9a5;
  transition: fill 180ms ease, transform 180ms ease;
}

.map-place-name {
  font-weight: 800;
}

.map-place small {
  justify-self: end;
  color: currentColor;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.78;
}

.map-place:hover,
.map-place:focus-visible,
.map-place.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.map-place:hover .map-place-mark,
.map-place:focus-visible .map-place-mark,
.map-place.active .map-place-mark {
  background: #f2c9a5;
  transform: scale(1.1);
}

.map-place-cottage:hover .map-place-mark,
.map-place-cottage:focus-visible .map-place-mark,
.map-place-cottage.active .map-place-mark {
  background: transparent;
}

.map-place.active small {
  color: #f2c9a5;
  opacity: 1;
}

.map-canvas {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.38), transparent 28%),
    linear-gradient(135deg, #d8dfcf 0%, #afc5b6 52%, #8eab9d 100%);
}

.map-canvas::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    inset 0 0 120px rgba(24, 38, 33, 0.18);
}

.map-surface {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.area-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #e9e3d4;
}

.area-map .leaflet-tile-pane {
  filter: sepia(0.45) saturate(0.7) hue-rotate(-8deg) brightness(0.86) contrast(0.92);
}

.area-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(40, 61, 50, 0.08);
  z-index: 400;
}

.map-reset {
  position: absolute;
  top: clamp(18px, 3vw, 28px);
  right: clamp(18px, 3vw, 28px);
  z-index: 500;
  padding: 10px 16px;
  border: 0;
  color: var(--white);
  background: rgba(24, 38, 33, 0.86);
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px rgba(24, 38, 33, 0.22);
  transition: background 180ms ease, transform 180ms ease;
}

.map-reset:hover,
.map-reset:focus-visible {
  background: rgba(184, 95, 58, 0.95);
  transform: translateY(-1px);
  outline: none;
}

.area-map .leaflet-control-attribution {
  background: rgba(251, 250, 245, 0.78);
  color: rgba(40, 61, 50, 0.7);
  font-size: 10px;
  padding: 2px 8px;
}

.area-map .leaflet-control-attribution a {
  color: rgba(40, 61, 50, 0.85);
}

.area-marker {
  pointer-events: none;
  border-radius: 50%;
  background: var(--moss);
  border: 3px solid var(--paper);
  box-sizing: border-box;
  transition: background-color 200ms ease;
}

.area-marker-cottage {
  background: transparent;
  border: 0;
  overflow: visible;
}

.area-marker-cottage svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.area-marker-star-halo {
  fill: rgba(251, 250, 245, 0.95);
  stroke: rgba(251, 250, 245, 0.95);
  stroke-width: 3.5;
  stroke-linejoin: round;
}

.area-marker-star-fill {
  fill: var(--clay);
}

.area-marker-tooltip.leaflet-tooltip {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  white-space: nowrap;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", system-ui, sans-serif;
  color: rgba(24, 38, 33, 0.92);
  text-shadow:
    0 0 4px rgba(251, 250, 245, 0.95),
    0 0 10px rgba(251, 250, 245, 0.85);
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
}

.area-marker-tooltip.leaflet-tooltip::before {
  display: none;
}

.area-marker-tooltip strong {
  display: block;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.15;
}

.area-marker-tooltip em {
  display: block;
  margin-top: 2px;
  font-style: normal;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(95, 111, 103, 0.92);
}

.map-surface[data-active="seahouses"] .area-marker-seahouses,
.map-surface[data-active="bamburgh"] .area-marker-bamburgh,
.map-surface[data-active="holy-island"] .area-marker-holy-island {
  background: var(--clay);
}

.map-surface[data-active="north-sunderland"] .area-marker-tooltip-north-sunderland,
.map-surface[data-active="seahouses"] .area-marker-tooltip-seahouses,
.map-surface[data-active="bamburgh"] .area-marker-tooltip-bamburgh,
.map-surface[data-active="holy-island"] .area-marker-tooltip-holy-island {
  opacity: 1;
}

@keyframes marker-breathe {
  0%, 100% {
    transform: scale(0.65);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

.final-cta {
  min-height: 58svh;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--chalk);
}

.final-cta .reveal {
  flex-direction: column;
  max-width: 820px;
}

.final-meta {
  max-width: 640px;
  margin: -4px 0 26px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.5;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.rating-badge .stars {
  color: #f0c674;
  letter-spacing: 2px;
}

.lightbox {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 58px clamp(16px, 4vw, 52px);
  background: rgba(10, 18, 15, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(1180px, 100%);
  max-height: 82svh;
  box-shadow: var(--shadow);
}

.lightbox figure {
  margin: 0;
}

.lightbox figcaption {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  padding: 12px 16px;
  color: var(--white);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Instagram icon in header */
.nav-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: currentColor;
  opacity: 0.85;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-instagram svg {
  width: 18px;
  height: 18px;
  display: block;
}

.nav-instagram:hover,
.nav-instagram:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
}

/* Floor plan */
.floorplan {
  padding: clamp(76px, 12vw, 150px) clamp(18px, 6vw, 82px);
  background: var(--paper);
}

.floorplan-heading {
  max-width: 760px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.floorplan-heading p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.floorplan-note {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 10px;
  border: 1px solid rgba(24, 38, 33, 0.18);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  vertical-align: middle;
}

.floorplan-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
}

.floorplan-floors {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.floor-tabs {
  display: inline-flex;
  align-self: flex-start;
  gap: 1px;
  background: rgba(24, 38, 33, 0.18);
  border-radius: 999px;
  padding: 3px;
}

.floor-tab {
  border: 0;
  background: transparent;
  padding: 10px 18px;
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--muted);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.floor-tab.active {
  background: var(--ink);
  color: var(--paper);
}

.floor-canvas {
  position: relative;
  background: var(--chalk);
  border-radius: 4px;
  overflow: hidden;
  padding: clamp(18px, 3vw, 32px);
  min-height: 380px;
}

.floor-canvas[hidden] {
  display: none;
}

.floor-svg {
  display: block;
  width: 100%;
  height: auto;
  font-family: "Newsreader", Georgia, serif;
}

.floor-svg .room rect {
  fill: var(--paper);
  stroke: rgba(24, 38, 33, 0.3);
  stroke-width: 1.4;
  transition: fill 220ms ease, stroke 220ms ease, transform 220ms ease;
  cursor: pointer;
}

.floor-svg .room .room-outside {
  fill: rgba(109, 138, 120, 0.18);
  stroke: rgba(40, 61, 50, 0.32);
  stroke-dasharray: 4 4;
}

.floor-svg .room text {
  fill: var(--ink);
  font-size: 14px;
  font-weight: 500;
  pointer-events: none;
  transition: fill 220ms ease;
}

.floor-svg .room .room-sub {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  fill: var(--muted);
}

.floor-svg .room:hover rect,
.floor-svg .room:focus-visible rect,
.floor-svg .room.is-active rect {
  fill: var(--clay);
  stroke: var(--clay);
  outline: none;
}

.floor-svg .room:hover text,
.floor-svg .room:focus-visible text,
.floor-svg .room.is-active text,
.floor-svg .room:hover .room-sub,
.floor-svg .room:focus-visible .room-sub,
.floor-svg .room.is-active .room-sub {
  fill: var(--paper);
}

.floor-svg .room:focus { outline: none; }

.floorplan-panel {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  align-self: start;
  background: var(--moss);
  color: var(--paper);
  border-radius: 4px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.panel-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 360ms ease;
}

.panel-media img.is-loaded {
  opacity: 1;
}

.panel-inner {
  padding: clamp(22px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.panel-eyebrow {
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f2c9a5;
}

#panel-title {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.05;
}

#panel-body {
  margin: 0;
  color: rgba(251, 250, 245, 0.82);
  font-size: 16px;
  line-height: 1.55;
}

@media (max-width: 880px) {
  .floorplan-stage {
    grid-template-columns: 1fr;
  }
  .floorplan-panel {
    position: static;
    min-height: 0;
  }
}

/* Instagram feed */
.instagram-feed {
  padding: clamp(72px, 11vw, 140px) clamp(18px, 6vw, 82px);
  background: var(--paper);
}

.ig-heading {
  max-width: 880px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.ig-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ig-eyebrow svg {
  width: 18px;
  height: 18px;
}

.ig-eyebrow a {
  border-bottom: 1px solid rgba(184, 95, 58, 0.45);
  padding-bottom: 1px;
  transition: color 180ms ease, border-color 180ms ease;
}

.ig-eyebrow a:hover,
.ig-eyebrow a:focus-visible {
  color: var(--ink);
  border-color: var(--ink);
}

.ig-embed {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--chalk);
}

.ig-embed iframe {
  display: block;
  min-height: 320px;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(251, 250, 245, 0.78);
  padding: clamp(56px, 8vw, 96px) clamp(18px, 6vw, 82px) 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 5vw, 64px);
  padding-bottom: clamp(32px, 5vw, 56px);
  border-bottom: 1px solid rgba(251, 250, 245, 0.14);
}

.footer-brand .wordmark {
  color: var(--paper);
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 320px;
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.footer-col h4 {
  margin: 0 0 14px;
  color: var(--paper);
  font-family: inherit;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
}

.footer-col a {
  transition: color 180ms ease;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: #f2c9a5;
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--paper);
  font-size: 15px;
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-instagram svg {
  width: 22px;
  height: 22px;
}

.footer-instagram:hover,
.footer-instagram:focus-visible {
  color: #f2c9a5;
  transform: translateY(-1px);
}

.footer-book {
  display: inline-block;
  color: #f2c9a5;
  font-weight: 800;
  font-size: 15px;
  border-bottom: 1px solid rgba(242, 201, 165, 0.5);
  padding-bottom: 2px;
  transition: color 180ms ease, border-color 180ms ease;
}

.footer-book:hover,
.footer-book:focus-visible {
  color: var(--paper);
  border-color: var(--paper);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(251, 250, 245, 0.55);
}

@media (max-width: 880px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@keyframes hero-settle {
  from {
    transform: scale(1.09);
  }
  to {
    transform: scale(1.03);
  }
}

@keyframes hero-copy-in {
  from {
    opacity: 1;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  nav {
    justify-self: end;
    gap: clamp(10px, 1.6vw, 20px);
    font-size: 12px;
  }

  .feature-band,
  .location {
    grid-template-columns: 1fr;
  }

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

  .map-explorer {
    grid-template-columns: 1fr;
  }

  .map-canvas,
  .map-surface {
    min-height: 500px;
  }

  .detail-columns,
  .review-track {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 640px) {
  :root {
    --header-height: 64px;
  }

  .site-header {
    grid-template-columns: auto 1fr;
    padding-inline: 14px;
    gap: 10px;
  }

  nav {
    gap: 12px;
    font-size: 11px;
  }

  nav a[href="#floorplan"] {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 92svh;
    padding-inline: 18px;
  }

  .hero-copy {
    padding-bottom: 42px;
  }

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

  .quick-facts div {
    min-height: 76px;
    padding: 14px;
  }

  .quick-facts dd {
    font-size: 28px;
  }

  .details,
  .reviews,
  .gallery-section,
  .location,
  .stay-story,
  .final-cta {
    padding-inline: 18px;
  }

  .detail-columns,
  .review-track,
  .gallery,
  .story-steps {
    grid-template-columns: 1fr;
  }

  .story-steps article {
    min-height: 0;
  }

  .map-explorer {
    min-height: 0;
    margin-inline: -18px;
  }

  .map-copy {
    padding: 32px 18px;
    gap: 26px;
  }

  .map-copy h3 {
    font-size: clamp(36px, 12vw, 52px);
  }

  .map-place {
    grid-template-columns: 18px 1fr auto;
    gap: 12px;
    min-height: 58px;
    padding: 13px 14px;
  }

  .map-canvas,
  .map-surface {
    min-height: 420px;
  }

  .map-reset {
    top: 14px;
    right: 14px;
    padding: 8px 12px;
    font-size: 11px;
  }

  .feature-media,
  .feature-media img {
    min-height: 320px;
  }

  .gallery-button,
  .gallery-button:nth-child(1),
  .gallery-button:nth-child(8),
  .gallery-button:nth-child(17),
  .gallery-button:nth-child(29),
  .gallery-button:nth-child(43) {
    grid-column: auto;
    grid-row: auto;
    min-height: 340px;
  }

  .location-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

  .mobile-booking-bar.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-booking-bar span:last-child {
    display: none;
  }

  .gallery-caption {
    right: 14px;
    opacity: 1;
    transform: none;
  }
}

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