/* ============================================================
   OSTSEEPERLEN FERIENHÄUSER
   Design System v2.0 — Nordic Coastal Light
   ============================================================ */

:root {
  /* ── Palette ── */
  --sky:          #e8f4f8;
  --sky-mid:      #cde8f0;
  --sky-deep:     #a8d4e0;
  --ocean:        #2c7da0;
  --ocean-deep:   #1a5f7a;
  --ocean-darkest:#0d3a4d;
  --sage:         #6b9080;
  --sage-light:   #a4c3b2;
  --sage-pale:    #cce3d8;
  --sand:         #faf8f4;
  --sand-warm:    #f2ece0;
  --sand-mid:     #e8ddd0;
  --sand-dark:    #d4c5b0;
  --terra:        #c87941;
  --terra-light:  #e8a06a;
  --terra-pale:   #f5d9c0;
  --chalk:        #ffffff;
  --ink:          #1c2830;
  --ink-mid:      #3a4a52;
  --ink-light:    #6a8090;
  --ink-faint:    #99adb8;

  /* ── Typography ── */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  /* ── Spacing ── */
  --sp-xs:  0.375rem;
  --sp-sm:  0.75rem;
  --sp-md:  1.25rem;
  --sp-lg:  2rem;
  --sp-xl:  3rem;
  --sp-2xl: 4.5rem;
  --sp-3xl: 7rem;

  /* ── Layout ── */
  --header-h:  76px;
  --max-w:     1240px;
  --radius-sm: 4px;
  --radius:    10px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  /* ── Shadows ── */
  --shadow-xs: 0 1px 3px rgba(28,40,48,0.07), 0 1px 2px rgba(28,40,48,0.04);
  --shadow-sm: 0 4px 12px rgba(28,40,48,0.08), 0 2px 4px rgba(28,40,48,0.04);
  --shadow:    0 8px 32px rgba(28,40,48,0.10), 0 2px 8px rgba(28,40,48,0.06);
  --shadow-lg: 0 20px 60px rgba(28,40,48,0.14), 0 4px 16px rgba(28,40,48,0.08);
  --shadow-card: 0 2px 8px rgba(28,40,48,0.06), 0 8px 24px rgba(28,40,48,0.08);

  /* ── Motion ── */
  --ease: cubic-bezier(0.22,1,0.36,1);
  --t-fast: 0.18s var(--ease);
  --t:      0.3s  var(--ease);
  --t-slow: 0.5s  var(--ease);
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
address { font-style: normal; }

/* ─── CONTAINER ──────────────────────────────────────────── */
.container {
  width: 100%; max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.5rem); }
h4 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.02em; }
p  { color: var(--ink-mid); margin-bottom: 1em; line-height: 1.75; }
p:last-child { margin-bottom: 0; }
.lead { font-size: 1.08rem; line-height: 1.85; color: var(--ink-mid); }

/* ─── EYEBROW LABEL ──────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.6rem;
}
.rule {
  width: 36px; height: 2px;
  background: linear-gradient(90deg, var(--terra), var(--terra-light));
  margin-bottom: var(--sp-md);
  border-radius: 2px;
}
.rule.center { margin-inline: auto; }

/* ─── DEMO BANNER ────────────────────────────────────────── */
.demo-notice {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
  height: 36px;
  background: var(--ink);
  color: rgba(255,255,255,0.8);
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.04em;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0 1rem;
  overflow: hidden;
}
.demo-notice strong { color: var(--terra-light); }
.demo-notice a {
  color: var(--terra-light);
  text-decoration: underline;
  font-weight: 600;
  margin-left: 0.4rem;
  transition: color var(--t-fast);
}
.demo-notice a:hover { color: var(--chalk); }
body:has(.demo-notice) #site-header { top: 36px; }
body:has(.demo-notice) .hero { padding-top: calc(var(--header-h) + 36px + 2.5rem); }
body:has(.demo-notice) .page-subnav { top: calc(var(--header-h) + 36px); }
body:has(.demo-notice) .breadcrumb { margin-top: calc(var(--header-h) + 36px); }
body:has(.demo-notice) .page-hero-pad { padding-top: calc(var(--header-h) + 36px + var(--sp-xl)); }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 100px;
  transition: all var(--t);
  white-space: nowrap; cursor: pointer; line-height: 1;
  position: relative; overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--t-fast);
}
.btn:hover::after { background: rgba(255,255,255,0.08); }

.btn-primary {
  background: var(--terra);
  color: var(--chalk);
}
.btn-primary:hover { background: var(--terra-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,121,65,0.35); }

.btn-ocean {
  background: var(--ocean);
  color: var(--chalk);
}
.btn-ocean:hover { background: var(--ocean-deep); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(44,125,160,0.35); }

.btn-outline {
  background: transparent;
  color: var(--chalk);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: var(--chalk);
  color: var(--ocean-deep);
  border-color: var(--chalk);
  transform: translateY(-2px);
}
.btn-outline-ink {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--sand-dark);
}
.btn-outline-ink:hover {
  background: var(--ink);
  color: var(--chalk);
  border-color: var(--ink);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--chalk);
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }

/* ─── UTILITIES ──────────────────────────────────────────── */
.text-center { text-align: center; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   HEADER — slim bar, logo left, nav center, actions right
   ============================================================ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
  height: var(--header-h);
  background: var(--ocean-darkest);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--t), box-shadow var(--t);
}
#site-header.scrolled {
  background: var(--ink);
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 1.5rem;
}

/* Logo — compact, left-aligned, light on dark */
.site-logo { display: flex; align-items: baseline; gap: 0; flex-shrink: 0; }
.site-logo .logo-mark {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 300;
  color: var(--chalk);
  line-height: 1;
  letter-spacing: -0.02em;
}
.site-logo .logo-mark em { font-style: italic; color: var(--terra-light); }
.site-logo .logo-tag { display: none; }

/* Main Nav — horizontal inline, light text */
.main-nav { display: flex; align-items: center; flex: 1; justify-content: center; }
.main-nav ul { display: flex; align-items: center; gap: 0.15rem; list-style: none; }
.main-nav a {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6);
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  transition: all var(--t-fast);
  white-space: nowrap;
}
.main-nav a:hover { color: var(--chalk); background: rgba(255,255,255,0.08); }
.main-nav a.active { color: var(--chalk); font-weight: 600; }

/* Header Actions — phone + CTA */
.header-actions {
  display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0;
}
.header-phone {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  transition: all var(--t-fast);
}
.header-phone:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.4);
  color: var(--chalk);
}

/* Nav CTA */
.nav-cta {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--terra);
  color: var(--chalk);
  padding: 0.5rem 1.2rem;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 100px;
  transition: all var(--t);
  box-shadow: 0 2px 10px rgba(200,121,65,0.25);
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--terra-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200,121,65,0.35);
}

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; flex-shrink: 0; position: relative; z-index: 2; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--chalk); transition: var(--t); border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none; position: fixed;
  top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: var(--sand);
  overflow-y: auto; z-index: 999;
  padding: var(--sp-md) var(--sp-md) var(--sp-2xl);
  flex-direction: column;
  border-top: 1px solid var(--sand-mid);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 1rem 1.25rem;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
  border-bottom: 1px solid var(--sand-mid);
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.mobile-nav a:hover { color: var(--ocean); padding-left: 1.75rem; }
.mobile-nav .mobile-cta {
  margin-top: var(--sp-md);
  background: var(--terra);
  color: var(--chalk) !important;
  text-align: center;
  font-weight: 600;
  border-radius: var(--radius);
  border-bottom: none;
  padding: 1rem;
}
.mobile-nav .mobile-cta:hover { background: var(--terra-light); padding-left: 1.25rem; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  background: var(--sand-warm);
  padding: 0.7rem 0;
  margin-top: var(--header-h);
  border-bottom: 1px solid var(--sand-mid);
}
.breadcrumb-list { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.breadcrumb-list li {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; color: var(--ink-light);
}
.breadcrumb-list li a { color: var(--ink-light); transition: color var(--t-fast); }
.breadcrumb-list li a:hover { color: var(--ocean); }
.breadcrumb-list li::after { content: '·'; color: var(--sand-dark); }
.breadcrumb-list li:last-child::after { display: none; }
.breadcrumb-list li:last-child { color: var(--ink-mid); font-weight: 500; }

/* ============================================================
   HERO — split-screen editorial
   ============================================================ */
.hero {
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: var(--sp-lg);
  background: linear-gradient(160deg, var(--sand-warm) 0%, var(--sky) 50%, var(--sage-pale) 100%);
  overflow: hidden;
}
.hero-split {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: center;
}

/* Text column */
.hero-text {
  animation: heroTextIn 0.9s var(--ease) both;
}
@keyframes heroTextIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
.hero-kicker {
  display: inline-block;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: var(--sp-md);
  padding: 0.3rem 0.8rem;
  border: 1.5px solid var(--sky-mid);
  border-radius: 100px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.8vw, 3.4rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: var(--sp-sm);
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: italic;
  color: var(--ocean);
}
.hero-lead {
  font-size: 0.95rem;
  color: var(--ink-mid);
  margin-bottom: var(--sp-md);
  line-height: 1.75;
  max-width: 420px;
}
.hero-actions {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  margin-bottom: var(--sp-md);
}

/* Trust micro-badges */
.hero-trust {
  display: flex; gap: 1.2rem; flex-wrap: wrap;
  font-size: 0.75rem; font-weight: 500;
  color: var(--ink-light);
}
.hero-trust-item {
  display: flex; align-items: center; gap: 0.35rem;
}
.hero-trust-item svg { flex-shrink: 0; }

/* Image gallery — overlapping collage */
.hero-gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr auto;
  gap: 0.75rem;
  animation: heroGalleryIn 1s 0.15s var(--ease) both;
}
@keyframes heroGalleryIn {
  from { opacity: 0; transform: translate(20px, 12px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}
.hero-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-img-main {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}
.hero-img-sm {
  aspect-ratio: 3 / 2;
}
.hero-img-label {
  position: absolute;
  bottom: 0.55rem; left: 0.55rem;
  background: rgba(250,248,244,0.92);
  backdrop-filter: blur(8px);
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
}

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  background: var(--ocean-darkest);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 100% at 100% 50%, rgba(44,125,160,0.2) 0%, transparent 65%),
    linear-gradient(160deg, rgba(200,121,65,0.06) 0%, transparent 50%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--chalk); font-weight: 300; }
.page-hero p {
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin-top: 0.8rem;
  font-size: 1.05rem;
}
.page-hero .eyebrow { color: var(--terra-light); }
.page-hero .rule { background: linear-gradient(90deg, var(--terra-light), transparent); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section    { padding: var(--sp-3xl) 0; }
.section-sm { padding: var(--sp-2xl) 0; }
.section-xs { padding: var(--sp-xl) 0; }

.section-light { background: var(--chalk); }
.section-warm  { background: var(--sand-warm); }
.section-sky   { background: var(--sky); }
.section-ink   { background: var(--ocean-darkest); }
.section-ink h1, .section-ink h2, .section-ink h3 { color: var(--chalk); }
.section-ink p { color: rgba(255,255,255,0.6); }
.section-ink .eyebrow { color: var(--terra-light); }
.section-ink .rule { background: linear-gradient(90deg, var(--terra-light), transparent); }

.section-header { margin-bottom: var(--sp-xl); }
.section-header.center { text-align: center; }
.section-header.center .rule { margin-inline: auto; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--chalk);
  padding: 1.2rem 0;
  border-top: 1px solid var(--sand-mid);
  border-bottom: 1px solid var(--sand-mid);
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: var(--sp-xl); flex-wrap: wrap; row-gap: 0.75rem;
}
.trust-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.8rem; font-weight: 500; color: var(--ink-mid);
  white-space: nowrap;
}
.trust-item-icon {
  width: 28px; height: 28px;
  background: var(--sage-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; flex-shrink: 0;
}

/* ============================================================
   PROPERTY CARDS
   ============================================================ */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: var(--sp-lg);
}
.property-card {
  background: var(--chalk);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--t), box-shadow var(--t);
  display: flex; flex-direction: column;
  border: 1px solid var(--sand-mid);
}
.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.property-card-img {
  position: relative; height: 230px; overflow: hidden;
}
.property-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.property-card:hover .property-card-img img { transform: scale(1.06); }

.property-card-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.28rem 0.7rem; border-radius: 100px;
  backdrop-filter: blur(8px);
}
.badge-available { background: rgba(107,144,128,0.9); color: var(--chalk); }
.badge-limited   { background: rgba(212,160,64,0.9); color: var(--chalk); }
.badge-booked    { background: rgba(180,60,50,0.9); color: var(--chalk); }

.property-card-price {
  position: absolute; bottom: 14px; right: 14px;
  background: rgba(250,248,244,0.92);
  backdrop-filter: blur(10px);
  color: var(--ink); font-size: 0.78rem; font-weight: 600;
  padding: 0.38rem 0.8rem; border-radius: 100px;
  border: 1px solid rgba(212,197,176,0.5);
}
.property-card-price span { color: var(--terra); font-size: 1.1rem; font-weight: 700; }

.property-card-body {
  padding: var(--sp-md) var(--sp-md) var(--sp-lg);
  flex: 1; display: flex; flex-direction: column;
}
.property-card-location {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--terra);
  margin-bottom: 0.4rem;
}
.property-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; font-weight: 400; }
.property-card-desc { font-size: 0.86rem; color: var(--ink-light); margin-bottom: 0; flex: 1; }

.property-card-specs {
  display: flex; gap: 1rem;
  margin-top: var(--sp-md);
  padding-top: var(--sp-sm);
  border-top: 1px solid var(--sand-mid);
  font-size: 0.78rem; color: var(--ink-light);
}
.property-card-specs .spec { display: flex; align-items: center; gap: 0.35rem; }

.property-card-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: var(--sp-sm);
  font-size: 0.73rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ocean);
  transition: gap var(--t-fast);
}
.property-card-link:hover { gap: 0.8rem; color: var(--ocean-deep); }

/* ============================================================
   TWO-COL LAYOUT
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
}
.two-col.reverse > :first-child { order: 2; }
.two-col.reverse > :last-child  { order: 1; }

.feature-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.feature-img-wrap img {
  width: 100%; height: 440px; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.feature-img-wrap:hover img { transform: scale(1.03); }

/* Decorative corner accent */
.feature-img-wrap::after {
  content: '';
  position: absolute;
  top: -12px; right: -12px;
  width: 80px; height: 80px;
  border-top: 3px solid var(--terra);
  border-right: 3px solid var(--terra);
  border-radius: 0 var(--radius) 0 0;
  opacity: 0.5;
  pointer-events: none;
}

/* Checklist */
.checklist { display: flex; flex-direction: column; gap: 0.65rem; margin: var(--sp-md) 0; }
.checklist li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.9rem; color: var(--ink-mid); line-height: 1.55;
}
.checklist li::before {
  content: '';
  flex-shrink: 0; width: 20px; height: 20px; margin-top: 1px;
  background: var(--sage-pale)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%236b9080' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/12px no-repeat;
  border-radius: 50%;
}

/* ============================================================
   FEATURE CARDS (Why Us grid)
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: var(--sp-md);
}
.feature-card {
  background: var(--chalk);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg) var(--sp-md);
  border: 1px solid var(--sand-mid);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--terra), var(--ocean));
  opacity: 0;
  transition: opacity var(--t);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 52px; height: 52px;
  background: var(--sky);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: var(--sp-md);
  transition: background var(--t);
}
.feature-card:hover .feature-icon { background: var(--sage-pale); }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--ink); }
.feature-card p  { font-size: 0.85rem; color: var(--ink-light); margin: 0; }

/* ============================================================
   TESTIMONIAL / QUOTE
   ============================================================ */
.testimonial-wrap {
  background: var(--ocean-darkest);
  border-radius: var(--radius-xl);
  padding: var(--sp-2xl);
  position: relative; overflow: hidden;
}
.testimonial-wrap::before {
  content: '\201C';
  position: absolute; top: -20px; left: 30px;
  font-family: var(--font-display);
  font-size: 22rem;
  line-height: 1;
  color: rgba(44,125,160,0.15);
  pointer-events: none;
  user-select: none;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,0.9);
  line-height: 1.65;
  position: relative; z-index: 1;
  margin-bottom: var(--sp-md);
}
.testimonial-cite {
  display: flex; align-items: center; gap: var(--sp-sm);
  position: relative; z-index: 1;
}
.testimonial-avatar {
  width: 42px; height: 42px;
  background: var(--sage);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--chalk);
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--terra-light);
}
.testimonial-role { font-size: 0.72rem; color: rgba(255,255,255,0.4); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--sand-mid);
  transition: background var(--t-fast);
}
.faq-item:first-child { border-top: 1px solid var(--sand-mid); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.15rem 0;
  cursor: pointer; font-weight: 500; color: var(--ink);
  font-size: 0.95rem; gap: 1rem;
  transition: color var(--t-fast);
  user-select: none;
}
.faq-question:hover { color: var(--ocean); }
.faq-icon {
  flex-shrink: 0; width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--sand-dark);
  border-radius: 50%;
  color: var(--ink-light); font-size: 1rem;
  transition: all var(--t-fast);
  font-weight: 300; line-height: 1;
}
.faq-item.open .faq-icon {
  border-color: var(--terra);
  color: var(--terra);
  background: var(--terra-pale);
  transform: rotate(45deg);
}
.faq-answer {
  display: none; padding: 0 0 1.2rem;
  font-size: 0.9rem; color: var(--ink-mid); line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-xl);
  align-items: start;
}
.form-card {
  background: var(--chalk);
  border-radius: var(--radius-xl);
  padding: var(--sp-xl);
  box-shadow: var(--shadow);
  border: 1px solid var(--sand-mid);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.form-grid .full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-light);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.82rem 1rem;
  border: 1.5px solid var(--sand-mid);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem; color: var(--ink);
  background: var(--sand);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  outline: none; width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--terra);
  background: var(--chalk);
  box-shadow: 0 0 0 3px rgba(200,121,65,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-check-label {
  display: flex; align-items: flex-start; gap: 0.7rem; cursor: pointer;
  font-size: 0.84rem; color: var(--ink-mid); line-height: 1.5;
  font-weight: 400; text-transform: none; letter-spacing: 0;
}
.form-check-label input[type="checkbox"] {
  flex-shrink: 0; width: 16px; height: 16px;
  margin-top: 2px; accent-color: var(--terra);
}
.form-status {
  margin-top: var(--sp-sm); padding: 0.9rem;
  border-radius: var(--radius); font-size: 0.85rem; display: none;
}
.form-status.success { background: #ecfdf5; color: #065f46; border: 1px solid #6ee7b7; display: block; }
.form-status.error   { background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; display: block; }

/* Contact info sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: var(--sp-md); }
.contact-info-card {
  background: var(--chalk);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg);
  border: 1px solid var(--sand-mid);
}
.contact-items { display: flex; flex-direction: column; gap: var(--sp-md); }
.contact-item  { display: flex; align-items: flex-start; gap: 0.9rem; }
.contact-item-icon {
  width: 44px; height: 44px;
  background: var(--sky);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.1rem;
}
.contact-item-body h4 {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 0.25rem;
}
.contact-item-body p, .contact-item-body a { font-size: 0.88rem; color: var(--ink-mid); }
.contact-item-body a:hover { color: var(--ocean); }

.info-callout {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-deep) 100%);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg);
  color: var(--chalk);
}
.info-callout h4 { color: var(--chalk); margin-bottom: 0.4rem; }
.info-callout p { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin: 0; }

/* ============================================================
   AVAILABILITY CALENDAR
   ============================================================ */
.calendar-wrap {
  background: var(--chalk);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--sand-mid);
}
.calendar-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem var(--sp-md);
  background: var(--ocean-darkest);
}
.calendar-header .month-label {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 300;
  color: var(--chalk);
}
.calendar-header button {
  color: rgba(255,255,255,0.6); font-size: 1.1rem;
  padding: 0.3rem 0.6rem; border-radius: var(--radius-sm);
  transition: all var(--t-fast);
}
.calendar-header button:hover { color: var(--chalk); background: rgba(255,255,255,0.1); }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); }
.calendar-day-name {
  padding: 0.55rem 0; text-align: center;
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-light);
  background: var(--sand-warm);
  border-bottom: 1px solid var(--sand-mid);
}
.calendar-day {
  padding: 0.62rem 0; text-align: center;
  font-size: 0.82rem; font-weight: 400;
  color: var(--ink); cursor: pointer;
  transition: all var(--t-fast);
  position: relative;
}
.calendar-day:hover:not(.booked):not(.empty):not(.past) {
  background: var(--terra-pale); color: var(--terra);
}
.calendar-day.empty    { color: transparent; pointer-events: none; }
.calendar-day.past     { color: var(--sand-dark); pointer-events: none; }
.calendar-day.today    { font-weight: 700; color: var(--ocean); }
.calendar-day.today::after {
  content: ''; position: absolute;
  bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; background: var(--ocean);
  border-radius: 50%;
}
.calendar-day.available { color: var(--sage); font-weight: 600; }
.calendar-day.booked {
  background: rgba(180,60,50,0.07); color: #b43c32;
  text-decoration: line-through; pointer-events: none;
}
.calendar-day.selected {
  background: var(--terra); color: var(--chalk);
  border-radius: var(--radius-sm); font-weight: 700;
}
.calendar-day.in-range { background: var(--terra-pale); }
.calendar-legend {
  display: flex; gap: var(--sp-md); padding: 0.8rem var(--sp-md);
  border-top: 1px solid var(--sand-mid); flex-wrap: wrap;
}
.legend-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.68rem; color: var(--ink-light); }
.legend-dot  { width: 8px; height: 8px; border-radius: 2px; flex-shrink: 0; }
.legend-dot.avail  { background: var(--sage); }
.legend-dot.booked { background: #b43c32; }
.legend-dot.sel    { background: var(--terra); }

/* ============================================================
   AMENITY GRID
   ============================================================ */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 175px), 1fr));
  gap: 0.6rem;
}
.amenity-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.84rem; color: var(--ink-mid);
  padding: 0.6rem 0.85rem;
  background: var(--sand);
  border: 1.5px solid var(--sand-mid);
  border-radius: var(--radius);
  transition: all var(--t-fast);
}
.amenity-item:hover {
  border-color: var(--sage-light);
  background: var(--sage-pale);
}
.amenity-icon { color: var(--sage); flex-shrink: 0; font-size: 1rem; }

/* ============================================================
   PRICING TABLE
   ============================================================ */
.pricing-table { width: 100%; border-collapse: collapse; border-radius: var(--radius-lg); overflow: hidden; }
.pricing-table thead tr { background: var(--ocean-darkest); }
.pricing-table th {
  color: rgba(255,255,255,0.8);
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.8rem 1rem; text-align: left;
}
.pricing-table td {
  padding: 0.85rem 1rem;
  font-size: 0.88rem; color: var(--ink-mid);
  border-bottom: 1px solid var(--sand-mid);
}
.pricing-table tr:nth-child(even) td { background: var(--sand-warm); }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table .price-val { font-weight: 700; color: var(--terra); font-size: 1.05rem; }

/* ============================================================
   REGION CARDS
   ============================================================ */
.region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: var(--sp-md);
}
.region-card {
  background: var(--chalk);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--t), box-shadow var(--t);
  border: 1px solid var(--sand-mid);
}
.region-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.region-card-img { height: 210px; overflow: hidden; position: relative; }
.region-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.region-card:hover .region-card-img img { transform: scale(1.06); }
.region-card-body { padding: var(--sp-md); }
.region-card h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }
.region-card p { font-size: 0.85rem; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--ocean-darkest) 0%, var(--ocean-deep) 60%, rgba(44,125,160,0.9) 100%);
  padding: var(--sp-2xl) 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='28'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") 0 0 / 60px;
}
.cta-section h2 { color: var(--chalk); position: relative; z-index: 1; }
.cta-section p {
  color: rgba(255,255,255,0.65);
  max-width: 500px; margin: var(--sp-md) auto var(--sp-lg);
  position: relative; z-index: 1;
}
.cta-section .actions {
  position: relative; z-index: 1;
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.cta-section .eyebrow { color: var(--terra-light); position: relative; z-index: 1; }

/* ============================================================
   PROPERTY DETAIL
   ============================================================ */
.detail-hero-gallery {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.detail-hero-img {
  height: 460px;
  width: 100%;
  object-fit: cover;
  display: block;
}
.detail-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: var(--sp-md); flex-wrap: wrap; margin-bottom: var(--sp-lg);
}
.detail-head h1 { font-size: clamp(1.8rem, 4.5vw, 2.8rem); font-weight: 300; }
.detail-location {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--terra); margin-bottom: 0.3rem;
}
.detail-rating { font-size: 0.84rem; color: var(--ink-light); }
.detail-price-big {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 300;
  color: var(--ocean);
  line-height: 1;
}
.detail-price-big small {
  font-size: 0.75rem; color: var(--ink-light);
  font-family: var(--font-body); font-weight: 400;
}
.detail-specs {
  display: flex; gap: 0;
  background: var(--chalk);
  border: 1px solid var(--sand-mid);
  border-radius: var(--radius-lg);
  overflow: hidden; margin-bottom: var(--sp-lg);
  box-shadow: var(--shadow-xs);
}
.detail-spec {
  flex: 1; text-align: center;
  padding: var(--sp-md) var(--sp-sm);
  border-right: 1px solid var(--sand-mid);
}
.detail-spec:last-child { border-right: none; }
.detail-spec .spec-val {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 300;
  color: var(--ocean); margin-bottom: 0.2rem;
}
.detail-spec .spec-lbl {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-light);
}
.detail-content {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: var(--sp-xl);
  align-items: start;
}

/* Booking card (sidebar) */
.booking-card {
  background: var(--chalk);
  border: 1px solid var(--sand-mid);
  border-radius: var(--radius-xl);
  padding: var(--sp-lg);
  box-shadow: var(--shadow);
  position: sticky;
  top: calc(var(--header-h) + 40px);
}

/* ============================================================
   HIGHLIGHT BOX
   ============================================================ */
.highlight-box {
  background: linear-gradient(135deg, var(--sky) 0%, var(--sage-pale) 100%);
  border-left: 4px solid var(--sage);
  padding: var(--sp-md) var(--sp-lg);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.highlight-box p { font-size: 0.9rem; color: var(--ink-mid); margin: 0; }
.highlight-box p strong { color: var(--ink); }

/* ============================================================
   PROSE (legal pages)
   ============================================================ */
.prose { max-width: 760px; }
.prose h2 {
  font-size: 1.3rem;
  margin: var(--sp-lg) 0 0.7rem;
  padding-top: var(--sp-lg);
  border-top: 1px solid var(--sand-mid);
}
.prose h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.prose p { font-size: 0.92rem; line-height: 1.85; }
.prose ul { margin: 0.6rem 0 1rem 1.4rem; list-style: disc; }
.prose ul li { color: var(--ink-mid); font-size: 0.92rem; margin-bottom: 0.3rem; }

/* ============================================================
   FOOTER — horizontal magazine style
   ============================================================ */
#site-footer {
  background: var(--ink);
}
.footer-top-band {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: var(--sp-2xl) 0;
}
.footer-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-xl);
  flex-wrap: wrap;
}

.footer-brand-block { flex-shrink: 0; }
.footer-wordmark {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--chalk);
  display: block;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.footer-wordmark em { font-style: italic; color: var(--sky-mid); }
.footer-brand-block p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  max-width: 260px;
}

.footer-links-row {
  display: flex; gap: 1.6rem; flex-wrap: wrap;
}
.footer-links-row a {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  transition: color var(--t-fast);
  white-space: nowrap;
}
.footer-links-row a:hover { color: var(--terra-light); }

.footer-btn {
  font-size: 0.72rem !important;
  padding: 0.55rem 1.4rem !important;
}

.footer-bottom-band {
  padding: 1.1rem 0;
}
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.7rem;
}
.footer-copyright {
  font-size: 0.68rem; color: rgba(255,255,255,0.2);
}
.footer-legal-links { display: flex; gap: var(--sp-md); }
.footer-legal-links a {
  font-size: 0.68rem; color: rgba(255,255,255,0.25);
  transition: color var(--t-fast);
}
.footer-legal-links a:hover { color: var(--terra-light); }

/* legacy footer classes (subpages still using old markup) */
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: var(--sp-2xl);
  padding-bottom: var(--sp-2xl);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand { margin-bottom: var(--sp-md); }
.footer-logo-mark {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 300;
  color: var(--chalk); line-height: 1;
}
.footer-logo-mark em { font-style: italic; color: var(--sky-mid); }
.footer-logo-sub {
  display: block; font-size: 0.48rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--terra-light); margin-top: 0.2rem;
}
.footer-desc { font-size: 0.82rem; line-height: 1.78; color: rgba(255,255,255,0.35); }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--sp-md);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a {
  color: rgba(255,255,255,0.4); font-size: 0.84rem;
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.footer-col ul a:hover { color: var(--terra-light); padding-left: 4px; }
.footer-address {
  margin-top: var(--sp-md); font-size: 0.73rem;
  color: rgba(255,255,255,0.2); line-height: 1.7;
}
.footer-bottom {
  padding: 1.2rem 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.7rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  :root { --sp-3xl: 5rem; --sp-xl: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-lg); }
  .footer-top-inner { flex-wrap: wrap; }
}

@media (max-width: 960px) {
  :root { --sp-3xl: 4rem; --sp-2xl: 3rem; }
  .main-nav  { display: none; }
  .header-actions { display: none; }
  .hamburger { display: flex; }

  /* Hero — stack vertically, gallery goes full width */
  .hero-split {
    grid-template-columns: 1fr;
    gap: var(--sp-md);
    min-height: auto;
  }
  .hero-text { text-align: center; }
  .hero-text .hero-kicker { margin-left: auto; margin-right: auto; }
  .hero-lead { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-gallery { max-width: 100%; }

  .two-col   { grid-template-columns: 1fr; }
  .two-col.reverse > :first-child { order: unset; }
  .two-col.reverse > :last-child  { order: unset; }
  .contact-grid { grid-template-columns: 1fr; }
  .detail-content { grid-template-columns: 1fr; }
  .detail-specs { flex-wrap: wrap; }
  .detail-spec  { flex: 0 0 50%; }
  .feature-img-wrap img { height: 320px; }
  .properties-grid { grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); }
}

@media (max-width: 768px) {
  :root {
    --sp-3xl: 3rem;
    --sp-2xl: 2.2rem;
    --sp-xl:  1.8rem;
    --header-h: 60px;
  }

  /* Demo notice compact */
  .demo-notice { font-size: 0.58rem; padding: 0.35rem var(--sp-sm); gap: 0.3rem; }

  /* Typography */
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  /* Hero mobile polish */
  .hero { padding-top: calc(var(--header-h) + 1.2rem); padding-bottom: var(--sp-md); }
  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .hero-lead { font-size: 0.88rem; margin-bottom: var(--sp-sm); }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 0.5rem; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .hero-trust { font-size: 0.68rem; gap: 0.6rem; }
  .hero-gallery { gap: 0.5rem; grid-template-columns: 1fr; }
  .hero-img-sm { display: none; }
  .hero-img-main { grid-column: 1; aspect-ratio: 16 / 10; }
  .hero-img-label { font-size: 0.58rem; padding: 0.2rem 0.5rem; display: none; }

  /* Trust bar */
  .trust-bar-inner { justify-content: flex-start; gap: var(--sp-sm); flex-wrap: wrap; }
  .trust-item { font-size: 0.72rem; }

  /* Cards */
  .properties-grid { grid-template-columns: 1fr; }
  .region-grid     { grid-template-columns: 1fr; }
  .feature-grid    { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-lg); }
  .footer-bottom, .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .footer-top-inner { flex-direction: column; align-items: flex-start; gap: var(--sp-lg); }
  .footer-links-row { flex-direction: column; gap: 0.7rem; }
  .footer-btn { width: 100%; text-align: center; justify-content: center; }

  /* CTA section */
  .cta-section .actions { flex-direction: column; align-items: center; }
  .cta-section .actions .btn { width: min(100%, 300px); }

  /* Forms */
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: 1; }
  .form-card { padding: var(--sp-lg); }

  /* Detail pages — description area */
  .detail-hero-img { height: 220px; }
  .detail-head { flex-direction: column; text-align: left; gap: var(--sp-sm); }
  .detail-head > div:last-child { text-align: left; }
  .detail-head h1 { font-size: 1.6rem; }
  .detail-rating { font-size: 0.75rem; }
  .detail-price-big { font-size: 1.7rem; }
  .detail-content { gap: var(--sp-lg); }
  .detail-content h2 { font-size: 1.2rem !important; margin-bottom: var(--sp-sm) !important; }
  .detail-content p { font-size: 0.88rem; line-height: 1.7; }
  .detail-content .eyebrow { font-size: 0.6rem; }
  .booking-card { position: static; }

  /* Pricing table mobile */
  .pricing-table { font-size: 0.75rem; }
  .pricing-table th { font-size: 0.58rem; padding: 0.6rem 0.5rem; letter-spacing: 0.08em; }
  .pricing-table td { font-size: 0.78rem; padding: 0.7rem 0.5rem; }
  .pricing-table .price-val { font-size: 0.88rem; }

  /* Highlight box */
  .highlight-box { padding: var(--sp-sm) var(--sp-md); }
  .highlight-box p { font-size: 0.78rem; }

  /* Amenity grid */
  .amenity-grid { gap: 0.4rem; }
  .amenity-item { font-size: 0.78rem; padding: 0.45rem 0.65rem; }

  /* Testimonials */
  .testimonial-wrap { padding: var(--sp-lg); }

  /* Section headers */
  .section-header.center p { font-size: 0.88rem; }

  /* Page hero */
  .page-hero-content h1 { font-size: 1.8rem; }
  .page-hero-content p { font-size: 0.88rem; }
  body:has(.demo-notice) .page-hero-pad { padding-top: calc(var(--header-h) + 28px + var(--sp-lg)); }
}

@media (max-width: 480px) {
  :root { --sp-xl: 1.4rem; --sp-lg: 1.2rem; }
  h1 { font-size: 1.7rem; }
  .hero h1 { font-size: 1.7rem; }
  .hero-kicker { font-size: 0.55rem; padding: 0.2rem 0.6rem; letter-spacing: 0.15em; }
  .hero-lead { font-size: 0.82rem; }
  .btn { font-size: 0.72rem; padding: 0.75rem 1.5rem; }

  /* Detail specs stacked */
  .detail-specs { flex-direction: column; }
  .detail-spec  { border-right: none; border-bottom: 1px solid var(--sand-mid); flex: auto; }
  .detail-spec:last-child { border-bottom: none; }
  .detail-spec .spec-val { font-size: 1.2rem; }
  .detail-spec .spec-lbl { font-size: 0.55rem; }

  /* Detail description */
  .detail-head h1 { font-size: 1.4rem; }
  .detail-content h2 { font-size: 1.1rem !important; }
  .detail-content p { font-size: 0.82rem; line-height: 1.65; }
  .detail-hero-img { height: 180px; }
  .detail-price-big { font-size: 1.5rem; }

  /* Pricing table — horizontal scroll fallback */
  .pricing-table { font-size: 0.68rem; }
  .pricing-table th { font-size: 0.52rem; padding: 0.5rem 0.35rem; }
  .pricing-table td { font-size: 0.72rem; padding: 0.55rem 0.35rem; }
  .pricing-table .price-val { font-size: 0.82rem; }

  /* Amenity grid single column */
  .amenity-grid { grid-template-columns: 1fr; }
  .amenity-item { font-size: 0.75rem; }

  /* Contact page specific mobile */
  .contact-item { gap: 0.6rem; }
  .contact-item-icon { width: 36px; height: 36px; font-size: 0.9rem; }
  .info-callout { padding: var(--sp-md); }

  .property-card-desc { font-size: 0.82rem; }
  .property-card-specs { font-size: 0.72rem; }
  .contact-info-card { padding: var(--sp-md); }
  .booking-card { padding: var(--sp-md); }
  .calendar-day { padding: 0.5rem 0; font-size: 0.75rem; }
  .calendar-day-name { font-size: 0.52rem; padding: 0.4rem 0; }
  .calendar-header .month-label { font-size: 0.95rem; }
  .demo-notice { font-size: 0.52rem; padding: 0.35rem; }
  .demo-notice a { display: none; }

  /* Adjust page-hero top padding for smaller header/demo-notice */
  body:has(.demo-notice) .page-hero-pad { padding-top: calc(var(--header-h) + 24px + var(--sp-lg)); }
}

/* Demo safety banner */
.demo-banner {
  background: #111827;
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.4;
  position: relative;
  z-index: 10000;
}

.demo-banner__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.65rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.demo-banner small {
  color: rgba(255,255,255,0.78);
}

.demo-banner a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .demo-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }
}
