/* ============================================================================
   Rent4Vacay — design system
   ============================================================================
   Built to match WEF's visual sophistication while distinguishing R4V via
   palette + iconography. Same typographic DNA (Fraunces serif + Inter sans),
   same generous spacing rhythm, same eyebrow/section-num/intro patterns.
   ============================================================================ */

:root {
  /* ----- palette ----- */
  --r4v-primary:    #3A7A4A;   /* palm green — primary accent (matches logo) */
  --r4v-primary-2:  #2F6A3D;   /* hover/darker palm */
  --r4v-primary-3:  #1F4D2A;   /* darkest palm, used for dark sections */
  --r4v-accent:     #E89B7C;   /* warm coral — secondary accent */
  --r4v-accent-2:   #D27F5B;   /* coral hover */
  --r4v-sand:       #E8C57A;   /* gold-sand, tertiary accent */
  --r4v-cream:      #FAF7F1;   /* page background */
  --r4v-cream-2:    #F0EBE0;   /* alt section background */
  --r4v-paper:      #FFFFFF;   /* card surface */
  --r4v-ink:        #14201E;   /* near-black */
  --r4v-ink-soft:   #3A4744;
  --r4v-muted:      #7A857F;
  --r4v-rule:       #E5DDCB;   /* warm border line */
  --r4v-rule-soft:  rgba(20, 32, 30, 0.08);

  /* ----- typography ----- */
  --r4v-serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --r4v-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;

  /* ----- layout ----- */
  --r4v-container: 1280px;
  --r4v-gutter:    clamp(20px, 4vw, 48px);
  --r4v-tr:        0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

/* ----------------------------------------------------------------------------
   Reset / base
   ---------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--r4v-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--r4v-ink);
  background: var(--r4v-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--r4v-tr), opacity var(--r4v-tr);
}
a:hover { color: var(--r4v-primary); }
::selection { background: var(--r4v-primary); color: var(--r4v-cream); }

/* ----------------------------------------------------------------------------
   Typography
   ---------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--r4v-serif);
  font-weight: 300;
  color: var(--r4v-ink);
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  font-variation-settings: "SOFT" 30, "WONK" 0, "opsz" 100;
}
h1 { font-size: clamp(2.6rem, 5.4vw, 4.8rem); line-height: 1.02; }
h2 { font-size: clamp(2.1rem, 3.6vw, 3.4rem); line-height: 1.08; }
h3 { font-size: clamp(1.4rem, 2vw, 1.8rem); line-height: 1.22; font-weight: 400; }
h4 { font-size: clamp(1.1rem, 1.4vw, 1.3rem); line-height: 1.3; font-weight: 500; }
em { font-style: italic; color: var(--r4v-primary); font-weight: 300; }
strong { font-weight: 500; }
p {
  margin: 0 0 1rem;
  color: var(--r4v-ink-soft);
  max-width: 65ch;
}

.eyebrow {
  font-family: var(--r4v-sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--r4v-muted);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--r4v-primary);
}
.section-num {
  font-family: var(--r4v-sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--r4v-muted);
  font-weight: 500;
  margin-bottom: 20px;
  display: block;
}

/* ----------------------------------------------------------------------------
   Layout
   ---------------------------------------------------------------------------- */
.container {
  max-width: var(--r4v-container);
  margin: 0 auto;
  padding: 0 var(--r4v-gutter);
}
.section { padding: clamp(80px, 10vw, 150px) 0; }
.section--tight { padding: clamp(50px, 7vw, 90px) 0; }
.section--alt { background: var(--r4v-cream-2); }
.section--dark {
  background: var(--r4v-primary-3);
  color: var(--r4v-cream);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--r4v-cream); }
.section--dark p { color: rgba(250, 247, 241, 0.78); }
.section--dark .eyebrow { color: rgba(250, 247, 241, 0.7); }
.section--dark .eyebrow::before { background: var(--r4v-accent); }
.section--dark em { color: var(--r4v-accent); }

.intro {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.intro h2 { margin: 14px 0 20px; }
.intro p { max-width: 60ch; margin: 0 auto; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
}
@media (max-width: 820px) {
  .two-col { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------------------
   Top promo strip
   ---------------------------------------------------------------------------- */
.topstrip {
  background: var(--r4v-primary-3);
  color: var(--r4v-cream);
  font-size: 0.78rem;
  padding: 9px 0;
  letter-spacing: 0.04em;
}
.topstrip__inner {
  max-width: var(--r4v-container);
  margin: 0 auto;
  padding: 0 var(--r4v-gutter);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.topstrip__inner strong { color: var(--r4v-sand); font-weight: 600; }
.topstrip__inner a { color: var(--r4v-cream); text-decoration: underline; text-underline-offset: 2px; }
.topstrip__inner a:hover { color: var(--r4v-sand); }

/* ----------------------------------------------------------------------------
   Nav
   ---------------------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--r4v-gutter);
  background: rgba(250, 247, 241, 0.92);
  border-bottom: 1px solid var(--r4v-rule-soft);
  backdrop-filter: saturate(1.6) blur(14px);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  transition: padding var(--r4v-tr), box-shadow var(--r4v-tr);
}
.nav--scrolled {
  padding: 12px var(--r4v-gutter);
  box-shadow: 0 1px 0 var(--r4v-rule), 0 6px 14px -10px rgba(0,0,0,0.1);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: var(--r4v-container);
  margin: 0 auto;
}
.nav__brand {
  font-family: var(--r4v-serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--r4v-primary);
  display: inline-flex;
  align-items: center;
  font-variation-settings: "opsz" 60;
}
.nav__brand span { color: var(--r4v-accent); font-weight: 500; }
.nav__brand:hover { color: var(--r4v-primary); }

.nav__links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--r4v-ink-soft);
}
.nav__links a { opacity: 0.85; transition: opacity var(--r4v-tr), color var(--r4v-tr); }
.nav__links a:hover,
.nav__links a.is-active { opacity: 1; color: var(--r4v-primary); }

.nav__cta,
.nav__links a.nav__cta {
  padding: 11px 22px;
  background: var(--r4v-primary);
  border: 1px solid var(--r4v-primary);
  color: var(--r4v-cream);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  opacity: 1;
  transition: background var(--r4v-tr), border-color var(--r4v-tr), color var(--r4v-tr);
}
.nav__cta:hover,
.nav__links a.nav__cta:hover {
  background: var(--r4v-primary-2);
  border-color: var(--r4v-primary-2);
  color: var(--r4v-cream);
}
.nav__links a.nav__cta.is-active {
  background: var(--r4v-accent);
  border-color: var(--r4v-accent);
  color: var(--r4v-ink);
}

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 28px;
  height: 22px;
  padding: 0;
  position: relative;
  color: inherit;
}
.nav__toggle span {
  position: absolute;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--r4v-ink);
  transition: transform var(--r4v-tr), top var(--r4v-tr), opacity var(--r4v-tr);
}
.nav__toggle span:nth-child(1) { top: 3px; }
.nav__toggle span:nth-child(2) { top: 11px; }
.nav__toggle span:nth-child(3) { top: 19px; }

@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav.is-open {
    flex-wrap: wrap;
    padding-bottom: 24px;
  }
  .nav.is-open .nav__links {
    display: flex;
    flex-basis: 100%;
    flex-direction: column;
    gap: 14px;
    margin-top: 22px;
    text-align: left;
    align-items: flex-start;
  }
  .nav.is-open .nav__links a.nav__cta { align-self: flex-start; }
}

/* ----------------------------------------------------------------------------
   UVP strip (value props under nav)
   ---------------------------------------------------------------------------- */
.uvp-strip {
  background: var(--r4v-cream-2);
  padding: 14px var(--r4v-gutter);
  text-align: center;
  font-size: 0.85rem;
  color: var(--r4v-ink-soft);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-bottom: 1px solid var(--r4v-rule);
}
.uvp-strip strong { color: var(--r4v-primary); font-weight: 600; }
.uvp-strip .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--r4v-muted);
  display: inline-block;
}

/* ----------------------------------------------------------------------------
   Hero — coastal gradient with stylized SVG art (no photo dependencies)
   ---------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--r4v-cream);
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(232, 197, 122, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 15% 75%, rgba(232, 155, 124, 0.32) 0%, transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(232, 155, 124, 0.18) 0%, transparent 50%),
    linear-gradient(165deg, #2A7088 0%, var(--r4v-primary) 35%, var(--r4v-primary-3) 75%, #0B2B3A 100%);
  padding: 80px 0 140px;
}

/* Decorative stars in the sky portion (top portion of the hero) */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 14%, rgba(250, 247, 241, 0.6) 0.6px, transparent 1px),
    radial-gradient(circle at 28% 9%, rgba(250, 247, 241, 0.4) 0.8px, transparent 1.2px),
    radial-gradient(circle at 47% 18%, rgba(250, 247, 241, 0.5) 0.6px, transparent 1px),
    radial-gradient(circle at 62% 11%, rgba(250, 247, 241, 0.45) 0.7px, transparent 1.1px),
    radial-gradient(circle at 88% 22%, rgba(250, 247, 241, 0.55) 0.6px, transparent 1px),
    radial-gradient(circle at 35% 30%, rgba(250, 247, 241, 0.35) 0.5px, transparent 1px),
    radial-gradient(circle at 75% 6%, rgba(250, 247, 241, 0.5) 0.7px, transparent 1px);
  pointer-events: none;
  z-index: 0;
}
.hero__art {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 0.85;
}
.hero__art svg {
  position: absolute;
  width: 100%;
  height: auto;
}
.hero__art .wave-1 { bottom: -10px;  left: 0; opacity: 0.35; }
.hero__art .wave-2 { bottom: -30px;  left: 0; opacity: 0.5; }
.hero__art .wave-3 { bottom: -60px;  left: 0; opacity: 0.85; }
.hero__art .sun {
  position: absolute;
  top: 12%;
  right: 8%;
  width: clamp(120px, 18vw, 220px);
  height: auto;
  filter: drop-shadow(0 0 60px rgba(232, 197, 122, 0.4));
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 960px;
  padding: 0 var(--r4v-gutter);
}
.hero__eyebrow {
  color: rgba(250, 247, 241, 0.78);
  justify-content: center;
  margin-bottom: 22px;
}
.hero__eyebrow::before { background: var(--r4v-sand); }
.hero__title {
  font-family: var(--r4v-serif);
  font-weight: 300;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--r4v-cream);
  margin: 0 0 24px;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--r4v-sand);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero__sub {
  color: rgba(250, 247, 241, 0.86);
  max-width: 60ch;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  margin: 0 auto 44px;
  line-height: 1.55;
  font-weight: 300;
}
.hero__ctas {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

/* ----------------------------------------------------------------------------
   Hero search widget — large, pill-shaped, the primary control
   ---------------------------------------------------------------------------- */
.search-widget {
  max-width: 920px;
  margin: 0 auto;
  background: var(--r4v-paper);
  color: var(--r4v-ink);
  border-radius: 999px;
  padding: 8px 8px 8px 18px;
  display: grid;
  grid-template-columns: 1.3fr 1.3fr 1fr auto;
  align-items: center;
  gap: 0;
  text-align: left;
  box-shadow:
    0 30px 80px -20px rgba(11, 43, 58, 0.45),
    0 16px 40px -16px rgba(11, 43, 58, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  transition: box-shadow 0.4s ease;
}
/* 2-column variant: single date-range pill + guests + submit */
.search-widget.search-widget--2col {
  grid-template-columns: 2fr 1fr auto;
}
.search-widget:hover {
  box-shadow:
    0 36px 90px -20px rgba(11, 43, 58, 0.55),
    0 18px 44px -16px rgba(11, 43, 58, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}
.search-widget__field {
  position: relative;
  padding: 16px 22px;
  cursor: pointer;
  border-radius: 999px;
  transition: background 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.search-widget__field + .search-widget__field {
  box-shadow: -1px 0 0 var(--r4v-rule);
}
.search-widget__field:hover { background: rgba(232, 197, 122, 0.08); }
.search-widget__field:focus-within { background: var(--r4v-cream); }
.search-widget__label {
  font-family: var(--r4v-sans);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--r4v-ink);
  font-weight: 600;
}
.search-widget__field input,
.search-widget__field select {
  width: 100%;
  border: 0;
  background: transparent;
  font-family: var(--r4v-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--r4v-ink-soft);
  padding: 0;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  letter-spacing: 0.005em;
}
.search-widget__field input[type="date"] {
  font-variant-numeric: tabular-nums;
  color-scheme: light;
  min-width: 0;
}
.search-widget__field input::-webkit-calendar-picker-indicator {
  opacity: 0.55;
  cursor: pointer;
}
.search-widget__field select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--r4v-muted) 50%),
    linear-gradient(135deg, var(--r4v-muted) 50%, transparent 50%);
  background-position:
    calc(100% - 12px) calc(50% - 2px),
    calc(100% - 7px) calc(50% - 2px);
  background-size: 5px 5px;
  background-repeat: no-repeat;
  padding-right: 22px;
}
.search-widget__submit {
  background: linear-gradient(135deg, var(--r4v-primary) 0%, var(--r4v-primary-2) 100%);
  color: var(--r4v-cream);
  border: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 16px -4px rgba(30, 95, 116, 0.45);
}
.search-widget__submit:hover {
  background: linear-gradient(135deg, var(--r4v-accent) 0%, var(--r4v-accent-2) 100%);
  transform: scale(1.05);
  box-shadow: 0 10px 22px -4px rgba(232, 155, 124, 0.5);
  color: var(--r4v-ink);
}
.search-widget__submit svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 900px) {
  .search-widget {
    grid-template-columns: 1fr 1fr;
    border-radius: 16px;
    padding: 14px;
    gap: 10px;
  }
  .search-widget__field {
    border-radius: 12px;
    padding: 14px 18px;
    background: var(--r4v-cream);
  }
  .search-widget__field + .search-widget__field { box-shadow: none; }
  .search-widget__submit {
    grid-column: 1 / -1;
    width: 100%;
    height: 56px;
    border-radius: 12px;
    margin-left: 0;
    gap: 12px;
  }
  .search-widget__submit::after {
    content: "Search availability";
    font-family: var(--r4v-sans);
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
  }
}

/* ----------------------------------------------------------------------------
   Flatpickr theming overrides (R4V brand colors)
   ---------------------------------------------------------------------------- */
.flatpickr-calendar {
  background: var(--r4v-paper);
  border: 1px solid var(--r4v-rule);
  box-shadow: 0 24px 60px -16px rgba(11, 43, 58, 0.45);
  border-radius: 10px;
  font-family: var(--r4v-sans);
  width: 320px;
  padding: 6px;
}
.flatpickr-months .flatpickr-month {
  color: var(--r4v-ink);
  fill: var(--r4v-ink);
  height: 42px;
}
.flatpickr-current-month {
  font-family: var(--r4v-serif);
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--r4v-ink);
  padding-top: 6px;
}
.flatpickr-current-month input.cur-year { color: var(--r4v-ink); font-weight: 400; }
.flatpickr-prev-month, .flatpickr-next-month {
  color: var(--r4v-ink) !important;
  fill: var(--r4v-ink) !important;
  padding: 10px;
}
.flatpickr-prev-month:hover svg, .flatpickr-next-month:hover svg {
  fill: var(--r4v-primary) !important;
}
.flatpickr-weekdays { background: transparent; }
.flatpickr-weekday {
  color: var(--r4v-muted);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
  background: transparent;
}
.flatpickr-day {
  color: var(--r4v-ink);
  border-radius: 999px;
  font-weight: 500;
  border: 0;
  font-size: 0.9rem;
  max-width: 38px;
  height: 38px;
  line-height: 38px;
  margin: 1px 0;
}
.flatpickr-day:hover {
  background: var(--r4v-cream-2);
  color: var(--r4v-ink);
  border: 0;
}
.flatpickr-day.today {
  border-color: transparent;
  box-shadow: inset 0 0 0 1px var(--r4v-primary);
}
.flatpickr-day.today:hover { background: var(--r4v-cream-2); }
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
  background: var(--r4v-primary);
  border-color: var(--r4v-primary);
  color: var(--r4v-cream);
  box-shadow: none;
}
.flatpickr-day.inRange,
.flatpickr-day.inRange:hover {
  background: rgba(30, 95, 116, 0.12);
  color: var(--r4v-ink);
  border-radius: 0;
  box-shadow: none;
}
.flatpickr-day.startRange { border-radius: 999px 0 0 999px; }
.flatpickr-day.endRange { border-radius: 0 999px 999px 0; }
.flatpickr-day.startRange.endRange { border-radius: 999px; }
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  color: var(--r4v-muted);
  opacity: 0.4;
}
.flatpickr-day.flatpickr-disabled:hover { background: transparent; cursor: not-allowed; }

/* Single date-range pill — the visible flatpickr-bound input */
.search-widget__field--range input[type="text"] {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
  cursor: pointer;
}
.search-widget__field--range input[type="text"]::placeholder {
  color: var(--r4v-muted);
  opacity: 0.85;
}

/* Legacy .booking-card retained for backward-compat (older pages). New
   hero uses .search-widget exclusively. */
.booking-card {
  max-width: 880px;
  margin: 0 auto;
  background: rgba(250, 247, 241, 0.97);
  color: var(--r4v-ink);
  padding: 28px 30px 22px;
  text-align: left;
  border-radius: 4px;
  box-shadow:
    0 40px 100px -20px rgba(11, 43, 58, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
}
.booking-card__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
  gap: 16px;
  flex-wrap: wrap;
}
.booking-card__title {
  font-family: var(--r4v-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--r4v-ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.booking-card__title em {
  font-style: italic;
  color: var(--r4v-primary);
  font-weight: 400;
}
.booking-card__sub {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--r4v-muted);
  font-weight: 500;
}
.booking-card__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.85fr auto;
  gap: 0;
  border: 1px solid var(--r4v-rule);
  background: var(--r4v-paper);
  border-radius: 2px;
  overflow: hidden;
}
.booking-field {
  padding: 14px 20px;
  border-right: 1px solid var(--r4v-rule);
  position: relative;
  transition: background var(--r4v-tr);
}
.booking-field:hover { background: #FBF8F1; }
.booking-field:last-of-type { border-right: 0; }
.booking-field__label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--r4v-muted);
  font-weight: 600;
  margin-bottom: 6px;
}
.booking-field input,
.booking-field select {
  width: 100%;
  border: 0;
  background: transparent;
  font-family: var(--r4v-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--r4v-ink);
  padding: 0;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.booking-field input[type="date"] {
  font-variant-numeric: tabular-nums;
  color-scheme: light;
}
.booking-field input::-webkit-calendar-picker-indicator {
  opacity: 0.5;
  cursor: pointer;
}
.booking-field select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--r4v-muted) 50%),
    linear-gradient(135deg, var(--r4v-muted) 50%, transparent 50%);
  background-position:
    calc(100% - 12px) calc(50% - 2px),
    calc(100% - 7px) calc(50% - 2px);
  background-size: 5px 5px;
  background-repeat: no-repeat;
  padding-right: 22px;
}

.booking-submit {
  background: var(--r4v-primary);
  color: var(--r4v-cream);
  border: 0;
  padding: 0 38px;
  font-family: var(--r4v-sans);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--r4v-tr);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  white-space: nowrap;
}
.booking-submit:hover { background: var(--r4v-accent); color: var(--r4v-ink); }

.booking-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  font-size: 0.7rem;
  color: var(--r4v-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 10px;
}
.booking-card__perks {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.booking-card__perks span::before {
  content: "✓";
  color: var(--r4v-primary);
  margin-right: 6px;
  font-weight: 700;
}

@media (max-width: 820px) {
  .booking-card__grid { grid-template-columns: 1fr 1fr; }
  .booking-field { border-bottom: 1px solid var(--r4v-rule); }
  .booking-field:nth-child(3) { border-right: 1px solid var(--r4v-rule); border-bottom: 1px solid var(--r4v-rule); grid-column: span 2; }
  .booking-submit { grid-column: span 2; padding: 18px; min-height: auto; }
}
@media (max-width: 480px) {
  .booking-card { padding: 22px 18px 18px; }
  .booking-card__grid { grid-template-columns: 1fr; }
  .booking-field { border-right: 0 !important; }
  .booking-submit { grid-column: span 1; }
}
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  color: rgba(250, 247, 241, 0.65);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  z-index: 3;
}
.hero__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 42px;
  background: rgba(250, 247, 241, 0.55);
  margin: 10px auto 0;
  animation: r4vScrollPulse 2.2s ease-in-out infinite;
}
@keyframes r4vScrollPulse {
  0%, 100% { transform: scaleY(0.25); transform-origin: top; opacity: 0.4; }
  50%      { transform: scaleY(1); opacity: 1; }
}

/* ----------------------------------------------------------------------------
   Hero trust strip
   ---------------------------------------------------------------------------- */
.hero-trust {
  margin: 32px auto 0;
  max-width: 760px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 26px;
  padding: 14px 20px;
  background: rgba(250, 247, 241, 0.12);
  border: 1px solid rgba(250, 247, 241, 0.2);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--r4v-sans);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--r4v-cream);
  font-weight: 500;
}
.hero-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  opacity: 0.92;
}
.hero-trust__item svg {
  width: 14px;
  height: 14px;
  stroke: var(--r4v-sand);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .hero-trust { font-size: 0.68rem; gap: 8px 14px; padding: 11px 16px; }
}

/* ----------------------------------------------------------------------------
   Buttons
   ---------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-family: var(--r4v-sans);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--r4v-ink);
  background: transparent;
  color: var(--r4v-ink);
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--r4v-tr), color var(--r4v-tr), border-color var(--r4v-tr);
}
.btn:hover { background: var(--r4v-ink); color: var(--r4v-cream); }
.btn--primary {
  background: var(--r4v-primary);
  border-color: var(--r4v-primary);
  color: var(--r4v-cream);
}
.btn--primary:hover {
  background: var(--r4v-primary-2);
  border-color: var(--r4v-primary-2);
  color: var(--r4v-cream);
}
.btn--accent {
  background: var(--r4v-accent);
  border-color: var(--r4v-accent);
  color: var(--r4v-ink);
}
.btn--accent:hover {
  background: var(--r4v-accent-2);
  border-color: var(--r4v-accent-2);
  color: var(--r4v-ink);
}
.btn--light {
  border-color: rgba(250, 247, 241, 0.85);
  color: var(--r4v-cream);
}
.btn--light:hover {
  background: var(--r4v-cream);
  border-color: var(--r4v-cream);
  color: var(--r4v-ink);
}

/* ----------------------------------------------------------------------------
   Feature stats (4-up number grid, used on the homepage)
   ---------------------------------------------------------------------------- */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
  text-align: center;
  padding: 60px 0;
  border-top: 1px solid var(--r4v-rule);
  border-bottom: 1px solid var(--r4v-rule);
}
.feature__num {
  font-family: var(--r4v-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--r4v-primary);
  line-height: 1;
  margin-bottom: 10px;
}
.feature__label {
  font-family: var(--r4v-sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--r4v-muted);
  font-weight: 500;
}
@media (max-width: 820px) {
  .features { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

/* ----------------------------------------------------------------------------
   Region showcase block (two-col with stylized art on one side)
   ---------------------------------------------------------------------------- */
.showcase__art {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
  background: var(--r4v-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 28px 60px -28px rgba(11, 43, 58, 0.32);
}
.showcase__art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.showcase__art::before {
  /* Soft gradient wash */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 95, 116, 0.18) 0%, transparent 60%);
  z-index: 1;
}
.showcase__art svg {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}
.showcase__art--lake { background: linear-gradient(180deg, #2C8AAB 0%, #3A7A4A 60%, #1F4D2A 100%); }
.showcase__art--mountain { background: linear-gradient(180deg, #5B7F8E 0%, #2C5468 60%, #1F4D2A 100%); }
.showcase__art--city { background: linear-gradient(180deg, #3A7A4A 0%, #1F4D2A 100%); }

.showcase__body { padding-right: 12px; }
.showcase__body h2 { margin: 14px 0 18px; }
.showcase__body p { margin-bottom: 28px; max-width: 50ch; }
.showcase__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  padding: 18px 0;
  border-top: 1px solid var(--r4v-rule);
  border-bottom: 1px solid var(--r4v-rule);
  margin: 28px 0;
}
.showcase__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.showcase__meta-num {
  font-family: var(--r4v-serif);
  font-size: 1.4rem;
  color: var(--r4v-primary);
}
.showcase__meta-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--r4v-muted);
  font-weight: 500;
}

/* ----------------------------------------------------------------------------
   Property grid (used on homepage portfolio block + properties.html)
   ---------------------------------------------------------------------------- */
.props {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}
.prop {
  display: flex;
  flex-direction: column;
  background: var(--r4v-paper);
  border: 1px solid var(--r4v-rule);
  border-radius: 6px;
  overflow: hidden;
  transition: transform var(--r4v-tr), box-shadow var(--r4v-tr);
}
.prop:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(16, 58, 77, 0.18);
}
.prop__art {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--r4v-primary) 0%, var(--r4v-primary-3) 100%);
  color: var(--r4v-cream);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px 20px;
  overflow: hidden;
}
/* When a real photo is provided, it sits as a layer behind the gradient
   wash — image visible, text overlay legible. */
.prop__art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.prop__art::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 43, 58, 0.05) 0%, rgba(11, 43, 58, 0.55) 100%);
  z-index: 1;
  pointer-events: none;
}
.prop__art::after {
  /* subtle radial highlight in the top-right corner */
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(232, 197, 122, 0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 2;
}
.prop__art-region, .prop__art-name { position: relative; z-index: 3; text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4); }
.prop__art--coral { background: linear-gradient(135deg, #E89B7C 0%, #D27F5B 100%); color: var(--r4v-ink); }
.prop__art--coral::after { background: radial-gradient(circle, rgba(250, 247, 241, 0.4) 0%, transparent 65%); }
.prop__art--sand  { background: linear-gradient(135deg, #E8C57A 0%, #C9A052 100%); color: var(--r4v-ink); }
.prop__art--sand::after { background: radial-gradient(circle, rgba(250, 247, 241, 0.4) 0%, transparent 65%); }
.prop__art--mist  { background: linear-gradient(135deg, #5B7F8E 0%, #2C5468 100%); }
.prop__art--lake  { background: linear-gradient(135deg, #2C8AAB 0%, #3A7A4A 100%); }
.prop__art-region {
  font-family: var(--r4v-sans);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.82;
}
.prop__art-name {
  font-family: var(--r4v-serif);
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}
.prop__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}
.prop__loc {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--r4v-muted);
  font-weight: 500;
}
.prop__title {
  font-family: var(--r4v-serif);
  font-size: 1.18rem;
  font-weight: 400;
  color: var(--r4v-ink);
  margin: 0;
  line-height: 1.25;
}
.prop__meta {
  font-size: 0.92rem;
  color: var(--r4v-ink-soft);
  flex: 1;
  line-height: 1.5;
}
.prop__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--r4v-primary);
  align-self: flex-start;
}
.prop__cta::after {
  content: "→";
  transition: transform var(--r4v-tr);
}
.prop__cta:hover { color: var(--r4v-primary-2); }
.prop__cta:hover::after { transform: translateX(4px); }

/* Region cluster heading */
.region {
  margin-bottom: 60px;
}
.region__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-bottom: 18px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--r4v-rule);
}
.region__name {
  font-family: var(--r4v-serif);
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 400;
  color: var(--r4v-ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.region__name em { color: var(--r4v-primary); font-style: italic; font-weight: 300; }
.region__count {
  font-family: var(--r4v-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--r4v-muted);
  font-weight: 500;
}

/* ----------------------------------------------------------------------------
   Amenity grid (what you get with direct booking)
   ---------------------------------------------------------------------------- */
.amenities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
.amenity {
  text-align: left;
}
.amenity__icon {
  width: 32px;
  height: 32px;
  stroke: var(--r4v-primary);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 16px;
}
.section--dark .amenity__icon { stroke: var(--r4v-sand); }
.amenity h3 {
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0 0 8px;
}
.amenity p {
  font-size: 0.92rem;
  color: var(--r4v-ink-soft);
  max-width: none;
}
.section--dark .amenity p { color: rgba(250, 247, 241, 0.72); }
@media (max-width: 980px) { .amenities { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .amenities { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------------------------
   FAQ list
   ---------------------------------------------------------------------------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq__group {
  margin-bottom: 56px;
}
.faq__group h3 {
  font-family: var(--r4v-serif);
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  color: var(--r4v-primary);
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--r4v-rule);
  font-weight: 400;
}
.faq details {
  border-bottom: 1px solid var(--r4v-rule);
  padding: 18px 0;
  cursor: pointer;
}
.faq details:last-child { border-bottom: 0; }
.faq summary {
  list-style: none;
  font-family: var(--r4v-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--r4v-ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--r4v-serif);
  font-size: 1.4rem;
  color: var(--r4v-primary);
  font-weight: 300;
  transition: transform var(--r4v-tr);
  flex-shrink: 0;
}
.faq details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}
.faq details p {
  margin: 12px 0 4px;
  color: var(--r4v-ink-soft);
  max-width: 65ch;
}

/* ----------------------------------------------------------------------------
   Contact cards
   ---------------------------------------------------------------------------- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 820px) { .contact-cards { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--r4v-paper);
  border: 1px solid var(--r4v-rule);
  border-radius: 6px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-card__icon {
  width: 36px;
  height: 36px;
  stroke: var(--r4v-primary);
  fill: none;
  stroke-width: 1.4;
}
.contact-card h3 {
  font-family: var(--r4v-serif);
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0;
}
.contact-card p { margin: 0; color: var(--r4v-ink-soft); }
.contact-card a {
  margin-top: auto;
  font-family: var(--r4v-sans);
  font-size: 0.92rem;
  color: var(--r4v-primary);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.contact-card a:hover { color: var(--r4v-primary-2); }

/* ----------------------------------------------------------------------------
   CTA banner (used as a "book direct" call-out section)
   ---------------------------------------------------------------------------- */
.cta-banner {
  background: var(--r4v-primary-3);
  color: var(--r4v-cream);
  padding: clamp(50px, 7vw, 80px) var(--r4v-gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(232, 197, 122, 0.22) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(232, 155, 124, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.cta-banner h2 {
  color: var(--r4v-cream);
  margin: 0 0 14px;
}
.cta-banner h2 em { color: var(--r4v-sand); }
.cta-banner p {
  color: rgba(250, 247, 241, 0.85);
  margin: 0 auto 28px;
  max-width: 55ch;
}

/* ----------------------------------------------------------------------------
   Footer
   ---------------------------------------------------------------------------- */
.footer {
  background: var(--r4v-cream-2);
  padding: 56px var(--r4v-gutter) 32px;
  text-align: center;
  border-top: 1px solid var(--r4v-rule);
  color: var(--r4v-ink-soft);
}
.footer__brand {
  font-family: var(--r4v-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--r4v-primary);
  letter-spacing: -0.02em;
}
.footer__brand span { color: var(--r4v-accent); font-weight: 500; }
.footer__tagline {
  margin: 8px auto 28px;
  color: var(--r4v-ink-soft);
  font-size: 0.95rem;
  max-width: 40ch;
}
.footer__links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-bottom: 28px;
}
.footer__links a {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--r4v-ink-soft);
}
.footer__links a:hover { color: var(--r4v-primary); }
.footer__legal {
  font-size: 0.78rem;
  color: var(--r4v-muted);
  padding-top: 22px;
  border-top: 1px solid var(--r4v-rule);
}

/* ----------------------------------------------------------------------------
   Testimonials — pull-quote cards
   ---------------------------------------------------------------------------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial {
  background: var(--r4v-paper);
  border: 1px solid var(--r4v-rule);
  border-radius: 8px;
  padding: 30px 28px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: 0;
  left: 22px;
  font-family: var(--r4v-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--r4v-accent);
  opacity: 0.55;
}
.testimonial__body {
  font-family: var(--r4v-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--r4v-ink);
  line-height: 1.55;
  margin: 18px 0 0;
  font-weight: 400;
}
.testimonial__attr {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--r4v-ink-soft);
}
.testimonial__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--r4v-primary) 0%, var(--r4v-accent) 100%);
  color: var(--r4v-cream);
  font-family: var(--r4v-serif);
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial__name { font-weight: 500; color: var(--r4v-ink); }
.testimonial__loc {
  display: block;
  font-size: 0.74rem;
  color: var(--r4v-muted);
  letter-spacing: 0.06em;
}
.testimonial__stars {
  color: var(--r4v-sand);
  letter-spacing: 2px;
  font-size: 1rem;
  margin-top: -6px;
}

/* ----------------------------------------------------------------------------
   Story strip — "how it works" 3-step flow
   ---------------------------------------------------------------------------- */
.story-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin-top: 48px;
}
@media (max-width: 820px) { .story-strip { grid-template-columns: 1fr; } }
.story-step {
  text-align: left;
  position: relative;
  padding: 26px 28px;
  background: var(--r4v-paper);
  border: 1px solid var(--r4v-rule);
  border-radius: 6px;
}
.story-step__num {
  font-family: var(--r4v-serif);
  font-size: 2.4rem;
  color: var(--r4v-accent);
  line-height: 1;
  font-weight: 400;
  margin-bottom: 14px;
}
.story-step h3 {
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0 0 8px;
}
.story-step p {
  margin: 0;
  color: var(--r4v-ink-soft);
  font-size: 0.94rem;
}

/* ----------------------------------------------------------------------------
   Promise / commitment row — accent-color highlight strip
   ---------------------------------------------------------------------------- */
.promise {
  background: var(--r4v-cream-2);
  border: 1px solid var(--r4v-rule);
  border-radius: 8px;
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
@media (max-width: 760px) {
  .promise { grid-template-columns: 1fr; text-align: center; }
  .promise__seal { margin: 0 auto; }
}
.promise__seal {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--r4v-primary) 0%, var(--r4v-primary-3) 100%);
  color: var(--r4v-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.promise__seal svg {
  width: 38px;
  height: 38px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}
.promise__body h3 {
  font-family: var(--r4v-serif);
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  font-weight: 400;
  margin: 0 0 6px;
  color: var(--r4v-ink);
}
.promise__body h3 em { color: var(--r4v-primary); }
.promise__body p {
  margin: 0;
  color: var(--r4v-ink-soft);
  max-width: 60ch;
}

/* Refine the property card art with extra decorative shapes */
.prop__art .prop__art-deco {
  position: absolute;
  bottom: -20px;
  right: -10px;
  width: 130px;
  height: 130px;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}
.prop__art .prop__art-deco svg { width: 100%; height: 100%; display: block; }
.prop__art-region,
.prop__art-name { position: relative; z-index: 1; }

/* ----------------------------------------------------------------------------
   Price comparison widget (Direct vs Airbnb / VRBO / Booking.com)
   ---------------------------------------------------------------------------- */
.price-compare {
  max-width: 820px;
  margin: 40px auto 0;
  background: var(--r4v-paper);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(11, 43, 58, 0.28);
  border: 1px solid var(--r4v-rule);
}
.price-compare__head {
  padding: 26px 32px 22px;
  border-bottom: 1px solid var(--r4v-rule);
}
.price-compare__head h3 {
  margin: 0 0 8px;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-weight: 400;
  font-family: var(--r4v-serif);
  color: var(--r4v-ink);
}
.price-compare__head h3 em { color: var(--r4v-primary); font-style: italic; }
.price-compare__head p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--r4v-ink-soft);
}
.price-compare__dates {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 18px 32px;
  border-bottom: 1px solid var(--r4v-rule);
  background: var(--r4v-cream);
  align-items: center;
}
.price-compare__dates label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--r4v-sans);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--r4v-muted);
  font-weight: 600;
}
.price-compare__dates input {
  font-family: var(--r4v-sans);
  padding: 8px 12px;
  border: 1px solid var(--r4v-rule);
  border-radius: 6px;
  background: var(--r4v-paper);
  font-size: 0.95rem;
  color: var(--r4v-ink);
  font-variant-numeric: tabular-nums;
  cursor: pointer;
  min-width: 130px;
}
.price-compare__dates input:focus { outline: 2px solid var(--r4v-primary); outline-offset: 1px; }

.price-compare__rows { display: flex; flex-direction: column; }
.price-row {
  display: grid;
  grid-template-columns: 1fr 120px 140px;
  align-items: center;
  gap: 18px;
  padding: 18px 32px;
  border-bottom: 1px solid var(--r4v-rule);
}
.price-row:last-child { border-bottom: 0; }
.price-row:nth-child(odd)  { background: var(--r4v-paper); }
.price-row:nth-child(even) { background: var(--r4v-cream); }
.price-row.is-winner {
  background: linear-gradient(90deg, rgba(30, 95, 116, 0.10), rgba(30, 95, 116, 0.03));
  border-left: 3px solid var(--r4v-primary);
}
.price-row__source {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.price-row__logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  color: #fff;
  font-family: var(--r4v-sans);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.price-row__logo--r4v     { background: var(--r4v-primary); }
.price-row__logo--airbnb  { background: #FF5A5F; }
.price-row__logo--vrbo    { background: #245ABC; }
.price-row__logo--booking { background: #003580; font-size: 0.78rem; letter-spacing: 0; }
.price-row__name {
  font-family: var(--r4v-sans);
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--r4v-ink);
  display: block;
}
.price-row__fees {
  display: block;
  font-size: 0.76rem;
  color: var(--r4v-muted);
  font-weight: 400;
  margin-top: 2px;
}
.price-row__total {
  font-family: var(--r4v-serif);
  font-weight: 400;
  font-size: 1.55rem;
  color: var(--r4v-ink);
  text-align: right;
  font-variant-numeric: tabular-nums;
  display: block;
}
.price-row.is-winner .price-row__total { color: var(--r4v-primary); }
.price-row__save {
  font-family: var(--r4v-sans);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--r4v-accent);
  color: var(--r4v-ink);
  font-weight: 600;
  display: inline-block;
  margin-top: 6px;
}
.price-row__cta {
  font-family: var(--r4v-sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--r4v-muted);
  font-weight: 500;
  text-align: right;
}
.price-row__cta--book {
  background: var(--r4v-primary);
  color: var(--r4v-cream);
  padding: 10px 16px;
  border-radius: 999px;
  letter-spacing: 0.12em;
}
.price-row__cta--book:hover { background: var(--r4v-primary-2); color: var(--r4v-cream); }
.price-compare__foot {
  padding: 18px 32px 22px;
  font-size: 0.78rem;
  color: var(--r4v-muted);
  background: var(--r4v-paper);
  line-height: 1.55;
}
@media (max-width: 640px) {
  .price-row {
    grid-template-columns: 1fr auto;
    gap: 8px 14px;
  }
  .price-row__cta { grid-column: 1 / -1; text-align: left; }
  .price-row__cta--book { display: inline-block; padding: 10px 18px; }
  .price-compare__head, .price-compare__dates, .price-row, .price-compare__foot { padding-left: 20px; padding-right: 20px; }
}

/* ----------------------------------------------------------------------------
   Sticky "Book Direct" floating CTA (desktop only)
   ---------------------------------------------------------------------------- */
.sticky-book {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--r4v-accent);
  color: var(--r4v-ink) !important;
  font-family: var(--r4v-sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  box-shadow:
    0 18px 40px -12px rgba(232, 155, 124, 0.6),
    0 4px 14px -4px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.2s ease;
}
.sticky-book.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.sticky-book:hover {
  background: var(--r4v-accent-2);
  color: var(--r4v-ink) !important;
}
.sticky-book__icon {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
@media (max-width: 720px) {
  .sticky-book { display: none !important; }
}

/* ----------------------------------------------------------------------------
   Nav polish — proper logo mark + refined wordmark
   ---------------------------------------------------------------------------- */
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--r4v-serif);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--r4v-ink);
  font-variation-settings: "opsz" 60;
  transition: opacity 0.2s ease;
}
.nav__brand:hover { color: var(--r4v-ink); opacity: 0.88; }
.nav__brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 4px 12px -4px rgba(16, 58, 77, 0.4);
  overflow: hidden;
  background: transparent; /* SVG handles the fill */
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.nav__brand-mark svg { width: 100%; height: 100%; display: block; }
.nav__brand:hover .nav__brand-mark { transform: rotate(-4deg) scale(1.03); }
.nav__brand-wordmark {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}
.nav__brand-wordmark-name {
  font-family: var(--r4v-serif);
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--r4v-ink);
  font-variation-settings: "opsz" 60;
}
.nav__brand-wordmark-name em {
  font-style: italic;
  color: var(--r4v-primary);
  font-weight: 400;
}
.nav__brand-wordmark-tag {
  font-family: var(--r4v-sans);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--r4v-muted);
  font-weight: 600;
}
@media (max-width: 560px) {
  .nav__brand-mark { width: 34px; height: 34px; }
  .nav__brand-wordmark-name { font-size: 1.05rem; }
  .nav__brand-wordmark-tag { display: none; }
}

/* ----------------------------------------------------------------------------
   Hero meta — social proof line under the booking widget
   ---------------------------------------------------------------------------- */
.hero-meta {
  margin: 22px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  color: rgba(250, 247, 241, 0.85);
  font-size: 0.86rem;
  font-family: var(--r4v-sans);
  letter-spacing: 0.02em;
}
.hero-meta__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(250, 247, 241, 0.12);
  border: 1px solid rgba(250, 247, 241, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-meta__stars {
  color: var(--r4v-sand);
  letter-spacing: 2px;
  font-size: 0.95rem;
}
.hero-meta__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6FCB7B;
  position: relative;
}
.hero-meta__pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(111, 203, 123, 0.55);
  animation: r4vPulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes r4vPulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  70%  { transform: scale(3.4); opacity: 0; }
  100% { transform: scale(3.4); opacity: 0; }
}

/* ----------------------------------------------------------------------------
   Trust / press strip — "Trusted by" / partners
   ---------------------------------------------------------------------------- */
.trust-strip {
  background: var(--r4v-paper);
  border-top: 1px solid var(--r4v-rule);
  border-bottom: 1px solid var(--r4v-rule);
  padding: 32px 0;
}
.trust-strip__inner {
  max-width: var(--r4v-container);
  margin: 0 auto;
  padding: 0 var(--r4v-gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px 56px;
  flex-wrap: wrap;
}
.trust-strip__eyebrow {
  font-family: var(--r4v-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--r4v-muted);
  font-weight: 500;
  margin-right: 8px;
}
.trust-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--r4v-sans);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--r4v-ink-soft);
  letter-spacing: 0.02em;
  opacity: 0.78;
  transition: opacity 0.3s ease;
}
.trust-strip__item:hover { opacity: 1; }
.trust-strip__item svg {
  width: 22px;
  height: 22px;
  stroke: var(--r4v-primary);
  fill: none;
  stroke-width: 1.6;
}
.trust-strip__item .stripe-mark {
  display: inline-block;
  width: 44px;
  height: 18px;
  background: #635BFF;
  border-radius: 4px;
  color: #fff;
  font-family: var(--r4v-sans);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 18px;
  text-transform: uppercase;
}

/* ----------------------------------------------------------------------------
   Regional map section — stylized US map with pins on R4V regions
   ---------------------------------------------------------------------------- */
.region-map {
  background: linear-gradient(180deg, var(--r4v-cream) 0%, var(--r4v-cream-2) 100%);
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
}
.region-map__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--r4v-gutter);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 820px) {
  .region-map__inner { grid-template-columns: 1fr; }
}
.region-map__art {
  position: relative;
  aspect-ratio: 5 / 3;
  background: var(--r4v-paper);
  border: 1px solid var(--r4v-rule);
  border-radius: 14px;
  overflow: hidden;
  padding: 18px;
  box-shadow: 0 28px 60px -28px rgba(11, 43, 58, 0.22);
}
.region-map__art svg {
  width: 100%;
  height: 100%;
  display: block;
}
.region-map__pin {
  fill: var(--r4v-accent);
  stroke: var(--r4v-paper);
  stroke-width: 2;
  transition: transform 0.25s ease, fill 0.25s ease;
  cursor: pointer;
  transform-box: fill-box;
  transform-origin: center;
}
.region-map__pin:hover { fill: var(--r4v-primary); transform: scale(1.3); }
.region-map__label {
  font-family: var(--r4v-sans);
  font-size: 0.7rem;
  font-weight: 600;
  fill: var(--r4v-ink);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.region-map__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.region-map__list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.region-map__bullet {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--r4v-accent);
  flex-shrink: 0;
  margin-top: 6px;
  box-shadow: 0 0 0 4px rgba(232, 155, 124, 0.18);
}
.region-map__title {
  font-family: var(--r4v-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--r4v-ink);
  margin: 0 0 4px;
  line-height: 1.2;
}
.region-map__desc {
  margin: 0;
  font-size: 0.95rem;
  color: var(--r4v-ink-soft);
  line-height: 1.5;
  max-width: 42ch;
}

/* ----------------------------------------------------------------------------
   Featured property spotlight (signature stay block)
   ---------------------------------------------------------------------------- */
.spotlight {
  background: var(--r4v-primary-3);
  color: var(--r4v-cream);
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
  overflow: hidden;
}
.spotlight::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 197, 122, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.spotlight::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 155, 124, 0.14) 0%, transparent 60%);
  pointer-events: none;
}
.spotlight__inner {
  max-width: var(--r4v-container);
  margin: 0 auto;
  padding: 0 var(--r4v-gutter);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 820px) { .spotlight__inner { grid-template-columns: 1fr; } }
.spotlight__art {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--r4v-accent) 0%, #B85E3F 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.5);
}
.spotlight__art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.spotlight__art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
  z-index: 1;
}
.spotlight__art svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.spotlight__art-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  background: rgba(20, 32, 30, 0.6);
  color: var(--r4v-cream);
  font-family: var(--r4v-sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  z-index: 2;
}
.spotlight__art-name {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  font-family: var(--r4v-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--r4v-cream);
  line-height: 1.05;
  letter-spacing: -0.01em;
  z-index: 2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}
.spotlight__body h2 {
  color: var(--r4v-cream);
  margin: 14px 0 18px;
}
.spotlight__body h2 em { color: var(--r4v-sand); }
.spotlight__body p {
  color: rgba(250, 247, 241, 0.85);
  margin-bottom: 26px;
  max-width: 52ch;
}
.spotlight__highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.spotlight__highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(250, 247, 241, 0.92);
}
.spotlight__highlights svg {
  width: 16px;
  height: 16px;
  stroke: var(--r4v-sand);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* ----------------------------------------------------------------------------
   Region highlights — bulleted list inside .showcase__body
   ---------------------------------------------------------------------------- */
.region-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.region-highlights li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--r4v-ink-soft);
  font-size: 0.95rem;
}
.region-highlights svg {
  width: 14px;
  height: 14px;
  stroke: var(--r4v-accent);
  fill: none;
  stroke-width: 2.4;
  flex-shrink: 0;
}

/* ----------------------------------------------------------------------------
   "What's included" comprehensive amenity grid (lighter alt to dark grid)
   ---------------------------------------------------------------------------- */
.included {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--r4v-rule);
  border-radius: 12px;
  overflow: hidden;
  background: var(--r4v-paper);
}
@media (max-width: 980px) { .included { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .included { grid-template-columns: 1fr; } }
.included__cell {
  padding: 26px 28px;
  border-right: 1px solid var(--r4v-rule);
  border-bottom: 1px solid var(--r4v-rule);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.included__cell:nth-child(3n) { border-right: 0; }
@media (max-width: 980px) {
  .included__cell { border-right: 1px solid var(--r4v-rule); }
  .included__cell:nth-child(3n) { border-right: 1px solid var(--r4v-rule); }
  .included__cell:nth-child(2n) { border-right: 0; }
}
@media (max-width: 560px) {
  .included__cell { border-right: 0; }
}
.included__icon {
  width: 28px;
  height: 28px;
  stroke: var(--r4v-primary);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}
.included__cell h4 {
  font-family: var(--r4v-sans);
  font-size: 0.96rem;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--r4v-ink);
}
.included__cell p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--r4v-ink-soft);
  line-height: 1.45;
}

/* ----------------------------------------------------------------------------
   Section dividers — subtle SVG curves between sections
   ---------------------------------------------------------------------------- */
.section-divider {
  display: block;
  width: 100%;
  height: 60px;
  margin: 0;
}
.section-divider svg { width: 100%; height: 100%; display: block; }

/* ----------------------------------------------------------------------------
   Rich multi-column footer
   ---------------------------------------------------------------------------- */
.footer--rich {
  background: var(--r4v-primary-3);
  color: rgba(250, 247, 241, 0.78);
  padding: 64px var(--r4v-gutter) 28px;
  text-align: left;
  border-top: 0;
}
.footer--rich .footer__top {
  max-width: var(--r4v-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(250, 247, 241, 0.16);
}
@media (max-width: 820px) {
  .footer--rich .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }
}
@media (max-width: 480px) {
  .footer--rich .footer__top { grid-template-columns: 1fr; }
}
.footer--rich .footer__brand {
  font-family: var(--r4v-serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--r4v-cream);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer--rich .footer__brand span { color: var(--r4v-accent); }
.footer--rich .footer__tagline {
  margin: 6px 0 18px;
  color: rgba(250, 247, 241, 0.7);
  font-size: 0.94rem;
  line-height: 1.55;
  max-width: 36ch;
}
.footer--rich .footer__col h4 {
  font-family: var(--r4v-sans);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--r4v-sand);
  font-weight: 600;
  margin: 6px 0 18px;
}
.footer--rich .footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer--rich .footer__col a {
  color: rgba(250, 247, 241, 0.78);
  font-size: 0.92rem;
  font-weight: 400;
  transition: color 0.2s ease;
}
.footer--rich .footer__col a:hover { color: var(--r4v-cream); }
.footer--rich .footer__contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.92rem;
  color: rgba(250, 247, 241, 0.78);
}
.footer--rich .footer__contact-row svg {
  width: 14px;
  height: 14px;
  stroke: var(--r4v-sand);
  fill: none;
  stroke-width: 1.6;
  flex-shrink: 0;
}
.footer--rich .footer__bottom {
  max-width: var(--r4v-container);
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  color: rgba(250, 247, 241, 0.55);
}
.footer--rich .footer__legal { color: rgba(250, 247, 241, 0.55); }
.footer--rich .footer__bottom-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer--rich .footer__bottom-links a {
  font-size: 0.78rem;
  color: rgba(250, 247, 241, 0.65);
}
.footer--rich .footer__bottom-links a:hover { color: var(--r4v-cream); }

/* ----------------------------------------------------------------------------
   Microinteractions — refined hover/scroll behaviors across cards
   ---------------------------------------------------------------------------- */
.prop { transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.4s ease, border-color 0.3s ease; }
.testimonial { transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.4s ease, border-color 0.3s ease; }
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 50px -22px rgba(11, 43, 58, 0.22);
  border-color: var(--r4v-accent);
}
.story-step { transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.4s ease; }
.story-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px -22px rgba(11, 43, 58, 0.2);
}

/* ----------------------------------------------------------------------------
   Reveal-on-scroll (used optionally, doesn't require JS — purely a fade-in)
   ---------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Respect prefers-reduced-motion. */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
