:root {
  --bg: #f6f1ea;
  --bg-soft: #f1e8dc;
  --bg-warm: #ede4d7;
  --panel: rgba(255,255,255,0.72);
  --text: #201c18;
  --muted: #6f665e;
  --line: rgba(44, 36, 29, 0.14);
  --dark: #12100e;
  --dark-soft: #1e1a17;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(23, 18, 13, 0.10);
  --max: 1200px;
  --space: clamp(18px, 2.2vw, 32px);
  --glass-light-bg: rgba(255,255,255,0.10);
  --glass-light-border: rgba(255,255,255,0.18);
  --glass-light-text: rgba(255,255,255,0.92);
  --glass-light-shadow: 0 10px 24px rgba(0,0,0,0.08);
  --header-bar-bg: linear-gradient(180deg, rgba(69, 57, 51, 0.88) 0%, rgba(52, 42, 37, 0.82) 100%);
  --header-bar-line: rgba(214, 190, 167, 0.18);
  --header-bar-shadow: 0 14px 28px rgba(9, 7, 6, 0.18);
}

/* Typography update: main site copy now uses Manrope if available, while the menu and brand keep their existing fonts. */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img, iframe { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}
.kicker {
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
}
.btn {
  --btn-text: var(--text);
  --btn-frame: rgba(32,28,24,0.22);
  --btn-fill: rgba(32,28,24,0.03);
  --btn-glow: 0 14px 32px rgba(23,18,13,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 28px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none;
  color: var(--btn-text);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  cursor: pointer;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), color 900ms cubic-bezier(0.22, 1, 0.36, 1), letter-spacing 900ms cubic-bezier(0.22, 1, 0.36, 1);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--btn-frame);
  background: var(--btn-fill);
  opacity: 0;
  transform: scale(0.975);
  filter: blur(8px);
  transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1), transform 1100ms cubic-bezier(0.22, 1, 0.36, 1), filter 1100ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 1100ms cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: var(--btn-glow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
}
.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  letter-spacing: 0.19em;
}
.btn:hover::before,
.btn:focus-visible::before {
  opacity: 1;
  transform: scale(1);
  filter: blur(0px);
}
.btn-dark {
  background: transparent;
  color: var(--btn-text);
  border-color: transparent;
}
.btn-ghost {
  background: transparent;
  color: var(--btn-text);
  border-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.site-header .btn,
.hero .btn,
.gallery-hero .btn,
.booking-benefits .btn,
.location-feature .btn,
.form-wrap .btn,
.location-map-band .btn {
  --btn-text: rgba(255,255,255,0.94);
  --btn-frame: rgba(244,231,214,0.22);
  --btn-fill: rgba(227,199,163,0.10);
  --btn-glow: 0 18px 34px rgba(0,0,0,0.14);
}

.site-header .inner > .btn.btn-ghost {
  position: relative;
}
.site-header .inner > .btn.btn-ghost::before {
  opacity: 1;
  transform: scale(1);
  filter: blur(0px);
}
.site-header .inner > .btn.btn-ghost:hover::before,
.site-header .inner > .btn.btn-ghost:focus-visible::before {
  opacity: 1;
  transform: scale(1);
  filter: blur(0px);
  box-shadow: 0 18px 34px rgba(0,0,0,0.12);
}
.site-header .inner > .btn.btn-ghost:hover,
.site-header .inner > .btn.btn-ghost:focus-visible {
  color: rgba(255,255,255,0.98);
}

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 30;
  padding: 26px 0;
  transition: padding 720ms cubic-bezier(0.22, 1, 0.36, 1);
}
.site-header.fixed {
  position: sticky;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header.hero-header {
  position: fixed;
  inset: 0 0 auto 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.site-header.hero-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--header-bar-bg);
  border-bottom: 1px solid var(--header-bar-line);
  box-shadow: var(--header-bar-shadow);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  opacity: 0;
  transform: translate3d(0, -10px, 0);
  transition: opacity 720ms cubic-bezier(0.22, 1, 0.36, 1), transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 0;
}
.site-header.hero-header.has-scroll-bar {
  padding: 10px 0;
}
.site-header.hero-header.has-scroll-bar::before {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.site-header .inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 1;
}
.brand small,
.brand strong {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.brand.dark small,
.brand.dark strong,
.site-header.fixed .brand small,
.site-header.fixed .brand strong,
.site-header.fixed .nav a {
  color: rgba(255,255,255,0.9);
}
.brand small {
  font-size: 11px;
  letter-spacing: 0.34em;
  opacity: .76;
  margin-bottom: 6px;
}
.brand strong {
  font-size: 17px;
  letter-spacing: 0.16em;
  font-weight: 600;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  text-decoration: none;
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 900ms cubic-bezier(0.22, 1, 0.36, 1), filter 900ms cubic-bezier(0.22, 1, 0.36, 1);
}
.brand-link:hover,
.brand-link:focus-visible {
  opacity: 0.98;
  transform: translateY(-1px);
  filter: brightness(1.02);
  background: transparent;
  border-color: transparent;
}
.brand-link:focus-visible {
  outline: none;
}

.site-header .brand-link,
.site-header .inner > .btn.btn-ghost {
  will-change: opacity, transform, filter;
}

.site-header.scrolling-ui .brand-link,
.site-header.scrolling-ui .inner > .btn.btn-ghost {
  opacity: 0;
  transform: translate3d(0, -16px, 0) scale(0.965);
  filter: blur(16px);
  pointer-events: none;
}

.site-header.scrolling-ui .inner > .btn.btn-ghost::before {
  opacity: 0;
  transform: scale(0.96);
  filter: blur(18px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}
.nav {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.88);
}
.nav a {
  --nav-frame: rgba(244,231,214,0.22);
  --nav-fill: rgba(227,199,163,0.10);
  --nav-glow: 0 18px 34px rgba(0,0,0,0.14);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  isolation: isolate;
  overflow: hidden;
  color: rgba(255,255,255,0.92);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), color 900ms cubic-bezier(0.22, 1, 0.36, 1), letter-spacing 900ms cubic-bezier(0.22, 1, 0.36, 1), opacity 900ms cubic-bezier(0.22, 1, 0.36, 1);
}
.nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--nav-frame);
  background: var(--nav-fill);
  opacity: 0;
  transform: scale(0.975);
  filter: blur(8px);
  transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1), transform 1100ms cubic-bezier(0.22, 1, 0.36, 1), filter 1100ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 1100ms cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: var(--nav-glow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
}
.nav a:hover,
.nav a:focus-visible {
  color: #fff;
  transform: translateY(-1px);
  letter-spacing: 0.02em;
}
.nav a:hover::before,
.nav a:focus-visible::before {
  opacity: 1;
  transform: scale(1);
  filter: blur(0px);
}
.menu-toggle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  z-index: 3;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  border-radius: 999px;
  background: rgba(12,10,8,0.92);
  box-shadow: none;
  transition: transform 1100ms cubic-bezier(0.22, 1, 0.36, 1), opacity 900ms cubic-bezier(0.22, 1, 0.36, 1), filter 1100ms cubic-bezier(0.22, 1, 0.36, 1), width 1100ms cubic-bezier(0.22, 1, 0.36, 1), background-color 720ms cubic-bezier(0.22, 1, 0.36, 1);
}
.site-header.hero-header.has-scroll-bar .menu-toggle span {
  background: rgba(248, 241, 233, 0.92);
}
.menu-toggle:hover span,
.menu-toggle:focus-visible span,
.site-header.menu-open .menu-toggle span {
  filter: blur(0px);
  width: 28px;
}
.menu-toggle:hover span:first-child,
.menu-toggle:focus-visible span:first-child,
.site-header.menu-open .menu-toggle span:first-child {
  transform: translateY(-1px);
}
.menu-toggle:hover span:last-child,
.menu-toggle:focus-visible span:last-child,
.site-header.menu-open .menu-toggle span:last-child {
  transform: translateY(1px);
}
.menu-toggle:focus-visible {
  outline: none;
}
.nav-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 10px));
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 950ms cubic-bezier(0.22, 1, 0.36, 1), transform 1100ms cubic-bezier(0.22, 1, 0.36, 1), filter 1100ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0ms linear 950ms;
  filter: blur(10px);
  z-index: 2;
}
.site-header.menu-open .nav-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, -50%);
  filter: blur(0px);
  transition: opacity 950ms cubic-bezier(0.22, 1, 0.36, 1), transform 1100ms cubic-bezier(0.22, 1, 0.36, 1), filter 1100ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0ms linear 0ms;
}
.nav-panel a {
  min-height: 0;
  padding: 0;
  justify-content: center;
}
.site-header.menu-open .nav-panel a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 12px 18px 11px;
  border-radius: 0;
  overflow: hidden;
  background: rgba(38, 30, 24, 0.84);
  border: 1px solid rgba(244,231,214,0.34);
  box-shadow: 0 22px 44px rgba(0,0,0,0.26);
  backdrop-filter: blur(60px) saturate(240%) brightness(0.92);
  -webkit-backdrop-filter: blur(60px) saturate(240%) brightness(0.92);
}
.site-header.menu-open .nav-panel a::before {
  opacity: 0;
  transform: scale(1);
  filter: blur(0px);
  content: none;
}
.site-header.menu-open .nav-panel a:hover,
.site-header.menu-open .nav-panel a:focus-visible {
  background: rgba(42, 33, 27, 0.90);
  border-color: rgba(244,231,214,0.42);
  box-shadow: 0 26px 52px rgba(0,0,0,0.30);
}
.site-header.menu-open .nav-panel a:hover::before,
.site-header.menu-open .nav-panel a:focus-visible::before {
  content: none;
  opacity: 0;
  transform: scale(1.03);
  filter: blur(0px);
}
.site-header.menu-open.has-scroll-bar .nav-panel {
  gap: 22px;
}
.site-header.menu-open.has-scroll-bar .nav-panel a {
  padding: 8px 4px;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.site-header.menu-open.has-scroll-bar .nav-panel a:hover,
.site-header.menu-open.has-scroll-bar .nav-panel a:focus-visible {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  color: rgba(255,255,255,0.98);
}
.site-header.menu-open .menu-toggle {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
  pointer-events: none;
}

.hero {
  position: relative;
  color: var(--white);
  background: #15120f;
  min-height: 86vh;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
}
.hero-media iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.77777778vh;
  min-height: 100vh;
  max-width: none;
  transform: translate(-50%, -50%) scale(1.16);
  transform-origin: center center;
  border: 0;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,16,14,0.18) 0%, rgba(18,16,14,0.42) 46%, rgba(18,16,14,0.70) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  padding-top: 112px;
  padding-bottom: 40px;
}
.hero-pill {
  display: inline-flex;
  padding: 12px 16px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: var(--glass-light-bg);
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 11px;
  color: rgba(255,255,255,0.86);
}

.hero-pill--plain {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
h1,h2,h3,h4,p{margin:0;}
.hero-title {
  font-size: clamp(42px, 6.5vw, 90px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 600;
  max-width: 940px;
}
.hero-subtitle {
  font-size: clamp(21px, 2.3vw, 32px);
  color: rgba(255,255,255,0.88);
  margin-top: 12px;
}
.hero-text {
  max-width: 760px;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.8;
  color: rgba(255,255,255,0.84);
  margin-top: 22px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
section { padding: 84px 0; }
.section-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}
.photo-card {
  display: block;
  width: 100%;
  position: relative;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: var(--shadow);
}
.rotating-photo {
  transition: transform .28s ease, box-shadow .28s ease;
  overflow: hidden;
  isolation: isolate;
}
.rotating-photo-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.03);
  filter: blur(6px) saturate(0.92);
  transition: opacity 1.65s ease, transform 2.6s ease, filter 1.65s ease;
  z-index: 0;
  will-change: opacity, transform, filter;
  pointer-events: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}
.rotating-photo-layer.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1.085);
  filter: blur(0px) saturate(1.02);
  animation: dreamyPan 8.5s ease-in-out infinite alternate;
}
.rotating-photo-layer.exiting {
  opacity: 0;
  visibility: visible;
  transform: scale(1.12);
  filter: blur(10px) saturate(0.9);
}
@keyframes dreamyPan {
  0% { background-position: var(--bg-pos-start, center center); }
  50% { background-position: var(--bg-pos-mid, center 46%); }
  100% { background-position: var(--bg-pos-end, center 54%); }
}


.photo-card-static-image {
  background: #111 !important;
  overflow: hidden;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.photo-card-static-image .photo-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.photo-card.tall { min-height: 520px; }
.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.02), rgba(10,10,10,0.16));
  z-index: 1;
  pointer-events: none;
}
.photo-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  display: inline-flex;
  padding: 10px 14px;
  background: var(--glass-light-bg);
  border: 1px solid var(--glass-light-border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.text-block h2, .section-head h2 {
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-top: 12px;
}
.text-block p, .section-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
  margin-top: 22px;
}
.muted-panel {
  background: var(--bg-soft);
}

.booking-benefits {
  position: relative;
  background: linear-gradient(180deg, rgba(18,16,14,0.42), rgba(18,16,14,0.36)), url("images/living-room-sculpture-detail.jpg") center center / cover no-repeat;
}
.booking-benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,16,14,0.06), rgba(18,16,14,0.16));
}
.booking-benefits .section-head {
  position: relative;
  z-index: 1;
}
.booking-benefits .kicker,
.booking-benefits .section-head p,
.booking-benefits .reason p {
  color: rgba(255,255,255,0.88);
  text-shadow: 0 2px 12px rgba(0,0,0,0.28);
}
.booking-benefits .section-head h2,
.booking-benefits .reason h3 {
  color: #fff;
  text-shadow: 0 3px 18px rgba(0,0,0,0.34);
}
.booking-benefits .reason {
  border-top: 0;
  padding-top: 0;
}
.booking-benefits .btn {
  --btn-text: rgba(255,255,255,0.94);
  --btn-frame: rgba(244,231,214,0.22);
  --btn-fill: rgba(227,199,163,0.10);
  --btn-glow: 0 18px 34px rgba(0,0,0,0.14);
}
.booking-benefits .btn:hover,
.booking-benefits .btn:focus-visible {
  color: #fff;
}
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 42px;
}
.reason {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.reason h3 {
  font-size: 26px;
  margin-bottom: 10px;
}
.reason p { color: var(--muted); }
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px 24px;
  margin-top: 24px;
}
.feature-list div {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
}
.feature-list div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--text);
}
.cta-band {
  background: var(--bg-warm);
}
.location-feature {
  position: relative;
  background: linear-gradient(90deg, rgba(18,16,14,0.62) 0%, rgba(18,16,14,0.36) 42%, rgba(18,16,14,0.18) 100%), url("images/ideal-location.jpg") center center / cover no-repeat;
  color: #fff;
}
.location-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,16,14,0.10), rgba(18,16,14,0.18));
}
.location-feature .container {
  position: relative;
  z-index: 1;
}
.location-feature .section-split {
  grid-template-columns: 1fr;
}
.location-feature .text-block {
  max-width: 760px;
}
.location-feature .kicker,
.location-feature .text-block p {
  color: rgba(255,255,255,0.86);
  text-shadow: 0 2px 12px rgba(0,0,0,0.24);
}
.location-feature .text-block h2 {
  color: #fff;
  text-shadow: 0 3px 18px rgba(0,0,0,0.30);
}
.location-feature .btn,
.location-feature .btn.btn-dark {
  --btn-text: rgba(255,255,255,0.94);
  --btn-frame: rgba(244,231,214,0.22);
  --btn-fill: rgba(227,199,163,0.10);
  --btn-glow: 0 18px 34px rgba(0,0,0,0.14);
}
.location-feature .btn:hover,
.location-feature .btn.btn-dark:hover,
.location-feature .btn:focus-visible,
.location-feature .btn.btn-dark:focus-visible {
  color: #fff;
}
.form-wrap {
  position: relative;
  background: linear-gradient(180deg, rgba(18,16,14,0.56), rgba(18,16,14,0.50)), url("images/tv-room-boat-detail.jpg") center center / cover no-repeat;
  color: var(--white);
}
.form-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,16,14,0.10), rgba(18,16,14,0.18));
}
.form-wrap .container {
  position: relative;
  z-index: 1;
}
.form-wrap .section-head h2 {
  color: #fff;
  text-shadow: 0 3px 18px rgba(0,0,0,0.30);
}
.form-wrap .section-head p,
.form-wrap .kicker {
  color: rgba(255,255,255,0.86);
  text-shadow: 0 2px 12px rgba(0,0,0,0.24);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px 28px;
  margin-top: 34px;
}
.input,
.textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  background: transparent;
  color: #fff;
  padding: 14px 0;
  outline: 0;
}
.textarea {
  min-height: 120px;
  resize: vertical;
}
.input::placeholder,
.textarea::placeholder { color: rgba(255,255,255,0.45); }
.footer {
  background: var(--bg-soft);
  padding: 60px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.9fr;
  gap: 28px;
}
.footer h4 {
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  margin-bottom: 18px;
}
.footer p, .footer li, .footer a {
  color: var(--muted);
  line-height: 1.9;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.small-note {
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted);
}
.gallery-hero-cats {
  align-items: center;
}
.gallery-hero-cats .btn {
  min-height: 48px;
  padding: 0 22px;
}

.gallery-hero {
  background:
    linear-gradient(180deg, rgba(18,16,14,0.78), rgba(18,16,14,0.64)),
    radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 22%),
    url('images/pool-view-2.jpg') center/cover no-repeat;
  color: #fff;
  padding: 150px 0 64px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}
.gallery-category-section .container,
.gallery-nav-wrap .container,
.gallery-hero .container {
  width: min(calc(100% - 24px), 1440px);
}
.gallery-tile {
  position: relative;
  overflow: hidden;
  background: #111;
  cursor: pointer;
  box-shadow: none;
  margin: 0;
  aspect-ratio: 4 / 3;
}
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease, filter .35s ease;
}
.gallery-tile:hover img {
  transform: scale(1.025);
  filter: brightness(0.92);
}
.gallery-caption {
  display: none;
}

.gallery-caption strong {
  display: block;
  font-size: 10px;
  font-weight: 300 !important;
  letter-spacing: 0.08em;
  text-transform: none;
  margin: 0;
  opacity: 0.58;
}
.gallery-caption span {
  display: none;
}

.gallery-video-band {
  padding-top: 28px;
}
.gallery-video-card {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 42px;
  background: url("images/living-room-fireplace-angle.jpg") center center / cover no-repeat;
  color: #fff;
  cursor: pointer;
  overflow: hidden;
}
.gallery-video-card::before,
.gallery-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.gallery-video-card::before {
  background:
    linear-gradient(180deg, rgba(18,16,14,0.18), rgba(18,16,14,0.52)),
    linear-gradient(90deg, rgba(18,16,14,0.10), rgba(18,16,14,0.20));
  opacity: 1;
  transition: opacity 1200ms cubic-bezier(0.22, 1, 0.36, 1), transform 1200ms cubic-bezier(0.22, 1, 0.36, 1);
  transform: scale(1);
  z-index: 0;
}
.gallery-video-card::after {
  background: radial-gradient(circle at center, rgba(255,255,255,0.10), transparent 55%);
  opacity: 0.35;
  transition: opacity 1200ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}
.gallery-video-card:focus-visible {
  outline: 2px solid rgba(255,255,255,0.7);
  outline-offset: 4px;
}

.gallery-video-preview {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1400ms cubic-bezier(0.22, 1, 0.36, 1), transform 1600ms cubic-bezier(0.22, 1, 0.36, 1), filter 1600ms cubic-bezier(0.22, 1, 0.36, 1);
  transform: scale(1.075);
  filter: blur(10px) brightness(0.86) saturate(0.92);
  pointer-events: none;
  z-index: 0;
}
.gallery-video-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,16,14,0.08), rgba(18,16,14,0.30));
  opacity: 1;
  transition: opacity 1400ms cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-video-preview iframe {
  position: absolute;
  border: 0;
  max-width: none;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transform: scale(1.1);
  transform-origin: center center;
}
.gallery-video-card.is-previewing.preview-ready .gallery-video-preview,
.gallery-video-card:hover.preview-ready .gallery-video-preview,
.gallery-video-card:focus-within.preview-ready .gallery-video-preview {
  opacity: 1;
  transform: scale(1);
  filter: blur(0px) brightness(1) saturate(1);
}
.gallery-video-card.is-previewing.preview-ready .gallery-video-preview::after,
.gallery-video-card:hover.preview-ready .gallery-video-preview::after,
.gallery-video-card:focus-within.preview-ready .gallery-video-preview::after {
  opacity: 0.72;
}
.gallery-video-card.is-previewing.preview-ready::before,
.gallery-video-card:hover.preview-ready::before,
.gallery-video-card:focus-within.preview-ready::before {
  opacity: 0.42;
  transform: scale(1.03);
}
.gallery-video-card.is-previewing.preview-ready::after,
.gallery-video-card:hover.preview-ready::after,
.gallery-video-card:focus-within.preview-ready::after {
  opacity: 0.18;
}
.gallery-video-card.is-previewing .gallery-video-play,
.gallery-video-card:hover .gallery-video-play,
.gallery-video-card:focus-within .gallery-video-play {
  color: #fff;
}
.gallery-video-card.is-previewing .gallery-video-content,
.gallery-video-card:hover .gallery-video-content,
.gallery-video-card:focus-within .gallery-video-content,
.gallery-video-card.is-previewing .gallery-video-play,
.gallery-video-card:hover .gallery-video-play,
.gallery-video-card:focus-within .gallery-video-play {
  transform: translateY(-2px);
}
.gallery-video-content {
  position: relative;
  z-index: 1;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), opacity 900ms cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-video-play {
  --btn-text: rgba(255,255,255,0.94);
  --btn-frame: rgba(244,231,214,0.22);
  --btn-fill: rgba(227,199,163,0.10);
  --btn-glow: 0 18px 34px rgba(0,0,0,0.14);
  position: relative;
  z-index: 1;
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  isolation: isolate;
  overflow: hidden;
  background: transparent;
  border: 1px solid transparent;
  box-shadow: none;
  color: var(--btn-text);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: 12px;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), color 900ms cubic-bezier(0.22, 1, 0.36, 1), letter-spacing 900ms cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-video-play::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--btn-frame);
  background: var(--btn-fill);
  opacity: 0;
  transform: scale(0.975);
  filter: blur(8px);
  transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1), transform 1100ms cubic-bezier(0.22, 1, 0.36, 1), filter 1100ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 1100ms cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: var(--btn-glow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
}
.gallery-video-card.is-previewing .gallery-video-play::before,
.gallery-video-card:hover .gallery-video-play::before,
.gallery-video-card:focus-within .gallery-video-play::before,
.gallery-video-play:hover::before,
.gallery-video-play:focus-visible::before {
  opacity: 1;
  transform: scale(1);
  filter: blur(0px);
}
.gallery-video-card.is-previewing .gallery-video-play,
.gallery-video-card:hover .gallery-video-play,
.gallery-video-card:focus-within .gallery-video-play,
.gallery-video-play:hover,
.gallery-video-play:focus-visible {
  color: #fff;
  letter-spacing: 0.20em;
}
.gallery-video-content h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.98;
  margin-top: 12px;
  color: #fff;
}
.gallery-video-content p {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255,255,255,0.84);
}
.gallery-video-play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  font-size: 18px;
  padding-left: 3px;
}
.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(9,8,7,0.92);
  z-index: 110;
  padding: 30px;
}
.video-modal.open {
  display: flex;
}
.video-modal-inner {
  position: relative;
  width: min(1200px, 100%);
}
.video-frame-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #111;
}
.video-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  max-width: none;
}
.video-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 34px;
  cursor: pointer;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(9,8,7,0.90);
  z-index: 100;
  padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  max-width: 1200px;
  width: 100%;
  position: relative;
}
.lightbox img {
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
  background: #111;
}
.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 34px;
  cursor: pointer;
}
.lightbox-meta {
  color: rgba(255,255,255,0.82);
  margin-top: 12px;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}
@media (max-width: 1200px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
  .menu-toggle { left: 50%; }
  .nav-panel { min-width: min(86vw, 280px); }
  .gallery-video-card { padding: 30px; align-items: flex-end; flex-direction: column; }
  .gallery-video-play { align-self: flex-start; }
  .section-split,
  .cards-3,
  .reason-grid,
  .footer-grid,
  .form-grid { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .hero, .hero-inner { min-height: 78vh; }
  .photo-card.tall { min-height: 380px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-video-card { min-height: 340px; padding: 24px; }
  .gallery-video-content h2 { font-size: clamp(30px, 9vw, 42px); }
}


.map-section {
  padding-top: 0;
}


.location-map-band {
  position: relative;
  background: linear-gradient(90deg, rgba(18,16,14,0.54) 0%, rgba(18,16,14,0.36) 42%, rgba(18,16,14,0.20) 100%), url("images/terrace.jpg") center center / cover no-repeat;
  color: #fff;
}
.location-map-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,16,14,0.10), rgba(18,16,14,0.18));
}
.location-map-band .container {
  position: relative;
  z-index: 1;
}
.location-map-band .kicker,
.location-map-band .map-copy p {
  color: rgba(255,255,255,0.86);
  text-shadow: 0 2px 12px rgba(0,0,0,0.24);
}
.location-map-band .map-copy h2 {
  color: #fff;
  text-shadow: 0 3px 18px rgba(0,0,0,0.30);
}
.location-map-band .btn,
.location-map-band .btn.btn-dark {
  --btn-text: rgba(255,255,255,0.94);
  --btn-frame: rgba(244,231,214,0.22);
  --btn-fill: rgba(227,199,163,0.10);
  --btn-glow: 0 18px 34px rgba(0,0,0,0.14);
}
.location-map-band .btn:hover,
.location-map-band .btn.btn-dark:hover,
.location-map-band .btn:focus-visible,
.location-map-band .btn.btn-dark:focus-visible {
  color: #fff;
}

.map-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}
.map-copy h2 {
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-top: 12px;
}
.map-copy p {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 560px;
}
.map-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.map-embed-wrap {
  min-height: 460px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: #ddd;
  overflow: hidden;
}
.map-embed {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  max-width: none;
}
@media (max-width: 900px) {
  .map-grid {
    grid-template-columns: 1fr;
  }
  .map-section {
    padding-top: 32px;
  }
  .map-embed-wrap, .map-embed {
    min-height: 360px;
  }
}


.page-hero {
  position: relative;
  color: var(--white);
  min-height: 70vh;
  overflow: hidden;
}
.page-hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,16,14,0.26) 0%, rgba(18,16,14,0.50) 46%, rgba(18,16,14,0.72) 100%);
  z-index: 1;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding-top: 132px;
  padding-bottom: 48px;
}
.location-hero .hero-copy {
  max-width: 820px;
}


.gallery-nav-wrap {
  padding: 22px 0 18px;
}
.gallery-nav-intro {
  max-width: 900px;
}
.gallery-nav-intro h2 {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-top: 10px;
}
.gallery-nav-intro p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.gallery-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.gallery-category-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  background: transparent;
  border: 1px solid var(--line);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  box-shadow: none;
}
.gallery-category-section {
  padding: 24px 0 28px;
}
.category-head {
  margin-bottom: 12px;
}
.category-head h2.dream-title {
  display: inline-flex;
  align-items: baseline;
  gap: 0.22em;
  overflow: visible;
}
.category-head h2.dream-title.no-gap {
  gap: 0;
}
.category-head .dream-word {
  display: inline-block;
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(var(--dream-x, 0), 0, 0) scale(0.985);
  transition:
    transform 1.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1.2s ease,
    filter 1.35s ease;
  will-change: transform, opacity, filter;
}
.category-head .dream-word.left {
  --dream-x: -88px;
}
.category-head .dream-word.right {
  --dream-x: 88px;
  transition-delay: 0.08s;
}
.category-head.in-view .dream-word {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}
.category-head p {
  display: none;
}
.gallery-empty-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.gallery-empty-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
}
.gallery-empty-card p {
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}
.gallery-grid-empty {
  grid-template-columns: 1fr;
}
@media (max-width: 980px) {
  .category-head h2.dream-title {
    gap: 0.16em;
  }
  .category-head .dream-word.left {
    --dream-x: -44px;
  }
  .category-head .dream-word.right {
    --dream-x: 44px;
  }
  .gallery-category-nav {
    gap: 10px;
  }
  .gallery-category-nav a {
    width: 100%;
  }
  .gallery-empty-card {
    min-height: 220px;
    padding: 26px;
  }
}


/* Dreamlike scroll reveal on homepage text */
.scroll-dream > * {
  opacity: 0;
  filter: blur(12px);
  transform: translate3d(var(--scroll-dream-x, 0), 30px, 0) scale(0.985);
  transition:
    transform 1.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1.15s ease,
    filter 1.35s ease;
  will-change: transform, opacity, filter;
}
.scroll-dream > *:nth-child(odd) {
  --scroll-dream-x: -44px;
}
.scroll-dream > *:nth-child(even) {
  --scroll-dream-x: 44px;
}
.scroll-dream.in-view > * {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}
.scroll-dream > *:nth-child(1) { transition-delay: 0.00s; }
.scroll-dream > *:nth-child(2) { transition-delay: 0.08s; }
.scroll-dream > *:nth-child(3) { transition-delay: 0.16s; }
.scroll-dream > *:nth-child(4) { transition-delay: 0.24s; }
.scroll-dream > *:nth-child(5) { transition-delay: 0.32s; }
.scroll-dream > *:nth-child(6) { transition-delay: 0.40s; }
.scroll-dream > *:nth-child(7) { transition-delay: 0.48s; }
.scroll-dream > *:nth-child(8) { transition-delay: 0.56s; }

.scroll-dream .feature-list > div {
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, 18px, 0) scale(0.99);
  transition:
    transform 1.25s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1.05s ease,
    filter 1.2s ease;
}
.scroll-dream.in-view .feature-list > div {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}
.scroll-dream .feature-list > div:nth-child(1) { transition-delay: 0.28s; }
.scroll-dream .feature-list > div:nth-child(2) { transition-delay: 0.34s; }
.scroll-dream .feature-list > div:nth-child(3) { transition-delay: 0.40s; }
.scroll-dream .feature-list > div:nth-child(4) { transition-delay: 0.46s; }
.scroll-dream .feature-list > div:nth-child(5) { transition-delay: 0.52s; }
.scroll-dream .feature-list > div:nth-child(6) { transition-delay: 0.58s; }

@media (prefers-reduced-motion: reduce) {
  .scroll-dream > *,
  .scroll-dream .feature-list > div {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }
}


@media (max-width: 900px) {
  .nav-panel {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: min(88vw, 560px);
  }
}
@media (max-width: 640px) {
  .nav-panel {
    gap: 14px 18px;
    max-width: 72vw;
  }
  .nav-panel a {
    font-size: 12px;
  }
}


/* Cards-3 heading/desc classes (moved from inline styles) */
.cards-3-title {
  font-size: 34px;
  margin-top: 10px;
}
.cards-3-desc {
  font-size: 17px;
  margin-top: 10px;
}


/* ═══════════════════════════════════════════════════════════
   MOBILE & RESPONSIVE FIXES
   ═══════════════════════════════════════════════════════════ */

/* ── Tablet (≤ 980px) ──────────────────────────────────── */
@media (max-width: 980px) {

  /* Prevent Vimeo iframe from causing horizontal overflow on index page */
  html, body {
    overflow-x: hidden;
  }

  section {
    padding: 56px 0;
  }

  .hero, .hero-inner {
    min-height: 72vh;
  }

  .hero-inner {
    padding-top: 96px;
    padding-bottom: 32px;
  }

  .photo-card {
    min-height: 300px;
  }

  .photo-card.tall {
    min-height: 340px;
  }

  .cards-3 {
    gap: 20px;
  }

  .reason-grid {
    gap: 22px;
    margin-top: 32px;
  }

  .form-grid {
    gap: 14px 20px;
  }

  .text-block p, .section-head p {
    font-size: 17px;
    line-height: 1.8;
  }

  .gallery-hero {
    padding: 120px 0 48px;
  }

  .footer {
    padding: 44px 0;
  }

  .footer-grid {
    gap: 32px;
  }

  .cards-3-title {
    font-size: 28px;
  }

  /* Hamburger bars: make them white on the hero (default dark = invisible on dark overlay) */
  .site-header.hero-header .menu-toggle span {
    background: rgba(255, 255, 255, 0.90);
  }

  /* Pull hamburger into flex flow so it doesn't overlap the brand */
  .menu-toggle {
    position: static;
    transform: none;
  }

  /* Keep hamburger visible when menu is open */
  .site-header.menu-open .menu-toggle {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  /* Nav panel: dropdown below header instead of centered floating pills */
  .nav-panel {
    top: 100%;
    left: 0;
    right: 0;
    transform: translate(0, -10px);
    max-width: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
  }

  .site-header.menu-open .nav-panel {
    transform: translate(0, 0);
  }

  .site-header.menu-open .nav-panel a {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(244, 231, 214, 0.12);
    background: rgba(30, 24, 20, 0.94);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    box-shadow: none;
    font-size: 13px;
    letter-spacing: 0.14em;
  }

  .site-header.menu-open .nav-panel a:last-child {
    border-bottom: none;
  }

  .site-header.menu-open .nav-panel a:hover,
  .site-header.menu-open .nav-panel a:focus-visible {
    background: rgba(42, 33, 27, 0.96);
    border-color: rgba(244, 231, 214, 0.16);
    box-shadow: none;
  }

  .site-header.menu-open.has-scroll-bar .nav-panel {
    gap: 0;
  }

  .site-header.menu-open.has-scroll-bar .nav-panel a {
    padding: 14px 20px;
    background: rgba(30, 24, 20, 0.94);
    border: none;
    border-bottom: 1px solid rgba(244, 231, 214, 0.12);
    box-shadow: none;
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
  }

  .site-header.menu-open.has-scroll-bar .nav-panel a:last-child {
    border-bottom: none;
  }

  .site-header.menu-open.has-scroll-bar .nav-panel a:hover,
  .site-header.menu-open.has-scroll-bar .nav-panel a:focus-visible {
    background: rgba(42, 33, 27, 0.96);
  }
}


/* ── Phone (≤ 640px) ───────────────────────────────────── */
@media (max-width: 640px) {

  /* Container: tighter side padding */
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  section {
    padding: 40px 0;
  }

  /* Hero */
  .hero, .hero-inner {
    min-height: 60vh;
  }

  /* Fix Vimeo iframe: use % instead of vw to prevent horizontal overflow */
  .hero-media iframe {
    width: 100%;
    min-width: 177.78vh;
  }

  .hero-inner {
    padding-top: 80px;
    padding-bottom: 24px;
  }

  .hero-title {
    font-size: clamp(32px, 9vw, 52px);
  }

  .hero-subtitle {
    font-size: clamp(17px, 4.5vw, 24px);
  }

  .hero-text {
    font-size: 16px;
    line-height: 1.7;
    margin-top: 14px;
  }

  .hero-pill {
    padding: 8px 12px;
    font-size: 10px;
    letter-spacing: 0.26em;
    margin-bottom: 12px;
  }

  .hero-actions {
    margin-top: 22px;
    gap: 10px;
  }

  /* Buttons */
  .btn {
    min-height: 46px;
    padding: 0 20px;
    font-size: 11px;
  }

  /* Photo cards */
  .photo-card {
    min-height: 240px;
  }

  .photo-card.tall {
    min-height: 280px;
  }

  .cards-3 {
    gap: 16px;
  }

  .cards-3-title {
    font-size: 24px;
    margin-top: 8px;
  }

  .cards-3-desc {
    font-size: 15px;
  }

  /* Section headings */
  .text-block h2, .section-head h2 {
    font-size: clamp(28px, 7vw, 42px);
    margin-top: 8px;
  }

  .text-block p, .section-head p {
    font-size: 16px;
    line-height: 1.75;
    margin-top: 14px;
  }

  /* Reasons / benefits */
  .reason h3 {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .reason-grid {
    gap: 18px;
    margin-top: 24px;
  }

  .feature-list {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  /* Form */
  .form-grid {
    gap: 12px 0;
    margin-top: 24px;
  }

  .input, .textarea {
    padding: 12px 0;
    font-size: 16px; /* prevents iOS Safari auto-zoom on focus */
  }

  /* Map */
  .map-embed-wrap, .map-embed {
    min-height: 280px;
  }

  .map-copy h2 {
    font-size: clamp(28px, 7vw, 42px);
  }

  .map-copy p {
    font-size: 16px;
  }

  .map-actions {
    margin-top: 20px;
  }

  /* Footer */
  .footer {
    padding: 36px 0;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer h4 {
    font-size: 11px;
    margin-bottom: 12px;
  }

  /* Gallery */
  .gallery-hero {
    padding: 100px 0 36px;
  }

  .gallery-category-section {
    padding: 16px 0 20px;
  }

  .gallery-video-card {
    padding: 20px;
  }

  /* Kicker labels */
  .kicker {
    font-size: 10px;
    letter-spacing: 0.28em;
  }

  /* Page hero (location, gallery) */
  .page-hero, .page-hero-inner {
    min-height: 50vh;
  }

  .page-hero-inner {
    padding-top: 96px;
    padding-bottom: 28px;
  }

  /* Header */
  .site-header {
    padding: 18px 0;
  }

  .site-header.hero-header.has-scroll-bar {
    padding: 8px 0;
  }

  /* Hide subtitle to free up horizontal space */
  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 14px;
    letter-spacing: 0.10em;
  }

  /* Make hamburger bars white on the hero (they're dark by default = invisible) */
  .site-header.hero-header .menu-toggle span {
    background: rgba(255, 255, 255, 0.90);
  }

  /* ─── Pull hamburger OUT of absolute positioning into flex flow ─── */
  .menu-toggle {
    position: static;
    transform: none;
  }

  /* Shrink Book Now button so the 3 items fit comfortably */
  .site-header .inner > .btn.btn-ghost {
    min-height: 38px;
    padding: 0 14px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  /* Reduce inner gap so elements have breathing room */
  .site-header .inner {
    gap: 12px;
  }

  /* ─── Opened menu: vertical dropdown instead of floating pills ─── */

  .nav-panel {
    /* Override the centered absolute positioning */
    top: 100%;
    left: 0;
    right: 0;
    transform: translate(0, -10px);
    max-width: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
  }

  .site-header.menu-open .nav-panel {
    transform: translate(0, 0);
  }

  .site-header.menu-open .nav-panel a {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(244, 231, 214, 0.12);
    background: rgba(30, 24, 20, 0.94);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    box-shadow: none;
    font-size: 13px;
    letter-spacing: 0.14em;
  }

  .site-header.menu-open .nav-panel a:last-child {
    border-bottom: none;
  }

  .site-header.menu-open .nav-panel a:hover,
  .site-header.menu-open .nav-panel a:focus-visible {
    background: rgba(42, 33, 27, 0.96);
    border-color: rgba(244, 231, 214, 0.16);
    box-shadow: none;
  }

  /* When scrolled, keep the dropdown style instead of inline pills */
  .site-header.menu-open.has-scroll-bar .nav-panel {
    gap: 0;
  }

  .site-header.menu-open.has-scroll-bar .nav-panel a {
    padding: 14px 20px;
    background: rgba(30, 24, 20, 0.94);
    border: none;
    border-bottom: 1px solid rgba(244, 231, 214, 0.12);
    box-shadow: none;
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
  }

  .site-header.menu-open.has-scroll-bar .nav-panel a:last-child {
    border-bottom: none;
  }

  .site-header.menu-open.has-scroll-bar .nav-panel a:hover,
  .site-header.menu-open.has-scroll-bar .nav-panel a:focus-visible {
    background: rgba(42, 33, 27, 0.96);
  }

  /* Keep hamburger visible when menu is open on mobile */
  .site-header.menu-open .menu-toggle {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .site-header.menu-open .menu-toggle span {
    background: rgba(255, 255, 255, 0.90);
  }

  /* Also reset the scrolling-ui hide on the toggle (it targets brand + btn but not toggle) */
  .site-header.scrolling-ui .menu-toggle {
    transform: none;
  }

  /* Location feature */
  .location-feature .text-block {
    max-width: 100%;
  }

  /* Scroll-dream: smaller translations */
  .scroll-dream > *:nth-child(odd) {
    --scroll-dream-x: -20px;
  }
  .scroll-dream > *:nth-child(even) {
    --scroll-dream-x: 20px;
  }
  .scroll-dream > * {
    transform: translate3d(var(--scroll-dream-x, 0), 18px, 0) scale(0.99);
  }

  /* Small note */
  .small-note {
    font-size: 13px;
  }
}


/* ── Very small phones (≤ 400px) ───────────────────────── */
@media (max-width: 400px) {

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

  .hero-title {
    font-size: clamp(28px, 8.5vw, 40px);
  }

  .btn {
    min-height: 42px;
    padding: 0 16px;
    font-size: 10px;
  }

  .photo-card {
    min-height: 200px;
  }

  .photo-card.tall {
    min-height: 240px;
  }

  .text-block h2, .section-head h2 {
    font-size: clamp(24px, 7vw, 34px);
  }

  .cards-3-title {
    font-size: 22px;
  }

  .map-embed-wrap, .map-embed {
    min-height: 220px;
  }

  .gallery-empty-card {
    min-height: 180px;
    padding: 20px;
  }
}
