/* Studio Take A Break Landing Styles */
:root {
  --bg: #181a1b;
  --bg-alt: #202425;
  --panel: #1f2526;
  --surface: #252e30;
  --surface-elevated: #2c3638;
  --surface-soft: #1b2223;
  --accent: #0d8894; /* Teal from logo */
  --accent-alt: #b8a030; /* Gold/olive from logo */
  --accent-deep: #134f57;
  --text: #f5f7f7;
  --muted: #a7b0b2;
  --radius: 14px;
  --shadow: 0 8px 28px -10px rgba(0, 0, 0, 0.55);
  --grad-hero: linear-gradient(135deg, #121717 0%, #0f2c31 52%, #17616b 100%);
  --border-soft: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --badge-bg: rgba(17, 24, 25, 0.78);
  --surface-glass: rgba(37, 47, 49, 0.9);
  --footer-bg: #111415;
  --max: 1180px;
  --font-stack: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans",
    "Helvetica Neue", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

html {
  scroll-behavior: smooth;
}

html.no-js {
  scroll-behavior: auto;
}

html.no-js .map-embed {
  display: block;
}

html.no-js .map-embed::after {
  content: none;
}

html.no-js [data-embed="map"] {
  display: none;
}

html.no-js [data-sticky-cta] {
  display: none;
}

body {
  margin: 0;
  font-family: var(--font-stack);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

.reviews-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin: 1.8rem 0 1.6rem;
}
a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  color: var(--accent-alt);
}
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.4rem;
}
.flex {
  display: flex;
}
.between {
  justify-content: space-between;
}
.v-center {
  align-items: center;
}
.center {
  text-align: center;
}
.grid.two {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.logo {
  font-size: 1.1rem;
  letter-spacing: 1px;
  font-weight: 600;
}
.site-header {
  position: sticky;
  top: 0;
  background: rgba(17, 24, 25, 0.85);
  backdrop-filter: blur(12px);
  z-index: 20;
  border-bottom: 1px solid var(--border-soft);
}
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.2rem;
}
.main-nav a {
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  font-weight: 500;
}
.main-nav a.btn.small {
  padding: 0.6rem 1.1rem;
  margin-left: 0.5rem;
}
.hero {
  background: var(--grad-hero);
  padding: clamp(3rem, 8vh, 6rem) 0 clamp(2.5rem, 6vh, 4rem);
  position: relative;
}
.hero-layout {
  display: grid;
  gap: clamp(2rem, 4vw, 3.6rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}
.hero-content {
  max-width: 720px;
}
.hero h2 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}
.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: rgba(244, 246, 248, 0.72);
  margin: 0 0 0.6rem;
}
.social-proof {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0 0 1.2rem;
}
.rating {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  color: var(--accent);
}
.rating-stars {
  letter-spacing: 0.18em;
  font-size: 1rem;
}
.rating strong {
  font-size: 0.95rem;
  color: var(--text);
}
.rating-source {
  font-size: 0.8rem;
  color: rgba(244, 246, 248, 0.65);
}
.hero p {
  margin: 1.2rem 0 1.25rem;
}
.hero-footnote {
  font-size: 0.7rem;
  color: rgba(244, 246, 248, 0.55);
  margin-top: 1.2rem;
}
.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  font-size: 0.85rem;
}
.quick-facts li {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.45rem 0.75rem;
  border-radius: 30px;
}
.hero-media {
  position: relative;
  background: var(--surface);
  padding: 0.85rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
}
.hero-media__frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  isolation: isolate;
}
.hero-media__frame picture,
.hero-media__frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: opacity 0.35s ease;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.35s ease;
  background: var(--surface-soft);
}
[data-hero-media][data-playing="true"] .hero-video {
  opacity: 1;
}
[data-hero-media][data-playing="true"] picture {
  opacity: 0;
}
.hero-media__toggle {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(17, 24, 25, 0.88);
  border: 1px solid var(--border-soft);
  color: var(--text);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.hero-media__toggle:hover {
  background: rgba(17, 24, 25, 0.95);
  border-color: var(--border-strong);
}
.hero-media__toggle [data-hero-toggle-pause] {
  display: none;
}
[data-hero-media][data-playing="true"]
  .hero-media__toggle
  [data-hero-toggle-play] {
  display: none;
}
[data-hero-media][data-playing="true"]
  .hero-media__toggle
  [data-hero-toggle-pause] {
  display: inline;
}
[data-hero-media][data-video-enabled="false"] .hero-media__toggle {
  display: none;
}
.hero-variants {
  display: grid;
  gap: 0.35rem;
  padding-bottom: 0.6rem;
}
.hero-variants__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(244, 246, 248, 0.6);
}
.hero-variants__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.hero-variant {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid transparent;
  color: var(--text);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
}
.hero-variant:hover {
  background: rgba(255, 255, 255, 0.14);
}
.hero-variant.is-active {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.18);
}
.hero-badges {
  position: absolute;
  bottom: 0.9rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--badge-bg);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  box-shadow: 0 12px 30px -14px rgba(0, 0, 0, 0.6);
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  max-width: min(360px, 90%);
}
.platform-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  min-width: 100px;
  border: 1px solid transparent;
}
.platform-badge[data-platform="booking"] {
  background: linear-gradient(135deg, #003580, #0071c2);
}
.platform-badge[data-platform="airbnb"] {
  background: #ffffff;
  border-color: rgba(255, 90, 95, 0.4);
}
.platform-badge__wordmark {
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}
.platform-badge__wordmark--booking {
  color: #ffffff;
  text-shadow: 0 0 16px rgba(0, 53, 128, 0.45);
}
.platform-badge__wordmark--airbnb {
  color: #ff5a5f;
}
.section {
  padding: 4rem 0;
  position: relative;
}
.section.alt {
  background: var(--bg-alt);
}
.section.about {
  background: var(--panel);
}
.section.gallery {
  background: var(--bg-alt);
}
.highlight {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-alt) 100%);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 600;
}
.section-head {
  max-width: 720px;
  margin-bottom: 2.4rem;
}
.section-lead {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.highlight-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.highlight-card {
  background: var(--surface);
  border-radius: 14px;
  padding: 1.6rem 1.4rem;
  box-shadow: 0 10px 24px -14px rgba(0, 0, 0, 0.55);
  display: grid;
  gap: 1rem;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.highlight-card:hover,
.highlight-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px -16px rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.12);
}
.highlight-card__header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.highlight-card__icon {
  width: 2.6rem;
  height: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.9rem;
  background: rgba(13, 136, 148, 0.14);
  color: var(--accent);
}
.highlight-card__icon svg {
  width: 1.6rem;
  height: 1.6rem;
}
.highlight-card h4 {
  margin: 0;
  font-size: 1.05rem;
}
.highlight-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.highlight-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--accent);
}
.highlight-card__cta:hover,
.highlight-card__cta:focus-visible {
  color: var(--accent-alt);
  outline: none;
}
.highlight-card__cta-icon svg {
  width: 1rem;
  height: 1rem;
}
.highlight-card:focus-within .highlight-card__cta {
  color: var(--accent-alt);
}
.platform-links {
  margin: 1.4rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.platform-links a {
  background: var(--surface);
  padding: 0.8rem 1rem;
  border-radius: 10px;
  font-weight: 500;
  transition: 0.25s;
}
.platform-links a:hover {
  background: var(--surface-elevated);
}
.media-block {
  align-self: start;
}
.gallery-thumb {
  margin: 0;
  background: var(--surface);
  padding: 0.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.gallery-thumb picture {
  display: block;
}
.gallery-thumb img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  display: block;
}
.gallery-grid {
  display: grid;
  gap: var(--gallery-gap, 1.1rem);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.gallery-carousel {
  --gallery-gap: 1.1rem;
  --gallery-slide-width: 100%;
  display: grid;
  gap: 1.2rem;
}
.gallery-carousel__viewport {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}
.gallery-carousel__controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.gallery-carousel__nav {
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.gallery-carousel__nav:hover,
.gallery-carousel__nav:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.32);
  outline: none;
}
.gallery-carousel__nav[disabled] {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}
.gallery-carousel__status {
  font-size: 0.78rem;
  color: var(--muted);
}
.gallery-carousel[data-carousel-ready="true"] .gallery-carousel__controls {
  display: flex;
}
.gallery-carousel[data-carousel-ready="true"] .gallery-carousel__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery-carousel[data-carousel-ready="true"]
  .gallery-carousel__viewport::-webkit-scrollbar {
  display: none;
}
.gallery-carousel[data-carousel-ready="true"] .gallery-grid {
  display: flex;
  gap: var(--gallery-gap);
  min-width: 100%;
  align-items: flex-start;
}
.gallery-carousel[data-carousel-ready="true"] .gallery-card {
  flex: 0 0 var(--gallery-slide-width);
  scroll-snap-align: center;
}
.gallery-carousel[data-has-overflow="false"] .gallery-carousel__controls {
  display: none;
}
.gallery-card {
  background: var(--surface);
  border-radius: 12px;
  box-shadow: 0 5px 18px -10px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px -12px rgba(0, 0, 0, 0.6);
}
.gallery-card picture {
  display: block;
}
.gallery-card img {
  width: 100%;
  height: auto;
  display: block;
}
.gallery-thumb figcaption {
  font-size: 0.7rem;
  color: var(--muted);
  margin: 0.5rem 0 0;
}
.amenities h3,
.location h3,
.reviews h3 {
  margin-top: 0;
}
.amenity-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  margin-top: 2rem;
}
.amenity-grid__loader {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}
.amenity {
  background: var(--surface);
  padding: 1.1rem 1.15rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 5px 14px -6px rgba(0, 0, 0, 0.35);
  display: grid;
  gap: 0.75rem;
  border: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.amenity:hover,
.amenity:focus-within {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 24px -12px rgba(0, 0, 0, 0.5);
  transform: translateY(-4px);
}
.amenity__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.6rem;
}
.amenity__title {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.amenity h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}
.amenity p {
  font-size: 0.82rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}
.amenity-policy {
  margin-top: 0.15rem;
  padding-top: 0.55rem;
  border-top: 1px solid var(--border-soft);
  font-size: 0.72rem;
  color: rgba(245, 247, 247, 0.7);
}
.amenity-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
}
.amenity-badge--signature,
.amenity-badge--premium {
  background: rgba(184, 160, 48, 0.24);
  color: #f5d98a;
}
.amenity-badge--included {
  background: rgba(13, 136, 148, 0.2);
  color: var(--accent);
}
.amenity-badge--upgraded {
  background: rgba(19, 79, 87, 0.25);
  color: #6dd2df;
}
.amenity-badge--refreshed {
  background: rgba(102, 204, 153, 0.2);
  color: #b3ffd8;
}
.amenity-badge--limited {
  background: rgba(255, 94, 91, 0.16);
  color: #ff8b88;
}
.amenity-badge--policy {
  background: rgba(156, 196, 90, 0.18);
  color: #d9f7a8;
}
.amenity-badge--new {
  background: rgba(111, 91, 255, 0.18);
  color: #beb8ff;
}
.amenity-info {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: help;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
  position: relative;
  flex-shrink: 0;
}
.amenity-info span {
  pointer-events: none;
  line-height: 1;
}
.amenity-info:hover,
.amenity-info:focus-visible {
  background: rgba(13, 136, 148, 0.2);
  border-color: rgba(13, 136, 148, 0.45);
  color: var(--text);
  outline: none;
}
.amenity-info::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 0.6rem);
  right: 0;
  padding: 0.65rem 0.75rem;
  border-radius: 0.6rem;
  background: var(--surface-elevated);
  color: var(--text);
  font-size: 0.75rem;
  line-height: 1.35;
  max-width: min(16rem, 70vw);
  box-shadow: 0 16px 34px -18px rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  text-align: left;
  z-index: 3;
}
.amenity-info:hover::after,
.amenity-info:focus-visible::after {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (hover: none) {
  .amenity-info::after {
    display: none;
  }
}
.nearby {
  list-style: disc;
  padding-left: 1.3rem;
  margin: 1rem 0 0;
}
.nearby li {
  margin: 0.3rem 0;
  font-size: 0.85rem;
}
.map-wrap {
  background: var(--surface);
  border-radius: 14px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}
.map-embed {
  position: relative;
  background: var(--surface-soft);
  height: 240px;
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.map-embed::after {
  content: "Interactive map loads on scroll";
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.3px;
  text-align: center;
  padding: 0 1.6rem;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(17, 24, 25, 0.72);
  transition: opacity 0.3s ease;
}
.map-embed[data-loaded="true"]::after {
  opacity: 0;
  pointer-events: none;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.map-embed[data-loaded="true"] iframe {
  opacity: 1;
}
.reviews {
  background: var(--surface-soft);
}

.reviews-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.6rem;
  align-items: flex-start;
}

.reviews-head__meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  min-width: 220px;
}

.aggregate-rating {
  background: var(--surface);
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  box-shadow: 0 8px 26px -16px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}

.aggregate-rating__value {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.aggregate-rating__value strong {
  font-size: 1.8rem;
  line-height: 1;
}

.aggregate-rating__value span {
  color: var(--muted);
  font-size: 0.85rem;
}

.aggregate-rating__count {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.review-sources {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  flex: 1 1 auto;
}

.review-sources li {
  margin: 0;
  padding: 0;
}

.review-source {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: var(--surface);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--muted);
  transition: 0.3s ease;
}

.review-source:hover,
.review-source:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  outline: none;
  color: var(--text);
}

.review-source[aria-pressed="true"] {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.2);
  color: var(--text);
}

.review-source[aria-pressed="true"]:hover,
.review-source[aria-pressed="true"]:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text);
}

.review-actions {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.review-control {
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s ease;
}

.review-control:hover,
.review-control:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  outline: none;
}

.review-slider {
  position: relative;
  min-height: 220px;
}

.review-card {
  background: var(--surface);
  border-left: 4px solid var(--accent);
  border-radius: 14px;
  padding: 1.4rem 1.4rem 1.2rem;
  box-shadow: 0 10px 24px -18px rgba(0, 0, 0, 0.55);
  display: block;
  margin: 0;
}

.review-card + .review-card {
  margin-top: 1.2rem;
}

.review-card__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.9rem;
}

.review-card__source {
  font-weight: 600;
  color: var(--text);
}

.review-card__quote {
  font-size: 1rem;
  margin: 0 0 1rem;
  line-height: 1.6;
}

.review-card__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
}

.review-card__name {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

.review-card__keywords {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.review-card__keywords li {
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.72rem;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.js .review-slider {
  min-height: 240px;
}

.js .review-card {
  display: none;
  margin-top: 0;
}

.js .review-card.is-active {
  display: grid;
  gap: 0.8rem;
}
.booking-cta {
  background: radial-gradient(
    circle at 28% 20%,
    var(--accent-deep) 0%,
    var(--bg) 100%
  );
}
.booking-layout {
  display: grid;
  gap: clamp(1.8rem, 4vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}
.booking-copy h3 {
  margin-top: 0;
}
.booking-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent-alt) 0%, var(--accent) 100%);
  color: #111516;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1.1rem;
}
.booking-perks {
  margin: 1.4rem 0;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.booking-perks li {
  margin: 0.3rem 0;
}
.booking-options {
  display: grid;
  gap: 1.1rem;
}
.booking-card {
  background: var(--surface-glass);
  border-radius: 16px;
  padding: 1.6rem 1.4rem 1.4rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.booking-card h4 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}
.booking-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}
.booking-card__perks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.booking-card__perks li {
  position: relative;
  padding-left: 1.1rem;
}
.booking-card__perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}
.booking-card .btn {
  width: 100%;
  margin-top: auto;
}
.inline-link {
  color: var(--accent);
  text-decoration: underline;
}
.inline-link:hover {
  color: var(--accent-alt);
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.9rem;
}
.btn {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  padding: 0.9rem 1.25rem;
  border-radius: 50px;
  border: none;
  position: relative;
  transition: 0.3s;
}
.btn.primary {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-alt) 100%);
  color: #1a222b;
}
.btn.primary:hover {
  filter: brightness(1.08);
}
.btn.ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}
.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}
.btn.outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.btn.outline:hover {
  background: var(--accent);
  color: #1a222b;
}
.btn.phone {
  background: var(--accent-alt);
  color: #101617;
}
.btn.phone:hover {
  filter: brightness(1.06);
}
.btn.small {
  font-size: 0.75rem;
  padding: 0.55rem 0.85rem;
}
.note,
.map-note,
.secondary {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 1rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  padding: 2.5rem 0 2.8rem;
}
.site-footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--border-soft);
  font-size: 0.8rem;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}
.footer-links a {
  color: var(--muted);
  font-size: 0.75rem;
}
.footer-links a:hover {
  color: var(--accent);
}
.legal {
  font-size: 0.65rem;
  color: var(--muted);
}
.tiny {
  font-size: 0.6rem;
  line-height: 1.3;
  margin: 0.3rem 0;
}
.sticky-sentinel {
  display: block;
  width: 100%;
  height: 1px;
}
.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  --sticky-transform-hidden: translate(-50%, calc(100% + 2rem));
  --sticky-transform-active: translate(-50%, 0);
  transform: var(--sticky-transform-hidden);
  background: var(--surface-elevated);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  box-shadow: 0 22px 48px -18px rgba(0, 0, 0, 0.65);
  padding: 1rem 1.15rem 1.1rem;
  width: min(92vw, 480px);
  display: grid;
  gap: 0.65rem;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.sticky-cta[data-active="true"] {
  transform: var(--sticky-transform-active);
  opacity: 1;
  pointer-events: auto;
}
.sticky-cta__close {
  justify-self: end;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}
.sticky-cta__close:hover,
.sticky-cta__close:focus-visible {
  color: var(--text);
}
.sticky-cta__copy {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}
.sticky-cta__note {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}
.sticky-cta__actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.6rem;
}
.sticky-cta .btn {
  padding: 0.75rem 1rem;
}
.host-bio {
  background: var(--panel);
}
.host-bio__layout {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}
.host-bio__portrait {
  position: relative;
  align-self: start;
}
.host-portrait {
  margin: 0;
  background: var(--surface);
  padding: 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}
.host-portrait picture {
  display: block;
  border-radius: 12px;
  overflow: hidden;
}
.host-portrait img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.host-portrait figcaption {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
  justify-content: center;
}
.host-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid transparent;
}
.host-badge--superhost {
  background: linear-gradient(135deg, var(--accent-alt) 0%, var(--accent) 100%);
  color: #111516;
  box-shadow: 0 4px 14px -6px rgba(184, 160, 48, 0.4);
}
.host-badge--verified {
  background: rgba(13, 136, 148, 0.2);
  color: var(--accent);
  border-color: rgba(13, 136, 148, 0.35);
}
.host-bio__content {
  display: grid;
  gap: 1.6rem;
}
.host-story {
  display: grid;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.host-story p {
  margin: 0;
}
.host-story strong,
.host-story em {
  color: var(--text);
}
.host-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.host-metric {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.host-metric__icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.9rem;
  background: rgba(13, 136, 148, 0.14);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.host-metric__icon svg {
  width: 1.4rem;
  height: 1.4rem;
}
.host-metric__content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.host-metric__content strong {
  font-size: 1.05rem;
  line-height: 1.2;
  color: var(--text);
}
.host-metric__content span {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.host-team {
  background: var(--surface);
  border-left: 3px solid var(--accent-alt);
  border-radius: 10px;
  padding: 1.1rem 1.2rem;
}
.host-team__intro {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}
.host-team__intro strong {
  color: var(--text);
  font-weight: 600;
}
.host-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.host-footnote {
  font-size: 0.72rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
}
.reveal-ready {
  opacity: 0;
  transform: translateY(14px);
}
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
@media (max-width: 640px) {
  .site-header .container {
    flex-direction: column;
    gap: 0.8rem;
    padding: 0.9rem 1rem;
  }
  .logo {
    font-size: 1rem;
  }
  .main-nav {
    width: 100%;
  }
  .main-nav ul {
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .main-nav a {
    padding: 0.65rem 0.85rem;
    font-size: 0.8rem;
  }
  .hero {
    padding: 3.2rem 0 3.6rem;
  }
  .hero-layout {
    grid-template-columns: 1fr;
  }
  .hero-media {
    order: -1;
  }
  .cta-row {
    flex-direction: column;
  }
  .gallery-carousel {
    --gallery-gap: 0.8rem;
  }
  .booking-layout {
    grid-template-columns: 1fr;
  }
  .booking-options {
    order: -1;
  }
  .booking-copy {
    order: 0;
  }
  .booking-card {
    padding: 1.4rem 1.2rem 1.2rem;
  }
  .reviews-head {
    flex-direction: column;
  }
  .reviews-head__meta {
    align-items: flex-start;
  }
  .review-actions {
    width: 100%;
    justify-content: center;
  }
  .review-sources {
    width: 100%;
    justify-content: center;
  }
  .review-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .sticky-cta {
    padding: 0.8rem 0.9rem 0.85rem;
    gap: 0.5rem;
    width: min(94vw, 480px);
    bottom: 0.75rem;
  }
  .sticky-cta__copy {
    font-size: 0.85rem;
  }
  .sticky-cta__note {
    font-size: 0.7rem;
    line-height: 1.3;
  }
  .sticky-cta__actions {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .sticky-cta .btn {
    padding: 0.6rem 0.85rem;
    font-size: 0.8rem;
  }
  .host-bio__layout {
    grid-template-columns: 1fr;
  }
  .host-bio__portrait {
    max-width: 320px;
    margin: 0 auto;
  }
  .host-metrics {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .host-cta {
    flex-direction: column;
  }
  .host-cta .btn {
    width: 100%;
  }
}
/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox--active {
  opacity: 1;
  visibility: visible;
}

.lightbox__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.lightbox__image {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.lightbox__caption {
  color: var(--text);
  font-size: 0.9rem;
  text-align: center;
  max-width: 600px;
  padding: 0 1rem;
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

.lightbox__close:hover,
.lightbox__close:focus {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
  outline: none;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--text);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

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

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

.lightbox__nav:hover,
.lightbox__nav:focus {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-50%) scale(1.1);
  outline: none;
}

@media (max-width: 768px) {
  .lightbox__nav {
    width: 44px;
    height: 44px;
    font-size: 2rem;
  }

  .lightbox__close {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .lightbox__image {
    max-height: 70vh;
  }

  .lightbox__caption {
    font-size: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  body {
    transition: none;
  }
  .btn {
    transition: none;
  }
  .reveal,
  .reveal-ready {
    transition: none;
    transform: none;
    opacity: 1;
  }
  .sticky-cta {
    transition: none;
  }
  .lightbox {
    transition: none;
  }
}
@media (min-width: 900px) {
  .sticky-cta {
    left: auto;
    right: 2rem;
    bottom: 2rem;
    width: min(420px, 26vw);
    --sticky-transform-hidden: translateY(calc(100% + 2rem));
    --sticky-transform-active: translateY(0);
  }
}
