/* ───────────────────────────────────────────────────────────────────
   DOMI VILLAS — Brand System
   Palette derived from the official wordmark: sage + cream + ink
   ─────────────────────────────────────────────────────────────────── */

:root {
  /* Brand palette */
  --sage-50:  #f3f1ea;
  --sage-100: #e7e2d3;
  --sage-200: #cfc8a8;
  --sage-300: #a8b08c;
  --sage-500: #6f7d5e;     /* primary brand sage */
  --sage-700: #4f5a44;
  --sage-900: #303829;

  --cream:    #f6f1e6;
  --cream-2:  #ede5d3;
  --paper:    #faf6ec;

  --ink:      #1f2418;
  --ink-soft: #3a4030;
  --muted:    #6e6c5d;
  --line:     rgba(31, 36, 24, 0.12);

  --accent:   #8b6f3a;     /* warm bronze for CTAs */
  --accent-h: #6f5828;

  /* Typography */
  --serif: "Cormorant Garamond", "Cormorant", "EB Garamond", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono:  "JetBrains Mono", "SF Mono", Menlo, monospace;

  /* Scale */
  --container: 1240px;
  --container-narrow: 920px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-y: clamp(64px, 9vw, 132px);
  --radius: 2px;
  --radius-card: 4px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.08;
  margin: 0;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6.5vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.6vw, 1.35rem); font-family: var(--sans); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.78rem; color: var(--sage-700); }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-700);
  font-weight: 500;
  margin-bottom: 1.2rem;
  display: inline-block;
}

.lead {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.9vw, 1.55rem);
  line-height: 1.45;
  color: var(--ink-soft);
  font-weight: 400;
  font-style: italic;
}

.muted { color: var(--muted); }

/* Layout ────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container-narrow {
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
section { padding-block: var(--section-y); position: relative; }
section.tight { padding-block: clamp(40px, 6vw, 80px); }

.section-cream { background: var(--cream); }
.section-paper { background: var(--paper); }
.section-sage { background: var(--sage-500); color: var(--cream); }
.section-sage h1, .section-sage h2, .section-sage h3 { color: var(--cream); }
.section-sage .eyebrow { color: var(--sage-100); }

/* ─── FOUNDER / OCEAN SECTION ──────────────────────────────── */
#about {
  background-image: url('../img/common/ocean-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
#about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--paper) 0%,
    rgba(250, 246, 236, 0.92) 12%,
    rgba(250, 246, 236, 0.87) 50%,
    rgba(250, 246, 236, 0.92) 88%,
    var(--paper) 100%
  );
  z-index: 0;
}
#about > * { position: relative; z-index: 1; }
@media (max-width: 768px) {
  #about { background-attachment: scroll; }
}

.divider-line {
  width: 60px; height: 1px; background: var(--sage-500);
  margin: 24px 0;
}

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 12px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.3s var(--ease), backdrop-filter 0.3s var(--ease), padding 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(250, 246, 236, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding-block: 8px;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif); font-size: 1.4rem; letter-spacing: 0.04em;
  color: var(--ink);
}
.nav.on-dark .nav-brand,
.nav.on-dark .nav-link { color: var(--cream); }
.nav.scrolled.on-dark .nav-brand,
.nav.scrolled.on-dark .nav-link { color: var(--ink); }

/* Brand logo in nav. Two variants are stacked; CSS shows whichever
   is appropriate for the nav's current state. */
.nav-brand-logo {
  height: 44px; width: auto;
  display: block;
}
@media (max-width: 820px) {
  .nav-brand-logo { height: 36px; }
}
/* Hero (transparent on photo) shows the cream version.
   Scrolled / cream pages show the dark teal version.       */
.nav-brand-logo.on-dark-logo { display: block; }
.nav-brand-logo.on-light-logo { display: none; }
.nav.scrolled .nav-brand-logo.on-dark-logo,
.nav:not(.on-dark) .nav-brand-logo.on-dark-logo { display: none; }
.nav.scrolled .nav-brand-logo.on-light-logo,
.nav:not(.on-dark) .nav-brand-logo.on-light-logo { display: block; }

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-link {
  font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 500; transition: opacity 0.2s;
  position: relative;
}
.nav-link:hover { opacity: 0.7; }
.nav-link.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: currentColor;
}

.nav-toggle {
  display: none;
  background: transparent; border: 0;
  padding: 8px;
  color: inherit;
}
.nav-toggle svg { display: block; }

@media (max-width: 820px) {
  .nav-links {
    position: fixed; inset: 0;
    background: var(--paper);
    flex-direction: column; justify-content: center;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    gap: 28px;
    z-index: 40;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { font-size: 1.4rem; font-family: var(--serif); letter-spacing: 0.04em; text-transform: none; }
  .nav-toggle { display: block; z-index: 50; position: relative; }
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  background: transparent;
  color: var(--ink);
  white-space: nowrap;
}
.btn:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.btn-primary {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn-primary:hover { background: var(--accent); border-color: var(--accent); color: white; }

.btn-cream {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.btn-cream:hover { background: transparent; color: var(--cream); border-color: var(--cream); }

.btn-arrow::after {
  content: "→";
  margin-left: 4px;
  transition: transform 0.25s var(--ease);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  color: var(--cream);
  text-align: center;
}
.hero-media {
  position: absolute; inset: 0; z-index: 0;
}
.hero-media video,
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.06);
  will-change: opacity, transform;
}
.hero-slide.is-active {
  opacity: 1;
  animation: kenBurns 14s ease-in-out forwards;
}
@keyframes kenBurns {
  0%   { transform: scale(1.06) translate(0%, 0%); }
  100% { transform: scale(1.14) translate(-1.6%, -1.0%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide.is-active { animation: none; transform: scale(1.04); }
  .hero-slide { transition: opacity 0.4s linear; }
}
.hero-media::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg,
    rgba(31, 36, 24, 0.55) 0%,
    rgba(31, 36, 24, 0.30) 38%,
    rgba(31, 36, 24, 0.70) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 100px var(--gutter) 60px;
  max-width: 920px;
}
.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: var(--cream);
  font-weight: 300;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--sage-100);
}
.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  margin-top: 1.4rem;
  color: rgba(246, 241, 230, 0.92);
  letter-spacing: 0.02em;
}
.hero-cta {
  margin-top: 2.6rem;
  display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap;
}
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  font-size: 0.7rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(246, 241, 230, 0.7);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll::after {
  content: ""; width: 1px; height: 36px; background: currentColor;
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.3); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Hero variants */
.hero.compact { min-height: 70vh; }
.hero.minimal { min-height: 55vh; }

/* ─── VILLA CARDS ────────────────────────────────────────── */
.villa-grid {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .villa-grid { grid-template-columns: 1fr 1fr; }
}

.villa-card {
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
  position: relative;
}
.villa-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px -30px rgba(31, 36, 24, 0.25);
}
.villa-card-media {
  position: relative; aspect-ratio: 4/3;
  overflow: hidden; background: var(--sage-100);
}
/* Stretched link making the photo area click through to the villa page */
.villa-card-link {
  position: absolute; inset: 0; z-index: 3;
}
.villa-card-link::before {
  content: ""; position: absolute; inset: 0;
}
/* Card photo slider */
.card-slider-track {
  position: absolute; inset: 0;
}
.card-slider-track img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s var(--ease-out);
  transform: scale(1.02);
}
.card-slider-track img.is-active {
  opacity: 1;
  transform: scale(1);
}
.villa-card:hover .card-slider-track img.is-active { transform: scale(1.05); }

.card-slider-nav {
  position: absolute; top: 50%; z-index: 4;
  transform: translateY(-50%);
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(31, 36, 24, 0.42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--cream);
  border: 0; padding: 0;
  font-size: 1.4rem; line-height: 1;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s var(--ease), background 0.2s;
}
.card-slider-nav.prev { left: 14px; }
.card-slider-nav.next { right: 14px; }
.card-slider-nav:hover { background: rgba(31, 36, 24, 0.7); }
.villa-card:hover .card-slider-nav,
.villa-card-media:focus-within .card-slider-nav { opacity: 1; }
@media (hover: none) { .card-slider-nav { opacity: 1; } }

.card-slider-dots {
  position: absolute; bottom: 14px; left: 50%; z-index: 5;
  transform: translateX(-50%);
  display: flex; gap: 6px;
  padding: 6px 4px;
}
.card-slider-dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: rgba(246, 241, 230, 0.55);
  border: 0; padding: 0; cursor: pointer;
  transition: background 0.25s, width 0.25s;
}
.card-slider-dot:hover { background: rgba(246, 241, 230, 0.85); }
.card-slider-dot.is-active {
  background: var(--cream);
  width: 18px; border-radius: 999px;
}

.villa-card-badge {
  position: absolute; top: 16px; left: 16px; z-index: 4;
  pointer-events: none;
  background: rgba(250, 246, 236, 0.95);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500; color: var(--sage-700);
}

.villa-card-body {
  padding: 32px clamp(24px, 3vw, 40px) 0;
  display: flex; flex-direction: column; flex: 1;
}
.villa-card-actions {
  padding: 0 clamp(24px, 3vw, 40px) clamp(32px, 4vw, 40px);
}
.villa-card-title {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
  margin-bottom: 6px;
}
.villa-card-title h3 { font-size: clamp(1.7rem, 2.6vw, 2.2rem); }
.villa-card-rating {
  font-size: 0.85rem; color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 500;
}
.villa-card-rating .star { color: var(--accent); }

.villa-card-meta {
  display: flex; flex-wrap: wrap; gap: 18px;
  font-size: 0.85rem; color: var(--muted);
  margin-block: 12px 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.villa-card-meta span { display: inline-flex; align-items: center; gap: 6px; }

.villa-card-desc {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
  flex: 1;
}
.villa-card-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 24px;
}
/* Body becomes a single click target. Inline-link to Airbnb opts out
   so its target attribute still works. */
.villa-card-body {
  text-decoration: none; color: inherit;
  cursor: pointer;
}
.villa-card-body:hover .villa-card-title h3 { color: var(--accent); }
.villa-card-body .btn {
  pointer-events: auto;
}

/* ─── GALLERY ────────────────────────────────────────────── */
.gallery-section { padding-block: var(--section-y); }
.gallery-section + .gallery-section { padding-top: 0; }

.gallery-header {
  display: flex; align-items: end; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.gallery-header h2 { max-width: 24ch; }
.gallery-header p { max-width: 50ch; color: var(--ink-soft); font-size: 1.05rem; }

.gallery-grid {
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 800px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 6px; }
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--sage-100);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.4s;
}
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 16/10; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: 4/9; }
@media (max-width: 799px) {
  .gallery-item.wide, .gallery-item.tall { grid-column: auto; grid-row: auto; aspect-ratio: 4/5; }
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(31, 36, 24, 0.96);
  z-index: 100;
  display: none;
  align-items: center; justify-content: center;
  padding: clamp(20px, 4vw, 60px);
}
.lightbox.open { display: flex; animation: fadeIn 0.25s var(--ease); }
@keyframes fadeIn { from {opacity: 0;} to {opacity: 1;} }
.lightbox img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(246, 241, 230, 0.1);
  color: var(--cream);
  border: 1px solid rgba(246, 241, 230, 0.3);
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  border-radius: 50%;
  transition: all 0.2s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(246, 241, 230, 0.25);
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
@media (max-width: 600px) {
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  .lightbox-close { top: 12px; right: 12px; }
}

/* ─── ABOUT / FOUNDERS ───────────────────────────────────── */
.founders-grid {
  display: grid;
  gap: clamp(40px, 5vw, 72px);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) {
  .founders-grid { grid-template-columns: 1fr; }
}
.founder {
  display: flex; flex-direction: column; gap: 24px;
}
.founder-portrait {
  width: 320px;
  height: 320px;
  max-width: 85vw;
  max-height: 85vw;
  margin-inline: auto;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: radial-gradient(circle, black 62%, transparent 100%);
  mask-image: radial-gradient(circle, black 62%, transparent 100%);
  box-shadow: 0 8px 32px rgba(31, 36, 24, 0.12);
}
.founder-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}
.founder-name {
  font-size: 1.05rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sage-700); font-weight: 500;
  margin-bottom: 6px;
}
.founder h3 {
  margin-bottom: 18px;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
}
.founder-role {
  font-family: var(--serif); font-style: italic;
  color: var(--accent);
  margin-bottom: 18px;
  font-size: 1.05rem;
}
.founder-bio {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
}
.founder-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: 22px;
  font-size: 0.82rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.founder-meta span {
  display: inline-flex; align-items: center; gap: 6px;
}

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonials {
  background:
    linear-gradient(rgba(246, 241, 230, 0.93), rgba(246, 241, 230, 0.93)),
    url('../img/common/pattern.png');
  background-size: 360px;
}
/* Testimonial slider */
.testimonial-slider {
  position: relative;
  margin-top: 56px;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: stretch;
  gap: clamp(8px, 1.4vw, 18px);
}
.slider-viewport {
  overflow: hidden;
  position: relative;
}
.slider-track {
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.slider-track .testimonial {
  flex: 0 0 100%;
  min-width: 0;
}
@media (min-width: 700px) {
  .slider-track .testimonial { flex-basis: calc((100% - clamp(16px, 2vw, 28px)) / 2); }
}
@media (min-width: 1100px) {
  .slider-track .testimonial { flex-basis: calc((100% - 2 * clamp(16px, 2vw, 28px)) / 3); }
}
.slider-arrow {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--sage-700);
  width: 44px; height: 44px;
  align-self: center;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.slider-arrow:hover {
  background: var(--sage-500);
  color: var(--cream);
  border-color: var(--sage-500);
}
.slider-arrow:disabled {
  opacity: 0.3; cursor: not-allowed;
}
.slider-arrow:disabled:hover {
  background: transparent; color: var(--sage-700); border-color: var(--line);
}
.slider-dots {
  grid-column: 1 / -1;
  display: flex; gap: 8px;
  justify-content: center;
  margin-top: 28px;
}
.slider-dot {
  width: 28px; height: 2px;
  background: rgba(31, 36, 24, 0.18);
  border: none; padding: 0;
  cursor: pointer;
  transition: background 0.25s;
}
.slider-dot.is-active {
  background: var(--sage-500);
}
@media (max-width: 600px) {
  .testimonial-slider { grid-template-columns: 1fr; }
  .slider-arrow { display: none; }
}

.testimonial {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 32px clamp(24px, 2.6vw, 36px);
  position: relative;
  display: flex; flex-direction: column; gap: 18px;
}
.testimonial::before {
  content: """; /* opening quote */
  position: absolute;
  top: 8px; left: 18px;
  font-family: var(--serif);
  font-size: 4.5rem; color: var(--sage-300);
  line-height: 1;
  font-style: italic;
}
.testimonial-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--ink);
  position: relative;
  padding-top: 12px;
}
.testimonial-attribution {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-700);
  font-weight: 500;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; flex-wrap: wrap;
}
.testimonial-attribution .source {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}

/* ─── LOCATION ───────────────────────────────────────────── */
.location-grid {
  display: grid;
  gap: clamp(28px, 3vw, 56px);
  grid-template-columns: 1fr;
  margin-top: 48px;
}
@media (min-width: 900px) { .location-grid { grid-template-columns: 1.1fr 0.9fr; } }

/* Clickable location heading + visual */
.location-heading-link {
  display: inline-block;
  text-decoration: none; color: inherit;
  transition: color 0.2s;
}
.location-heading-link:hover { color: var(--accent); }
.location-heading-link h3 {
  display: inline-flex; align-items: baseline; gap: 14px;
}
.location-arrow {
  font-family: var(--sans);
  font-size: 0.9em;
  opacity: 0.55;
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
  display: inline-block;
}
.location-heading-link:hover .location-arrow {
  transform: translateX(6px); opacity: 1;
}
.location-visual-link {
  display: block; text-decoration: none; color: inherit;
  cursor: pointer;
}
.location-visual-link img { transition: transform 0.9s var(--ease-out); }
.location-visual-link:hover img { transform: scale(1.04); }
.location-cta {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.78rem; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.8;
}
.location-visual-link:hover .location-cta { opacity: 1; }

.location-content h3 { margin-bottom: 16px; font-size: clamp(1.6rem, 2.4vw, 2rem); }
.location-content p { color: var(--ink-soft); font-size: 1.02rem; max-width: 56ch; }

.poi-list {
  list-style: none;
  padding: 0; margin: 28px 0 0;
  display: grid; gap: 14px;
}
.poi-list li {
  display: flex; align-items: baseline; gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.poi-list li:last-child { border-bottom: 0; }
.poi-name { font-weight: 500; color: var(--ink); flex: 1; }
.poi-meta { color: var(--muted); font-size: 0.82rem; white-space: nowrap; }
.poi-rating { color: var(--accent); font-weight: 500; }

.location-visual {
  background: var(--sage-100);
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
}
.location-visual img { width: 100%; height: 100%; object-fit: cover; }
.location-visual-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(31, 36, 24, 0.85));
  color: var(--cream);
}
.location-visual-overlay h4 {
  color: var(--cream); margin-bottom: 4px;
  font-family: var(--serif); font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0;
  text-transform: none;
}
.location-visual-overlay p { color: rgba(246, 241, 230, 0.85); font-size: 0.9rem; margin: 0; }

/* ─── COMING SOON TEASER ─────────────────────────────────── */
.coming-soon {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.coming-soon::before {
  content: "";
  position: absolute; inset: 0;
  background: url('../img/common/pattern.png') center / 480px;
  opacity: 0.07;
  mix-blend-mode: screen;
}
.coming-soon .container {
  position: relative; z-index: 1;
}
.coming-soon-grid {
  display: grid;
  gap: clamp(40px, 5vw, 72px);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .coming-soon-grid { grid-template-columns: 1.2fr 0.8fr; }
}
.coming-soon h2 { color: var(--cream); }
.coming-soon .eyebrow { color: var(--sage-200); }
.coming-soon-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream);
  background: rgba(246, 241, 230, 0.12);
  border: 1px solid rgba(246, 241, 230, 0.22);
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 500;
}
.coming-soon-tag::before {
  content: ""; width: 8px; height: 8px; background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(139, 111, 58, 0.7);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(139, 111, 58, 0.7); }
  50% { box-shadow: 0 0 0 10px rgba(139, 111, 58, 0); }
}
.coming-soon-meta {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(246, 241, 230, 0.15);
}
.coming-soon-meta dt {
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sage-200); font-weight: 500;
  margin-bottom: 6px;
}
.coming-soon-meta dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.coming-soon-visual {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--sage-700), var(--sage-900));
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(246, 241, 230, 0.12);
}
.coming-soon-visual-text {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 40px;
}
.coming-soon-visual-text .num {
  font-family: var(--serif);
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.04em;
  font-style: italic;
}
.coming-soon-visual-text .label {
  font-size: 0.72rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--sage-100);
  margin-top: 18px;
}
.coming-soon-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: url('../img/common/pattern.png') center / 320px;
  opacity: 0.10;
}

/* ─── DETAIL PAGE — FACT SHEET ───────────────────────────── */
.fact-sheet {
  display: grid;
  gap: clamp(32px, 4vw, 56px);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) { .fact-sheet { grid-template-columns: 1.2fr 0.8fr; } }

.fact-features {
  display: grid;
  gap: 14px 28px;
  grid-template-columns: 1fr 1fr;
  margin-top: 28px;
  font-size: 0.95rem;
}
.fact-features div {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.fact-features dt {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
  margin-bottom: 4px;
}
.fact-features dd { margin: 0; color: var(--ink); font-weight: 500; }

.fact-cta-card {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(28px, 3vw, 40px);
  border-radius: var(--radius-card);
}
.fact-cta-card .price {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  margin-bottom: 4px;
}
.fact-cta-card .price small {
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  opacity: 0.7;
  font-weight: 400;
  margin-left: 6px;
}
.fact-cta-card p { color: rgba(246, 241, 230, 0.75); font-size: 0.95rem; }
.fact-cta-card .btn { width: 100%; justify-content: center; margin-top: 20px; }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px 32px;
  margin-top: 40px;
  list-style: none;
  padding: 0;
}
.amenities-grid li {
  display: flex; align-items: center; gap: 12px;
  padding-block: 8px;
  font-size: 0.95rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.amenities-grid li::before {
  content: ""; width: 6px; height: 6px;
  background: var(--sage-500);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--sage-900);
  color: var(--sage-100);
  padding-block: clamp(60px, 8vw, 100px);
}
.footer-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.2fr 0.8fr 0.8fr; } }

.footer-brand-mark {
  font-family: var(--serif); font-size: 2.2rem;
  color: var(--cream); letter-spacing: 0.02em;
  line-height: 1;
}
.footer-tagline {
  font-family: var(--serif); font-style: italic;
  margin-top: 14px; color: var(--sage-100); opacity: 0.85;
}
.footer-col h5 {
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream); font-family: var(--sans); font-weight: 500;
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { color: var(--sage-100); transition: color 0.2s; font-size: 0.95rem; }
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: 24px;
  border-top: 1px solid rgba(246, 241, 230, 0.15);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 0.82rem; color: var(--sage-100); opacity: 0.7;
}

/* ─── CONCIERGE SECTION ─── */
#concierge {
  overflow: hidden;
  background-color: #f6f1e6;
  background-image:
    radial-gradient(circle, rgba(111, 125, 94, 0.12) 1.2px, transparent 1.5px),
    radial-gradient(ellipse 90% 50% at 50% 0%, #fdeed8 0%, #f6f1e6 60%);
  background-size: 22px 22px, 100% 100%;
  background-repeat: repeat, no-repeat;
}

/* Intro block */
.concierge-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(48px, 7vw, 80px);
}
.concierge-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 6px 14px;
  background: rgba(111, 125, 94, 0.1);
  border-radius: 100px;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5b8c3f;
  position: relative;
}
.pulse-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #5b8c3f;
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(3); opacity: 0; }
}
.pulse-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-700);
  font-weight: 500;
}

/* Typing demo */
.typing-demo {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 10px 18px;
  background: var(--cream-2);
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  min-height: 42px;
  max-width: 90%;
}
.typing-text {
  font-family: var(--sans);
  white-space: nowrap;
  overflow: hidden;
}
.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: var(--sage-500);
  margin-left: 2px;
  animation: blink 0.8s step-end infinite;
}
@keyframes blink {
  50% { opacity: 0; }
}

/* Accordion */
.accordion {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.accordion-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.accordion-item:hover {
  border-color: rgba(111, 125, 94, 0.3);
}
.accordion-item.is-open {
  border-color: rgba(111, 125, 94, 0.4);
  box-shadow: 0 6px 24px rgba(31, 36, 24, 0.08);
}

.accordion-header {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 22px 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition: background 0.2s var(--ease);
}
.accordion-header:hover {
  background: rgba(111, 125, 94, 0.04);
}
.accordion-number {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--sage-300);
  flex-shrink: 0;
  min-width: 28px;
  transition: color 0.3s var(--ease);
}
.accordion-item.is-open .accordion-number {
  color: var(--sage-500);
}
.accordion-header-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.accordion-title {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  color: var(--ink);
  line-height: 1.2;
}
.accordion-teaser {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}
.accordion-chevron {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s var(--ease-out);
}
.accordion-chevron::before,
.accordion-chevron::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  background: var(--sage-500);
  border-radius: 1px;
  transform-origin: center;
}
.accordion-chevron::before {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.3s var(--ease-out);
}
.accordion-chevron::after {
  transform: translate(-50%, -50%) rotate(0deg);
  transition: transform 0.3s var(--ease-out);
}
.accordion-item.is-open .accordion-chevron::before {
  transform: translate(-50%, -50%) rotate(0deg);
}

/* Accordion panel */
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}
.accordion-item.is-open .accordion-panel {
  max-height: 1200px;
}
.accordion-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 0 24px 28px;
  align-items: start;
}
.accordion-visual {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 4px 16px rgba(31, 36, 24, 0.1);
}
.accordion-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.concierge-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(111, 125, 94, 0.85);
  padding: 5px 12px;
  border-radius: 100px;
  font-weight: 500;
  backdrop-filter: blur(4px);
}
.accordion-body {
  padding-top: 4px;
}
.accordion-desc {
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

/* Chat thread */
.chat-thread {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.chat-bubble {
  max-width: 85%;
  padding: 10px 15px;
  border-radius: 18px;
  font-size: 0.9rem;
  line-height: 1.5;
  position: relative;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.accordion-item.is-open .chat-thread .chat-bubble {
  opacity: 1;
  transform: translateY(0);
}
.accordion-item.is-open .chat-bubble:nth-child(1) { transition-delay: 100ms; }
.accordion-item.is-open .chat-bubble:nth-child(2) { transition-delay: 250ms; }
.accordion-item.is-open .chat-bubble:nth-child(3) { transition-delay: 400ms; }
.accordion-item.is-open .chat-bubble:nth-child(4) { transition-delay: 550ms; }
.chat-bubble p { margin: 0; }
.chat-bubble.guest {
  align-self: flex-start;
  background: var(--cream-2);
  color: var(--ink);
  border-bottom-left-radius: 4px;
}
.chat-bubble.agent {
  align-self: flex-end;
  background: var(--sage-500);
  color: var(--cream);
  border-bottom-right-radius: 4px;
}
.chat-sender {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 3px;
  color: var(--sage-100);
}
.chat-time {
  display: block;
  font-size: 0.6rem;
  color: var(--muted);
  margin-top: 4px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.chat-bubble.agent .chat-time { color: rgba(246, 241, 230, 0.55); }

/* Responsive */
@media (max-width: 860px) {
  .accordion-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .accordion-visual { aspect-ratio: 16 / 10; }
  .accordion-header { padding: 18px 18px; }
  .accordion-content { padding: 0 18px 22px; }
}
@media (max-width: 480px) {
  .chat-bubble { font-size: 0.84rem; max-width: 90%; }
  .accordion-teaser { font-size: 0.78rem; }
  .typing-demo { font-size: 0.82rem; }
}
@media (prefers-reduced-motion: reduce) {
  .chat-bubble { opacity: 1; transform: none; }
  .pulse-dot::after { animation: none; }
  .typing-cursor { animation: none; }
}

/* ─── UTILITIES + ANIMATIONS ─── *//* ─── UTILITIES + ANIMATIONS ─────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Failsafe: if JS hasn't loaded after 2s, show content */
@keyframes safetyReveal { to { opacity: 1; transform: none; } }
html.no-js [data-reveal],
[data-reveal] {
  animation: safetyReveal 0.001s ease-out 3s forwards;
}
[data-reveal].is-visible {
  animation: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ─── PAGE HEADER (sub-pages) ────────────────────────────── */
.page-header {
  padding: 180px var(--gutter) 60px;
  text-align: center;
  background: var(--cream);
  position: relative;
}
.page-header h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  margin-bottom: 12px;
}
.page-header .lead { max-width: 56ch; margin-inline: auto; }
.breadcrumb {
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sage-700); margin-bottom: 20px;
}
.breadcrumb a { color: inherit; }
.breadcrumb a:hover { color: var(--ink); }

.detail-hero {
  position: relative;
  height: 78vh; min-height: 540px; max-height: 800px;
  overflow: hidden;
}
.detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.detail-hero-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: end;
  padding: 0 var(--gutter) clamp(40px, 6vw, 80px);
  background: linear-gradient(180deg,
    rgba(31, 36, 24, 0.55) 0%,
    rgba(31, 36, 24, 0.15) 22%,
    rgba(31, 36, 24, 0.15) 45%,
    rgba(31, 36, 24, 0.85) 100%);
  color: var(--cream);
}
.detail-hero-overlay-inner {
  max-width: var(--container);
  margin-inline: auto;
  width: 100%;
}
.detail-hero h1 {
  color: var(--cream);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 300;
  margin-bottom: 12px;
}
.detail-hero .lead { color: rgba(246, 241, 230, 0.92); }
.detail-hero-meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-top: 18px;
  font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(246, 241, 230, 0.85);
}

/* Featured large image strip */
.feature-strip {
  position: relative;
  height: clamp(400px, 60vh, 660px);
  overflow: hidden;
}
.feature-strip img { width: 100%; height: 100%; object-fit: cover; }

/* Two-up image */
.two-up {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}
@media (min-width: 700px) { .two-up { grid-template-columns: 1fr 1fr; } }
.two-up img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }

/* Quote block */
.quote-block {
  text-align: center;
  max-width: 56ch;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) var(--gutter);
}
.quote-block .quote-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.4;
  color: var(--ink);
}
.quote-block .quote-attribution {
  margin-top: 24px;
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sage-700);
}

/* ─── STICKY BOOKING BAR ─────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
  text-decoration: none;
  cursor: pointer;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta-text {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.sticky-cta-text strong {
  font-weight: 600;
  color: var(--ink);
}
.sticky-cta-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 14px 36px;
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.25s var(--ease);
}
.sticky-cta:hover .sticky-cta-book {
  background: var(--accent);
}
@media (max-width: 560px) {
  .sticky-cta { padding: 10px 16px; }
  .sticky-cta-text { font-size: 0.74rem; }
  .sticky-cta-text .sticky-cta-sub { display: none; }
  .sticky-cta-book { padding: 11px 24px; font-size: 0.78rem; }
}
@media (min-width: 701px) {
  .sticky-cta { padding: 14px clamp(24px, 5vw, 48px); }
}
