/* ==========================================================================
   Paradise Valencia — design system
   Sibling of paradise-riverhall. Serif display + humanist sans body.
   Palette: deep Mediterranean green, club gold, warm sand.
   ========================================================================== */

:root {
  /* Brand */
  --pv-green-900: #102C21;
  --pv-green-800: #17402F;
  --pv-green-700: #1D5240;
  --pv-green-600: #266551;
  --pv-green-500: #2F7A61;
  --pv-green-100: #E4EEE9;
  --pv-green-50:  #F1F7F4;

  --pv-gold-700: #8A6318;
  --pv-gold-600: #A87A20;
  --pv-gold-500: #C1912F;
  --pv-gold-400: #D8AC4C;
  --pv-gold-100: #F6EDD8;

  /* Neutrals — warm */
  --pv-ink:      #24261F;
  --pv-ink-soft: #4C5147;
  --pv-muted:    #6C7166;
  --pv-line:     #DFDCD2;
  --pv-sand-100: #F4F0E7;
  --pv-sand-50:  #FBF9F4;
  --pv-white:    #FFFFFF;

  /* Semantic */
  --pv-save:     #A3341F;   /* price-drop / savings red — AA on white */
  --pv-save-bg:  #FBEDE9;

  /* Type */
  --pv-font-display: "IBM Plex Serif", Georgia, "Times New Roman", serif;
  --pv-font-body: "Nunito Sans", -apple-system, system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Rhythm */
  --pv-container: 1200px;
  --pv-container-narrow: 780px;
  --pv-gutter: clamp(1.25rem, 4vw, 2.5rem);
  --pv-section: clamp(3.5rem, 7vw, 6.5rem);
  --pv-radius: 4px;
  --pv-radius-lg: 10px;
  --pv-shadow: 0 1px 2px rgba(36,38,31,.06), 0 8px 24px rgba(36,38,31,.07);
  --pv-shadow-lg: 0 2px 4px rgba(36,38,31,.06), 0 18px 48px rgba(36,38,31,.12);
  --pv-focus: 3px solid var(--pv-gold-500);
}

/* --------------------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  font-family: var(--pv-font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--pv-ink);
  background: var(--pv-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
img { background-color: var(--pv-sand-100); }

/* --------------------------------------------------------------- Type */
h1, h2, h3, h4 {
  font-family: var(--pv-font-display);
  font-weight: 500;
  color: var(--pv-ink);
  line-height: 1.12;
  letter-spacing: -.012em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.35rem, 5.4vw, 4.3rem); }
h2 { font-size: clamp(1.9rem, 3.7vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.1vw, 1.6rem); }
h4 { font-size: 1.12rem; }
p  { margin: 0 0 1.15em; max-width: 68ch; }
p:last-child { margin-bottom: 0; }
.lead { font-size: clamp(1.08rem, 1.7vw, 1.28rem); color: var(--pv-ink-soft); line-height: 1.6; }
small, .small { font-size: .875rem; }
strong, b { font-weight: 700; }

a { color: var(--pv-green-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--pv-gold-700); }
:focus-visible { outline: var(--pv-focus); outline-offset: 3px; border-radius: 2px; }

.eyebrow {
  display: block;
  font-family: var(--pv-font-body);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--pv-gold-700);
  margin: 0 0 .85rem;
}
.eyebrow--light { color: var(--pv-gold-400); }

/* --------------------------------------------------------------- Layout */
.container { width: 100%; max-width: var(--pv-container); margin-inline: auto; padding-inline: var(--pv-gutter); }
.container--narrow { max-width: var(--pv-container-narrow); }
.section { padding-block: var(--pv-section); }
.section--sand { background: var(--pv-sand-50); }
.section--sand-100 { background: var(--pv-sand-100); }
.section--green { background: var(--pv-green-900); color: #EDF2EF; }
.section--green h2, .section--green h3 { color: var(--pv-white); }
.section--green p { color: #C9D6CF; }
.section--green a { color: var(--pv-gold-400); }
.section--tight { padding-block: clamp(2.25rem, 4vw, 3.5rem); }

.grid { display: grid; gap: clamp(1.25rem, 2.6vw, 2rem); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); }
.split { display: grid; gap: clamp(1.5rem, 4vw, 3.5rem); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 860px) { .split { grid-template-columns: 1fr 1fr; } .split--40-60 { grid-template-columns: 4fr 6fr; } }

.section-head { max-width: 820px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center p { margin-inline: auto; }

/* --------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 48px; padding: .8rem 1.6rem;
  font-family: var(--pv-font-body); font-size: .95rem; font-weight: 700; letter-spacing: .02em;
  text-decoration: none; text-align: center;
  border: 2px solid transparent; border-radius: var(--pv-radius); cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--pv-green-700); border-color: var(--pv-green-700); color: #fff; }
.btn-primary:hover { background: var(--pv-green-800); border-color: var(--pv-green-800); color: #fff; }

.btn-gold { background: var(--pv-gold-500); border-color: var(--pv-gold-500); color: #1B1403; }
.btn-gold:hover { background: var(--pv-gold-400); border-color: var(--pv-gold-400); color: #1B1403; }

.btn-ghost { background: transparent; border-color: var(--pv-green-700); color: var(--pv-green-700); }
.btn-ghost:hover { background: var(--pv-green-700); color: #fff; }

.btn-ghost-light { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.75); color: #fff; }
.btn-ghost-light:hover { background: #fff; color: var(--pv-green-900); border-color: #fff; }

.btn-white { background: #fff; border-color: #fff; color: var(--pv-green-900); }
.btn-white:hover { background: var(--pv-sand-100); border-color: var(--pv-sand-100); color: var(--pv-green-900); }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.75rem; }
.btn-row--center { justify-content: center; }

/* --------------------------------------------------------------- Header */
.pv-topbar {
  background: var(--pv-green-900); color: #DCE7E1;
  font-size: .85rem; text-align: center; padding: .55rem var(--pv-gutter);
}
.pv-topbar a { color: var(--pv-gold-400); font-weight: 700; text-decoration: none; }
.pv-topbar a:hover { text-decoration: underline; }
.pv-topbar .sep { opacity: .45; padding-inline: .5rem; }
.pv-topbar .short { display: none; }
@media (max-width: 720px) {
  .pv-topbar { font-size: .8rem; padding-block: .5rem; }
  .pv-topbar .hide-sm, .pv-topbar .sep { display: none; }
  .pv-topbar .short { display: inline; }
  .pv-topbar .short + .sep-sm { display: inline; opacity: .45; padding-inline: .45rem; }
}
.pv-topbar .sep-sm { display: none; }

.pv-header { position: sticky; top: 0; z-index: 90; background: rgba(255,255,255,.97); backdrop-filter: saturate(140%) blur(8px); border-bottom: 1px solid var(--pv-line); }
.admin-bar .pv-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .pv-header { top: 46px; } }
.pv-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; min-height: 76px; }

.pv-brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--pv-ink); flex-shrink: 0; }
.pv-brand__mark { width: 34px; height: 34px; flex: none; }
.pv-brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.pv-brand__name { font-family: var(--pv-font-display); font-size: 1.16rem; font-weight: 600; letter-spacing: .015em; }
.pv-brand__sub { font-size: .62rem; font-weight: 800; letter-spacing: .19em; text-transform: uppercase; color: var(--pv-gold-700); }

.pv-nav { display: none; }
.pv-nav ul { list-style: none; display: flex; align-items: center; gap: .1rem; margin: 0; padding: 0; }
.pv-nav li { position: relative; }
.pv-nav a { display: block; padding: .6rem .62rem; font-size: .9rem; font-weight: 600; white-space: nowrap; color: var(--pv-ink-soft); text-decoration: none; border-radius: var(--pv-radius); }
@media (min-width: 1180px) { .pv-nav a { padding: .6rem .8rem; font-size: .93rem; } }
.pv-nav a:hover, .pv-nav .current-menu-item > a, .pv-nav .current-menu-ancestor > a { color: var(--pv-green-800); background: var(--pv-green-50); }
.pv-nav .menu-item-has-children > a::after { content: "▾"; font-size: .7em; margin-left: .35em; opacity: .6; }
.pv-nav .sub-menu {
  position: absolute; top: 100%; left: 0; min-width: 232px; padding: .4rem;
  background: #fff; border: 1px solid var(--pv-line); border-radius: var(--pv-radius-lg); box-shadow: var(--pv-shadow-lg);
  display: block; flex-direction: column; gap: 0;
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.pv-nav li:hover > .sub-menu, .pv-nav li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.pv-nav .sub-menu a { padding: .6rem .75rem; font-weight: 500; }

.pv-header__cta { display: none; }
@media (min-width: 700px) { .pv-header__cta { display: inline-flex; } }

.pv-nav-toggle {
  display: inline-flex; align-items: center; gap: .5rem; min-height: 46px; padding: .55rem .9rem;
  background: transparent; border: 1px solid var(--pv-line); border-radius: var(--pv-radius);
  font-family: inherit; font-size: .88rem; font-weight: 700; color: var(--pv-ink); cursor: pointer;
}
.pv-nav-toggle__bars { display: inline-block; width: 18px; height: 2px; background: currentColor; position: relative; }
.pv-nav-toggle__bars::before, .pv-nav-toggle__bars::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: currentColor; }
.pv-nav-toggle__bars::before { top: -6px; } .pv-nav-toggle__bars::after { top: 6px; }

/* Desktop breakpoint — declared AFTER .pv-nav-toggle so it actually wins.
   (Source order matters at equal specificity; the earlier version of this
   rule sat above the toggle's display declaration and was overridden.) */
@media (min-width: 1024px) {
  .pv-nav { display: block; }
  .pv-nav-toggle { display: none; }
}

.pv-mobile-nav { display: none; border-top: 1px solid var(--pv-line); background: #fff; padding-block: .75rem 1.25rem; }
.pv-mobile-nav.is-open { display: block; }
@media (min-width: 1024px) { .pv-mobile-nav, .pv-mobile-nav.is-open { display: none; } }
.pv-mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.pv-mobile-nav .sub-menu { padding-left: 1rem; border-left: 2px solid var(--pv-green-100); margin-left: .35rem; }
.pv-mobile-nav a { display: block; padding: .7rem .25rem; min-height: 44px; font-weight: 600; color: var(--pv-ink); text-decoration: none; border-bottom: 1px solid var(--pv-sand-100); }
.pv-mobile-nav .sub-menu a { font-weight: 500; color: var(--pv-ink-soft); }

.skip-link { position: absolute; left: -9999px; top: 0; z-index: 999; background: var(--pv-green-900); color: #fff; padding: .75rem 1.15rem; border-radius: 0 0 var(--pv-radius) 0; }
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------- Hero */
.pv-hero { position: relative; display: grid; align-items: center; min-height: clamp(460px, 72vh, 720px); color: #fff; isolation: isolate; }
.pv-hero__media { position: absolute; inset: 0; z-index: -2; }
.pv-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.pv-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,32,23,.62) 0%, rgba(11,32,23,.50) 45%, rgba(11,32,23,.74) 100%);
}
.pv-hero__inner { padding-block: clamp(3rem, 8vw, 5.5rem); max-width: 800px; }
.pv-hero h1 { color: #fff; text-shadow: 0 2px 22px rgba(0,0,0,.28); }
.pv-hero p { color: #E6EDE9; font-size: clamp(1.02rem, 1.5vw, 1.16rem); max-width: 60ch; }
.pv-hero .eyebrow { color: #E7CE8C; }

.pv-hero--compact { min-height: clamp(300px, 42vh, 430px); }
.pv-hero--compact h1 { font-size: clamp(2.05rem, 4.2vw, 3.35rem); }

.pv-pagehead { background: var(--pv-green-900); color: #fff; padding-block: clamp(2.75rem, 6vw, 4.5rem); }
.pv-pagehead h1 { color: #fff; margin-bottom: .35rem; }
.pv-pagehead p { color: #C6D5CD; max-width: 62ch; }

/* --------------------------------------------------------------- Stats */
.stat-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1px; background: var(--pv-line); border: 1px solid var(--pv-line); border-radius: var(--pv-radius-lg); overflow: hidden; }
.stat { background: #fff; padding: 1.5rem 1.25rem; text-align: center; }
.stat__value { display: block; font-family: var(--pv-font-display); font-size: clamp(1.6rem, 2.8vw, 2.15rem); font-weight: 600; color: var(--pv-green-800); line-height: 1.1; }
.stat__label { display: block; margin-top: .3rem; font-size: .8rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--pv-muted); }
.section--green .stat { background: rgba(255,255,255,.05); }
.section--green .stat__value { color: var(--pv-gold-400); }
.section--green .stat__label { color: #A9BCB3; }
.section--green .stat-strip { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.18); }

/* --------------------------------------------------------------- Cards */
.card {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--pv-line); border-radius: var(--pv-radius-lg); overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.card:hover { box-shadow: var(--pv-shadow-lg); transform: translateY(-3px); border-color: var(--pv-green-100); }
.card__media { position: relative; aspect-ratio: 16 / 10; background: var(--pv-sand-100); }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 1.35rem 1.35rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card__title { font-size: 1.35rem; margin-bottom: .3rem; }
.card__title a { color: inherit; text-decoration: none; }
.card__title a:hover { color: var(--pv-green-700); }
.card__meta { font-size: .9rem; color: var(--pv-muted); font-weight: 600; margin-bottom: .8rem; display: flex; flex-wrap: wrap; align-items: baseline; }
.card__meta span { white-space: nowrap; }
.card__meta span + span::before { content: "•"; padding-inline: .5rem; opacity: .5; }
.card__price { font-family: var(--pv-font-display); font-size: 1.42rem; font-weight: 600; color: var(--pv-green-800); line-height: 1.2; }
.card__price-was { display: block; font-family: var(--pv-font-body); font-size: .88rem; font-weight: 600; color: var(--pv-muted); text-decoration: line-through; }
.card__foot { margin-top: auto; padding-top: 1.1rem; }
.card__note { font-size: .82rem; color: var(--pv-muted); margin-top: .75rem; }

/* Badges */
.badge {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .28rem .6rem; border-radius: 999px;
  font-size: .72rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
}
.badge--save { background: var(--pv-save-bg); color: var(--pv-save); }
.badge--pool { background: var(--pv-green-100); color: var(--pv-green-800); }
.badge--gold { background: var(--pv-gold-100); color: var(--pv-gold-700); }
.badge--stone { background: var(--pv-sand-100); color: var(--pv-ink-soft); }
.badge-row { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .8rem; }
.card__media .badge { position: absolute; top: .8rem; left: .8rem; box-shadow: 0 2px 8px rgba(0,0,0,.16); }

/* Feature list */
.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.ticks li { position: relative; padding-left: 1.85rem; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .42em; width: 1.1rem; height: .6rem;
  border-left: 2.5px solid var(--pv-gold-500); border-bottom: 2.5px solid var(--pv-gold-500);
  transform: rotate(-45deg);
}
.ticks--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }

/* Icon feature block */
.feature { padding: 1.6rem 1.4rem; background: #fff; border: 1px solid var(--pv-line); border-radius: var(--pv-radius-lg); }
/* gold-700 not gold-600: gold-600 on white is 3.84:1 and fails WCAG AA
   for text under 18.66px bold. gold-700 measures 5.41:1. */
.feature__num { font-family: var(--pv-font-display); font-size: 1.05rem; font-weight: 600; color: var(--pv-gold-700); display: block; margin-bottom: .6rem; letter-spacing: .04em; }
.feature h3 { font-size: 1.22rem; margin-bottom: .45rem; }
.feature p { font-size: .96rem; color: var(--pv-ink-soft); margin: 0; }

/* --------------------------------------------------------------- Tables */
.table-wrap { overflow-x: auto; border: 1px solid var(--pv-line); border-radius: var(--pv-radius-lg); background: #fff; }
table.pv-table { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 640px; }
.pv-table caption { text-align: left; padding: 1rem 1.15rem; font-weight: 700; color: var(--pv-ink-soft); border-bottom: 1px solid var(--pv-line); }
.pv-table th, .pv-table td { padding: .85rem 1.15rem; text-align: left; border-bottom: 1px solid var(--pv-sand-100); }
.pv-table thead th { background: var(--pv-sand-50); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--pv-muted); border-bottom: 1px solid var(--pv-line); }
.pv-table tbody tr:last-child td { border-bottom: 0; }
.pv-table tbody tr:hover { background: var(--pv-green-50); }
.pv-table .num { font-variant-numeric: tabular-nums; font-weight: 700; }

/* --------------------------------------------------------------- FAQ */
details.pv-faq {
  border: 1px solid var(--pv-line); border-radius: var(--pv-radius-lg);
  background: #fff; padding: 0; margin-bottom: .85rem; overflow: hidden;
}
details.pv-faq[open] { border-color: var(--pv-green-100); box-shadow: var(--pv-shadow); }
details.pv-faq > summary {
  list-style: none; cursor: pointer; padding: 1.1rem 3rem 1.1rem 1.3rem; position: relative;
  font-family: var(--pv-font-display); font-size: 1.1rem; font-weight: 500; color: var(--pv-ink);
}
details.pv-faq > summary::-webkit-details-marker { display: none; }
details.pv-faq > summary::after {
  content: ""; position: absolute; right: 1.3rem; top: 50%; width: .62rem; height: .62rem;
  border-right: 2.5px solid var(--pv-gold-600); border-bottom: 2.5px solid var(--pv-gold-600);
  transform: translateY(-70%) rotate(45deg); transition: transform .2s ease;
}
details.pv-faq[open] > summary::after { transform: translateY(-30%) rotate(-135deg); }
details.pv-faq > summary:hover { background: var(--pv-sand-50); }
.pv-faq__body { padding: 0 1.3rem 1.3rem; color: var(--pv-ink-soft); }
.pv-faq__body p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------- Callouts */
.callout { padding: 1.4rem 1.5rem; border-left: 4px solid var(--pv-gold-500); background: var(--pv-gold-100); border-radius: 0 var(--pv-radius-lg) var(--pv-radius-lg) 0; }
.callout h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.callout p { color: #5C4A1D; margin-bottom: 0; }
.callout--green { border-left-color: var(--pv-green-600); background: var(--pv-green-50); }
.callout--green p { color: var(--pv-ink-soft); }

.disclaimer-band { background: var(--pv-sand-100); border-top: 1px solid var(--pv-line); font-size: .82rem; color: var(--pv-muted); padding-block: 1.15rem; }
.disclaimer-band p { max-width: none; margin: 0; }

/* --------------------------------------------------------------- Forms */
.pv-form-card { background: #fff; border: 1px solid var(--pv-line); border-radius: var(--pv-radius-lg); padding: clamp(1.5rem, 3vw, 2.25rem); box-shadow: var(--pv-shadow); }
.pv-form-card h3 { margin-bottom: .35rem; }
.pv-form-card .small { color: var(--pv-muted); }
.fluentform .ff-el-input--label label { font-weight: 700; font-size: .9rem; color: var(--pv-ink); }
.fluentform input[type=text], .fluentform input[type=email], .fluentform input[type=tel], .fluentform select, .fluentform textarea {
  width: 100%; min-height: 46px; padding: .65rem .8rem; font-family: inherit; font-size: 1rem;
  color: var(--pv-ink); background: #fff; border: 1px solid var(--pv-line); border-radius: var(--pv-radius);
}
.fluentform input:focus, .fluentform select:focus, .fluentform textarea:focus { outline: var(--pv-focus); outline-offset: 1px; border-color: var(--pv-green-600); }
.fluentform .ff-btn-submit {
  min-height: 48px; padding: .8rem 1.6rem; background: var(--pv-green-700); color: #fff;
  border: 2px solid var(--pv-green-700); border-radius: var(--pv-radius); font-weight: 700; font-size: .95rem; cursor: pointer;
}
.fluentform .ff-btn-submit:hover { background: var(--pv-green-800); border-color: var(--pv-green-800); }

/* --------------------------------------------------------------- Contact strip */
.contact-strip { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }
.contact-item__label { font-size: .76rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: var(--pv-gold-600); margin-bottom: .3rem; }
.contact-item__value { font-family: var(--pv-font-display); font-size: 1.22rem; }
.contact-item__value a { text-decoration: none; }

/* --------------------------------------------------------------- Footer */
.pv-footer { background: var(--pv-green-900); color: #B9CCC3; padding-block: clamp(3rem, 6vw, 4.5rem) 0; font-size: .93rem; }
.pv-footer h2, .pv-footer h3 { color: #fff; }
.pv-footer a { color: #DCE7E1; text-decoration: none; }
.pv-footer a:hover { color: var(--pv-gold-400); text-decoration: underline; }
.pv-footer__grid { display: grid; gap: 2.25rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr)); }
.pv-footer__col h3 { font-family: var(--pv-font-body); font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--pv-gold-400); margin-bottom: .9rem; }
.pv-footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.pv-footer__brand .pv-brand__name { color: #fff; }
.pv-footer__brand .pv-brand__sub { color: var(--pv-gold-400); }
.pv-footer__legal { margin-top: 2.75rem; padding-block: 1.5rem; border-top: 1px solid rgba(255,255,255,.13); font-size: .82rem; color: #94A99F; }
.pv-footer__legal p { max-width: none; }
.pv-footer__legal a { color: #B9CCC3; text-decoration: underline; }

/* --------------------------------------------------------------- Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: .75rem; } .mt-2 { margin-top: 1.5rem; } .mt-3 { margin-top: 2.25rem; }
.muted { color: var(--pv-muted); }
.nowrap { white-space: nowrap; }
.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.ratio-16-10 { aspect-ratio: 16 / 10; }
.rounded { border-radius: var(--pv-radius-lg); overflow: hidden; }
.shadow { box-shadow: var(--pv-shadow-lg); }

/* Editor / entry content defaults */
.entry-content > * + * { margin-top: 1.15rem; }
.entry-content ul, .entry-content ol { padding-left: 1.35rem; }
.entry-content li + li { margin-top: .4rem; }
.entry-content blockquote {
  margin: 2rem 0; padding: .35rem 0 .35rem 1.4rem; border-left: 3px solid var(--pv-gold-500);
  font-family: var(--pv-font-display); font-size: 1.2rem; color: var(--pv-ink-soft);
}
.entry-content img { border-radius: var(--pv-radius-lg); }
.entry-content h2 { margin-top: 2.5rem; }
.entry-content h3 { margin-top: 1.9rem; }

/* Print */
@media print {
  .pv-header, .pv-topbar, .pv-footer, .pv-nav-toggle, .btn-row { display: none !important; }
  body { font-size: 12pt; color: #000; }
}

/* ==========================================================================
   REFINEMENT PASS — luxury polish, density, mobile
   Appended after the base system so these rules win on source order.
   ========================================================================== */

/* --- Typography: tighter optical sizing, finer display tracking ---------- */
h1 { letter-spacing: -.022em; }
h2 { letter-spacing: -.018em; }
h3 { letter-spacing: -.008em; }
.pv-hero h1 { font-weight: 400; }              /* lighter weight reads more expensive at display size */
h1, h2 { text-wrap: balance; }
p, li { text-wrap: pretty; }

/* Eyebrow gets a hairline rule — a small, quiet luxury signal. */
.eyebrow { display: flex; align-items: center; gap: .7rem; }
.eyebrow::after {
  content: ""; flex: 1; height: 1px; max-width: 64px;
  background: currentColor; opacity: .32;
}
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .eyebrow::before {
  content: ""; flex: 1; height: 1px; max-width: 64px; background: currentColor; opacity: .32;
}

/* --- Density: reclaim vertical space without feeling cramped ------------- */
:root {
  --pv-section: clamp(3rem, 5.6vw, 5.25rem);
  --pv-gutter: clamp(1.15rem, 3.4vw, 2.25rem);
}
.section-head { margin-bottom: clamp(1.6rem, 3vw, 2.4rem); }
.section--tight { padding-block: clamp(1.9rem, 3.2vw, 2.75rem); }
.split { gap: clamp(1.5rem, 3.4vw, 3rem); }
.btn-row { margin-top: 1.4rem; }

/* --- Cards: crisper edges, calmer hover --------------------------------- */
.card { border-radius: 8px; }
.card:hover { transform: translateY(-2px); box-shadow: 0 2px 4px rgba(36,38,31,.05), 0 14px 34px rgba(36,38,31,.10); }
.card__body { padding: 1.2rem 1.2rem 1.35rem; }
.card__title { font-size: 1.28rem; }
.card__media { aspect-ratio: 3 / 2; }

/* Gold hairline on the price block — ties the accent to the money. */
.card__price { padding-top: .7rem; border-top: 1px solid var(--pv-line); }
.card__foot .card__price { border-top: 0; padding-top: 0; }

/* --- Stat strip: refined, and 2-up on small screens --------------------- */
.stat-strip { border-radius: 8px; }
.stat { padding: 1.35rem 1rem; }
.stat__value { letter-spacing: -.02em; }
.stat__label { font-size: .72rem; letter-spacing: .11em; }
@media (max-width: 720px) {
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 1.05rem .75rem; }
  .stat__value { font-size: 1.35rem; }
}

/* --- Hero: shorter on phones, better text ergonomics -------------------- */
@media (max-width: 720px) {
  .pv-hero { min-height: 0; }
  .pv-hero__inner { padding-block: 3.25rem 3rem; }
  .pv-hero h1 { font-size: clamp(2rem, 8.5vw, 2.7rem); }
  .pv-hero p { font-size: 1rem; }
  .pv-hero--compact .pv-hero__inner { padding-block: 2.5rem; }
  .pv-pagehead { padding-block: 2.25rem 2rem; }
}

/* --- Buttons: full-width pairs on phones, comfortable targets ----------- */
@media (max-width: 560px) {
  .btn-row { gap: .6rem; }
  .btn-row .btn { flex: 1 1 100%; }
  .btn { min-height: 50px; }
}

/* --- Tables: readable on phones ---------------------------------------- */
@media (max-width: 720px) {
  table.pv-table { min-width: 560px; font-size: .88rem; }
  .pv-table th, .pv-table td { padding: .7rem .8rem; }
  .table-wrap { position: relative; }
  .table-wrap::after {
    content: "Scroll for more \2192"; position: absolute; right: .6rem; bottom: .5rem;
    font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
    color: var(--pv-muted); background: rgba(255,255,255,.92); padding: .2rem .45rem; border-radius: 3px;
    pointer-events: none;
  }
}

/* --- FAQ: tighter, more refined ---------------------------------------- */
details.pv-faq { border-radius: 8px; margin-bottom: .6rem; }
details.pv-faq > summary { padding: .95rem 2.75rem .95rem 1.15rem; font-size: 1.04rem; }
.pv-faq__body { padding: 0 1.15rem 1.15rem; }

/* --- Footer: quieter, denser ------------------------------------------- */
.pv-footer { padding-block: clamp(2.5rem, 4.5vw, 3.75rem) 0; font-size: .9rem; }
.pv-footer__grid { gap: 1.75rem; }
.pv-footer__legal { margin-top: 2rem; padding-block: 1.25rem; }

/* --- Sticky mobile action bar ------------------------------------------
   The single highest-value mobile conversion element on a site like this:
   the phone is always one thumb away, and it never covers the footer CTA. */
.pv-mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: none; gap: .5rem; padding: .55rem .7rem calc(.55rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.97); backdrop-filter: saturate(150%) blur(10px);
  border-top: 1px solid var(--pv-line);
  box-shadow: 0 -6px 24px rgba(36,38,31,.10);
}
.pv-mobile-cta .btn { flex: 1; min-height: 48px; padding: .7rem .8rem; font-size: .9rem; }
@media (max-width: 860px) {
  .pv-mobile-cta { display: flex; }
  body { padding-bottom: 68px; }
  .admin-bar .pv-mobile-cta { bottom: 0; }
}
@media print { .pv-mobile-cta { display: none !important; } }

/* --- Images: soften the corners consistently ---------------------------- */
.card__media img, .rounded img { border-radius: 0; }
.pv-img { border-radius: 8px; }
.card__media .pv-img, .pv-hero__media .pv-img { border-radius: 0; }

/* --- Focus: visible without being ugly ---------------------------------- */
:focus-visible { outline: 2px solid var(--pv-gold-600); outline-offset: 3px; }
.pv-hero :focus-visible, .section--green :focus-visible, .pv-footer :focus-visible {
  outline-color: var(--pv-gold-400);
}

/* --- Selection ---------------------------------------------------------- */
::selection { background: var(--pv-gold-100); color: var(--pv-ink); }
