/* =========================================================
   Yudelsa Fresco v5 — Florida Property Advisory
   ========================================================= */
:root {
  --v5-ink: #101820;
  --v5-about-bg: #101820;
  --v5-ink-soft: #2d383c;
  --v5-forest: #123b35;
  --v5-forest-light: #1e5149;
  --v5-sand: #ede5d6;
  --v5-sand-deep: #d9cbb5;
  --v5-paper: #f8f7f4;
  --v5-white: #fff;
  --v5-champagne: #c7a564;
  --v5-champagne-dark: #745524;
  --v5-muted: #5b6668;
  --v5-line: rgba(16, 24, 32, .14);
  --v5-line-light: rgba(255, 255, 255, .16);
  --v5-success: #256b57;
  --v5-danger: #9b2c2c;
  --v5-container: 1240px;
  --v5-gutter: clamp(20px, 4vw, 56px);
  --v5-section: clamp(80px, 10vw, 144px);
  --v5-radius-sm: 6px;
  --v5-radius: 14px;
  --v5-radius-lg: 28px;
  --v5-shadow: 0 22px 70px rgba(16, 24, 32, .12);
  --v5-shadow-soft: 0 12px 34px rgba(16, 24, 32, .08);
  --v5-ease: cubic-bezier(.2, .72, .2, 1);
}

html { scroll-padding-top: 88px; }
body { background: var(--v5-paper); color: var(--v5-ink); }
body.nav-open { overflow: hidden; }
::selection { background: var(--v5-champagne); color: var(--v5-ink); }
.container { width: min(calc(100% - (var(--v5-gutter) * 2)), var(--v5-container)); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  transform: translateY(-160%);
  padding: 12px 18px;
  border-radius: 4px;
  background: var(--v5-white);
  color: var(--v5-ink);
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); top: 10px; }
:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--v5-champagne);
  outline-offset: 4px;
}

/* Shared header */
.v5-site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(248, 247, 244, .88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.v5-site-header.is-scrolled {
  background: rgba(248, 247, 244, .96);
  border-bottom-color: var(--v5-line);
  box-shadow: 0 10px 34px rgba(16, 24, 32, .06);
}
.v5-nav-wrap {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.v5-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--v5-ink);
  text-decoration: none;
  flex-shrink: 0;
}
.v5-brand img { width: 48px; height: 48px; object-fit: contain; }
.v5-brand span { display: flex; flex-direction: column; line-height: 1; }
.v5-brand strong { font-family: "Fraunces", Georgia, serif; font-size: 1rem; font-weight: 600; }
.v5-brand small { margin-top: 6px; color: var(--v5-champagne-dark); font-size: .61rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.v5-desktop-nav { display: flex; justify-content: center; }
.v5-desktop-nav .menu { display: flex; align-items: center; gap: 2px; }
.v5-desktop-nav .menu a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 4px;
  color: var(--v5-ink-soft);
  font-size: .77rem;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
}
.v5-desktop-nav .menu a:hover { color: var(--v5-forest); background: rgba(18, 59, 53, .07); }
.v5-header-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  border: 1px solid var(--v5-ink);
  border-radius: 4px;
  background: var(--v5-ink);
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.v5-header-cta:hover { background: var(--v5-forest); transform: translateY(-2px); }
.v5-nav-toggle { display: none; width: 48px; height: 48px; border: 0; background: transparent; color: var(--v5-ink); }
.v5-nav-toggle span { display: block; width: 24px; height: 1px; margin: 5px auto; background: currentColor; }

.v5-mobile-nav { display: none; position: fixed; inset: 0; z-index: 800; background: rgba(16, 24, 32, .56); }
.v5-mobile-nav.is-open { display: flex; }
.v5-mobile-panel {
  width: min(420px, 90vw);
  height: 100%;
  margin-left: auto;
  padding: 26px;
  display: flex;
  flex-direction: column;
  background: var(--v5-paper);
  box-shadow: -24px 0 70px rgba(16, 24, 32, .2);
  animation: v5-panel-in .32s var(--v5-ease) both;
}
.v5-mobile-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 24px; border-bottom: 1px solid var(--v5-line); }
.v5-mobile-close { width: 48px; height: 48px; border: 1px solid var(--v5-line); border-radius: 50%; background: transparent; position: relative; }
.v5-mobile-close span { position: absolute; left: 12px; top: 23px; width: 22px; height: 1px; background: var(--v5-ink); transform: rotate(45deg); }
.v5-mobile-close span:last-child { transform: rotate(-45deg); }
.v5-mobile-menu { margin: 28px 0; padding: 0; list-style: none; }
.v5-mobile-menu a { min-height: 52px; display: flex; align-items: center; border-bottom: 1px solid var(--v5-line); color: var(--v5-ink); font-family: "Fraunces", Georgia, serif; font-size: 1.35rem; text-decoration: none; }
.v5-mobile-cta { margin-top: auto; padding: 24px; border-radius: var(--v5-radius); background: var(--v5-sand); }
.v5-mobile-cta p { margin: 0 0 16px; color: var(--v5-muted); }

/* Home foundations */
.v5-home { overflow: clip; }
.v5-home h1,
.v5-home h2,
.v5-home h3 { color: inherit; font-family: "Fraunces", Georgia, serif; }
.v5-home h1 { font-size: clamp(3.2rem, 6.4vw, 6.8rem); line-height: .94; letter-spacing: -.052em; font-weight: 550; }
.v5-home h2 { font-size: clamp(2.3rem, 4.5vw, 4.8rem); line-height: 1; letter-spacing: -.04em; font-weight: 530; }
.v5-home h3 { font-weight: 560; }
.v5-home p { line-height: 1.72; }
.v5-section { padding-block: var(--v5-section); }
.v5-eyebrow,
.v5-kicker { margin: 0 0 22px; font-size: .7rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.v5-kicker { display: flex; align-items: center; gap: 12px; color: var(--v5-champagne-dark); }
.v5-kicker::before { content: ''; width: 28px; height: 1px; background: currentColor; }
.v5-section-head { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(40px, 8vw, 120px); align-items: end; margin-bottom: clamp(44px, 7vw, 84px); }
.v5-section-head h2 { max-width: 13ch; margin: 0; }
.v5-section-head > p { max-width: 52ch; margin: 0; color: var(--v5-muted); }
.v5-section-head > .v5-text-link { align-self: end; justify-self: end; }
.v5-text-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--v5-forest);
  font-size: .82rem;
  font-weight: 800;
  text-decoration: none;
}
.v5-text-link::after { content: '↗'; transition: transform .2s ease; }
.v5-text-link:hover::after { transform: translate(3px, -3px); }
.v5-text-link--light { color: #fff; }
.v5-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: .84rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.v5-btn:hover { transform: translateY(-2px); }
.v5-btn--primary { background: var(--v5-champagne); color: var(--v5-ink); box-shadow: 0 12px 30px rgba(199, 165, 100, .18); }
.v5-btn--primary:hover { background: #d8ba7d; box-shadow: 0 16px 34px rgba(199, 165, 100, .25); }
.v5-btn--quiet { border-color: rgba(255,255,255,.34); color: #fff; }
.v5-btn--quiet svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.v5-btn--quiet:hover { background: rgba(255,255,255,.08); border-color: #fff; }
.v5-btn--light { background: #fff; color: var(--v5-ink); }

/* Hero */
.v5-hero { min-height: calc(100dvh - 84px); display: grid; align-items: center; position: relative; background: var(--v5-ink); color: #fff; }
.v5-hero::before { content: ''; position: absolute; inset: 0; opacity: .22; background: radial-gradient(circle at 72% 16%, rgba(199,165,100,.45), transparent 28%), linear-gradient(115deg, transparent 48%, rgba(18,59,53,.7)); pointer-events: none; }
.v5-hero::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--v5-champagne), transparent); opacity: .45; }
.v5-hero-grid { min-height: inherit; display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(56px, 8vw, 120px); align-items: center; padding-block: clamp(64px, 8vw, 110px); position: relative; }
.v5-hero-copy { position: relative; z-index: 2; }
.v5-hero .v5-eyebrow { color: var(--v5-champagne); }
.v5-hero h1 { max-width: 12ch; margin: 0 0 28px; color: #fff; }
.v5-hero h1 em { color: var(--v5-champagne); font-weight: inherit; }
.v5-hero-lead { max-width: 61ch; margin: 0 0 34px; color: rgba(255,255,255,.72); font-size: clamp(1rem, 1.35vw, 1.16rem); }
.v5-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.v5-trust-list { display: flex; flex-wrap: wrap; gap: 0; margin: 0; padding: 0; list-style: none; }
.v5-trust-list li { padding: 7px 14px 7px 0; margin-right: 14px; border-right: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.64); font-size: .72rem; font-weight: 700; }
.v5-trust-list li:last-child { border-right: 0; }
.v5-hero-media { min-height: 660px; position: relative; display: flex; align-items: flex-end; }
.v5-hero-arch { position: absolute; inset: 0 34px 0 0; overflow: hidden; border: 1px solid rgba(199,165,100,.48); border-radius: 280px 280px 8px 8px; background: #283136; box-shadow: 0 38px 100px rgba(0,0,0,.36); }
.v5-hero-arch::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(16,24,32,.52), transparent 45%); }
.v5-hero-arch img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.v5-hero-card { position: relative; z-index: 2; width: min(330px, 80%); margin: 0 0 28px -42px; padding: 20px 24px; border-left: 3px solid var(--v5-champagne); background: rgba(248,247,244,.96); color: var(--v5-ink); box-shadow: var(--v5-shadow); }
.v5-hero-card span { display: block; font-family: "Fraunces", Georgia, serif; font-size: 1.15rem; }
.v5-hero-card strong { display: block; margin-top: 8px; color: var(--v5-champagne-dark); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; }
.js .v5-hero-enter { opacity: 0; transform: translateY(22px); animation: v5-hero-in .72s var(--v5-ease) forwards; }
.js .v5-hero-enter:nth-child(2) { animation-delay: .08s; }
.js .v5-hero-enter:nth-child(3) { animation-delay: .16s; }
.js .v5-hero-enter:nth-child(4) { animation-delay: .24s; }
.js .v5-hero-enter:nth-child(5) { animation-delay: .3s; }
.js .v5-hero-media { animation-delay: .16s; }

/* Client segments */
.v5-segments { background: var(--v5-paper); }
.v5-segment-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--v5-line); border-left: 1px solid var(--v5-line); }
.v5-segment { min-height: 390px; display: flex; flex-direction: column; padding: clamp(26px, 3vw, 38px); border-right: 1px solid var(--v5-line); border-bottom: 1px solid var(--v5-line); color: var(--v5-ink); text-decoration: none; transition: background .25s ease, transform .25s ease, box-shadow .25s ease; }
.v5-segment:hover { position: relative; z-index: 2; background: #fff; transform: translateY(-6px); box-shadow: var(--v5-shadow-soft); }
.v5-segment-index { color: var(--v5-champagne-dark); font-size: .68rem; font-weight: 800; letter-spacing: .12em; }
.v5-segment svg { width: 36px; height: 36px; margin: 52px 0 30px; fill: none; stroke: var(--v5-forest); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.v5-segment h3 { margin: 0 0 12px; font-size: 1.6rem; }
.v5-segment p { margin: 0 0 26px; color: var(--v5-muted); font-size: .92rem; }
.v5-segment .v5-text-link { margin-top: auto; }

/* Editorial section breaks */
.v5-market-strip {
  position: relative;
  z-index: 8;
  margin-block: calc(var(--v5-section) * -.46) calc(var(--v5-section) * -.44);
  padding-block: clamp(30px, 4vw, 52px);
  background: linear-gradient(to bottom, var(--v5-paper) 0 50%, var(--v5-sand) 50% 100%);
  pointer-events: none;
}
.v5-market-strip-inner {
  min-height: 0;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: clamp(22px, 4vw, 58px);
}
.v5-market-city {
  height: clamp(190px, 22vw, 288px);
  min-height: 0;
  max-height: 288px;
  aspect-ratio: 16 / 7;
  position: relative;
  overflow: hidden;
  border-radius: var(--v5-radius-lg);
  background: var(--v5-ink);
  box-shadow: 0 34px 90px rgba(16,24,32,.22);
  transform: translateY(20px);
  pointer-events: auto;
}
.v5-market-city img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(.92) contrast(1.02);
  transition: transform .7s var(--v5-ease), filter .7s var(--v5-ease);
}
.v5-market-city:hover img { transform: scale(1.035); filter: saturate(1.04) contrast(1.04); }
.v5-market-city::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(120deg, rgba(8,20,18,.72), rgba(8,20,18,.18) 55%, rgba(199,165,100,.16)),
    linear-gradient(to top, rgba(8,20,18,.62), transparent 48%);
  pointer-events: none;
}
.v5-market-city::after {
  content: 'MIAMI · BISCAYNE BAY';
  position: absolute;
  left: 28px;
  bottom: 26px;
  z-index: 2;
  color: rgba(255,255,255,.74);
  font-size: .6rem;
  font-weight: 900;
  letter-spacing: .18em;
}
.v5-market-note {
  transform: translateY(-16px);
  padding: clamp(24px, 3.4vw, 42px);
  border: 1px solid rgba(16,24,32,.14);
  border-radius: var(--v5-radius-lg);
  background: rgba(248,247,244,.96);
  box-shadow: var(--v5-shadow);
  pointer-events: auto;
}
.v5-market-note p,
.v5-concierge-principle span,
.v5-photo-quote p,
.v5-area-scout p {
  margin: 0 0 14px;
  color: var(--v5-champagne-dark);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.v5-market-note h2 {
  max-width: 13ch;
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 3vw, 3.3rem);
}
.v5-market-note span {
  display: block;
  max-width: 54ch;
  color: var(--v5-muted);
  line-height: 1.72;
}

/* Method timeline */
.v5-method { background: var(--v5-sand); }
.v5-method-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(64px, 10vw, 150px); }
.v5-method-intro { position: sticky; top: 132px; align-self: start; }
.v5-method-intro h2 { max-width: 10ch; margin: 0 0 26px; }
.v5-method-intro > p { max-width: 48ch; color: var(--v5-muted); }
.v5-method-intro .v5-text-link { margin-top: 24px; }
.v5-timeline { position: relative; margin: 0; padding: 0; list-style: none; counter-reset: timeline; }
.v5-timeline::before { content: ''; position: absolute; top: 0; bottom: 0; left: 34px; width: 1px; background: rgba(16,24,32,.18); }
.v5-timeline li { position: relative; min-height: 150px; display: grid; grid-template-columns: 68px 1fr; gap: 26px; }
.v5-timeline li > span { width: 68px; height: 68px; display: grid; place-items: center; position: relative; z-index: 1; border: 1px solid rgba(16,24,32,.22); border-radius: 50%; background: var(--v5-sand); color: var(--v5-champagne-dark); font-family: "Fraunces", serif; }
.v5-timeline h3 { margin: 6px 0 8px; font-size: 1.65rem; }
.v5-timeline p { max-width: 48ch; margin: 0; color: var(--v5-muted); }

/* Concierge */
.v5-concierge {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(199,165,100,.28), transparent 30%),
    radial-gradient(circle at 12% 74%, rgba(237,229,214,.12), transparent 32%),
    linear-gradient(128deg, #081412 0%, #123b35 46%, #0c1f1c 100%);
  color: #fff;
}
.v5-concierge::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent 18%, #000 74%);
  pointer-events: none;
}
.v5-concierge::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,20,18,.9) 0%, rgba(8,20,18,.62) 42%, rgba(8,20,18,.18) 100%);
  pointer-events: none;
}
.v5-concierge-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(360px, .78fr);
  gap: clamp(42px, 6vw, 88px);
  align-items: center;
  position: relative;
}
.v5-concierge-grid > * { position: relative; z-index: 1; }
.v5-concierge-copy {
  width: 100%;
  padding: clamp(30px, 4.4vw, 58px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--v5-radius-lg);
  background: linear-gradient(145deg, rgba(8,20,18,.74), rgba(18,59,53,.44));
  box-shadow: 0 28px 80px rgba(0,0,0,.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.v5-concierge .v5-kicker { color: var(--v5-champagne); }
.v5-concierge-principle {
  margin: 0 0 30px;
  padding: 18px 20px;
  border: 1px solid rgba(199,165,100,.3);
  border-left: 3px solid var(--v5-champagne);
  border-radius: var(--v5-radius-sm);
  background: rgba(8,20,18,.36);
}
.v5-concierge-principle span {
  display: block;
  margin-bottom: 10px;
  color: var(--v5-champagne);
}
.v5-concierge-principle p {
  max-width: 44ch;
  margin: 0;
  color: rgba(255,255,255,.88);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.2rem, 1.6vw, 1.6rem);
  line-height: 1.22;
}
.v5-concierge-copy h2 {
  max-width: 18ch;
  margin: 0 0 28px;
  color: #fff;
  font-size: clamp(2rem, 3.45vw, 3.75rem);
  line-height: 1.02;
  text-wrap: balance;
  text-shadow: 0 2px 18px rgba(0,0,0,.28);
}
.v5-concierge-copy > p { max-width: 68ch; color: rgba(255,255,255,.86); }
.v5-concierge-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; margin-top: 34px; }
.v5-honesty-note {
  width: fit-content;
  margin-top: 26px !important;
  padding: 10px 14px;
  border: 1px solid rgba(199,165,100,.34);
  border-radius: 999px;
  background: rgba(199,165,100,.12);
  color: rgba(255,255,255,.9) !important;
  font-size: .72rem;
}
.v5-dashboard {
  width: 100%;
  max-width: 470px;
  justify-self: end;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--v5-radius-lg);
  background: rgba(255,255,255,.95);
  color: var(--v5-ink);
  box-shadow: 0 40px 90px rgba(0,0,0,.22);
}
.v5-dashboard-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 24px; border-bottom: 1px solid var(--v5-line); color: var(--v5-muted); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.v5-live-dot { display: flex; align-items: center; gap: 8px; color: var(--v5-success); }
.v5-live-dot::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 5px rgba(37,107,87,.1); }
.v5-dashboard-field { padding: 22px 0; display: grid; grid-template-columns: 1fr 1.6fr; border-bottom: 1px solid var(--v5-line); }
.v5-dashboard span { color: var(--v5-muted); font-size: .72rem; font-weight: 700; }
.v5-dashboard strong { font-size: .9rem; }
.v5-dashboard-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--v5-line); border-bottom: 1px solid var(--v5-line); }
.v5-dashboard-grid > div { padding: 22px 18px 22px 0; display: grid; gap: 8px; background: #fff; }
.v5-dashboard-grid > div:last-child { padding-left: 18px; }
.v5-opportunity { padding-top: 26px; }
.v5-opportunity > div { height: 6px; margin: 14px 0 10px; overflow: hidden; border-radius: 999px; background: rgba(16,24,32,.1); }
.v5-opportunity i { display: block; width: var(--score); height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--v5-champagne), var(--v5-forest)); }
.v5-opportunity small { color: var(--v5-muted); font-size: .67rem; }

/* Services */
.v5-services { background: #fff; }
.v5-service-list { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(220px, auto); gap: 12px; }
.v5-service { padding: 30px; display: flex; flex-direction: column; border: 1px solid var(--v5-line); border-radius: var(--v5-radius-sm); background: var(--v5-paper); transition: background .2s ease, border-color .2s ease; }
.v5-service:hover { background: var(--v5-sand); border-color: var(--v5-sand-deep); }
.v5-service--feature { grid-row: span 2; background: var(--v5-ink); color: #fff; }
.v5-service--feature:hover { background: var(--v5-forest); border-color: var(--v5-forest); }
.v5-service > span { color: var(--v5-champagne-dark); font-size: .68rem; font-weight: 800; letter-spacing: .13em; }
.v5-service--feature > span { color: var(--v5-champagne); }
.v5-service h3 { margin: auto 0 12px; font-size: clamp(1.4rem, 2vw, 2rem); }
.v5-service p { margin: 0; color: var(--v5-muted); font-size: .9rem; }
.v5-service--feature p { color: rgba(255,255,255,.68); }

.v5-photo-bridge {
  position: relative;
  z-index: 8;
  margin-block: calc(var(--v5-section) * -.42) calc(var(--v5-section) * -.5);
  padding-block: clamp(34px, 5vw, 66px);
  background: linear-gradient(to bottom, #fff 0 50%, var(--v5-about-bg) 50% 100%);
  pointer-events: none;
}
.v5-photo-bridge-grid {
  min-height: 0;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: clamp(24px, 5vw, 76px);
}
.v5-photo-frame {
  width: min(650px, 100%);
  justify-self: end;
  position: relative;
  pointer-events: auto;
}
.v5-photo-frame::before {
  content: '';
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(199,165,100,.45);
  border-radius: var(--v5-radius-lg);
}
.v5-photo-frame img {
  width: 100%;
  height: clamp(230px, 27vw, 360px);
  max-height: 360px;
  display: block;
  position: relative;
  object-fit: cover;
  object-position: center;
  border-radius: var(--v5-radius-lg);
  filter: saturate(.92) contrast(1.08);
  box-shadow: 0 34px 90px rgba(16,24,32,.28);
}
.v5-photo-quote {
  max-width: 650px;
  padding: clamp(24px, 4vw, 44px);
  border-radius: var(--v5-radius-lg);
  background:
    linear-gradient(135deg, rgba(255,255,255,.95), rgba(237,229,214,.9)),
    var(--v5-paper);
  box-shadow: var(--v5-shadow);
  transform: translateY(-18px);
  pointer-events: auto;
}
.v5-photo-quote h2 {
  max-width: 10ch;
  margin: 0 0 20px;
  font-size: clamp(2.3rem, 4.6vw, 5rem);
}
.v5-photo-quote span {
  display: block;
  max-width: 52ch;
  color: var(--v5-muted);
  line-height: 1.74;
}

/* About */
.v5-about { padding-top: calc(var(--v5-section) + 48px); background: var(--v5-about-bg); color: #fff; }
.v5-about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 10vw, 150px); align-items: center; }
.v5-about-panel {
  min-height: 520px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(199,165,100,.36);
  border-radius: var(--v5-radius-lg);
  background: var(--v5-forest);
  box-shadow: 0 34px 90px rgba(0,0,0,.22);
}
.v5-about-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  filter: saturate(.96) contrast(1.04);
  transform: scale(1.01);
}
.v5-about-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(8,20,18,.9) 0%, rgba(8,20,18,.48) 42%, rgba(8,20,18,.08) 72%),
    radial-gradient(circle at 78% 18%, rgba(199,165,100,.22), transparent 30%);
}
.v5-about-panel span {
  position: relative;
  z-index: 2;
  color: rgba(199,165,100,.92);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(5.2rem, 9vw, 8.6rem);
  line-height: .74;
  letter-spacing: -.08em;
  text-shadow: 0 14px 34px rgba(0,0,0,.34);
}
.v5-about-panel p {
  position: relative;
  z-index: 2;
  margin: 34px 0 10px;
  color: var(--v5-champagne);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.v5-about-panel strong {
  position: relative;
  z-index: 2;
  max-width: 20ch;
  color: rgba(255,255,255,.86);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1.18;
}
.v5-about-copy .v5-kicker { color: var(--v5-champagne); }
.v5-about-copy h2 { max-width: 11ch; margin: 0 0 28px; }
.v5-about-copy > p { max-width: 60ch; color: rgba(255,255,255,.7); }
.v5-about-copy blockquote { margin: 40px 0; padding: 0 0 0 28px; border-left: 2px solid var(--v5-champagne); font-family: "Fraunces",serif; font-size: clamp(1.45rem, 2.5vw, 2.2rem); line-height: 1.3; }
.v5-credentials { display: grid; grid-template-columns: 1fr 1fr; margin: 0; border-top: 1px solid var(--v5-line-light); }
.v5-credentials > div { padding: 20px 16px 20px 0; border-bottom: 1px solid var(--v5-line-light); }
.v5-credentials > div:nth-child(even) { padding-left: 16px; border-left: 1px solid var(--v5-line-light); }
.v5-credentials dt { color: var(--v5-champagne); font-size: .63rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.v5-credentials dd { margin: 6px 0 0; color: rgba(255,255,255,.78); font-size: .86rem; }

/* Areas */
.v5-areas { background: var(--v5-paper); }
.v5-area-scout {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(420px, 560px) minmax(0, 1fr);
  gap: clamp(72px, 7vw, 124px);
  align-items: center;
  margin-bottom: 18px;
  padding: clamp(16px, 2.4vw, 24px);
  border-radius: var(--v5-radius-lg);
  background: #fff;
  box-shadow: var(--v5-shadow-soft);
}
.v5-area-scout-media {
  height: clamp(250px, 24vw, 350px);
  min-height: 0;
  max-height: 350px;
  aspect-ratio: 4 / 3;
  border-radius: var(--v5-radius);
  position: relative;
  overflow: hidden;
  background: var(--v5-ink);
}
.v5-area-scout-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(.95) contrast(1.02);
  transition: transform .7s var(--v5-ease), filter .7s var(--v5-ease);
}
.v5-area-scout:hover .v5-area-scout-media img { transform: scale(1.035); filter: saturate(1.05) contrast(1.04); }
.v5-area-scout-media::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(8,20,18,.58), transparent 46%),
    linear-gradient(120deg, rgba(18,59,53,.52), transparent 55%);
  pointer-events: none;
}
.v5-area-scout-media::after {
  content: 'MIAMI · BROWARD · ORLANDO';
  position: absolute;
  left: 22px;
  bottom: 18px;
  z-index: 2;
  color: rgba(255,255,255,.58);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .16em;
}
.v5-area-scout-copy {
  align-self: center;
  min-width: 0;
  padding-left: clamp(8px, 1.5vw, 28px);
}
.v5-area-scout h3 {
  max-width: 15ch;
  margin: 0 0 14px;
  font-size: clamp(1.85rem, 2.8vw, 3.05rem);
  line-height: 1.05;
}
.v5-area-scout-copy > span {
  display: block;
  max-width: 56ch;
  color: var(--v5-muted);
  line-height: 1.72;
}
.v5-area-scout-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.v5-area-scout-copy li {
  padding: 8px 12px;
  border: 1px solid rgba(18,59,53,.14);
  border-radius: 999px;
  background: var(--v5-paper);
  color: var(--v5-forest);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.v5-area-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--v5-line); border-left: 1px solid var(--v5-line); }
.v5-area { min-height: 172px; position: relative; padding: 24px 28px; border-right: 1px solid var(--v5-line); border-bottom: 1px solid var(--v5-line); color: var(--v5-ink); text-decoration: none; transition: background .22s ease, color .22s ease; }
.v5-area:hover { background: var(--v5-forest); color: #fff; }
.v5-area > span { color: var(--v5-champagne-dark); font-size: .65rem; font-weight: 800; }
.v5-area:hover > span { color: var(--v5-champagne); }
.v5-area h3 { margin: 34px 0 8px; font-size: 1.65rem; }
.v5-area p { max-width: 32ch; margin: 0; color: var(--v5-muted); font-size: .82rem; line-height: 1.62; }
.v5-area:hover p { color: rgba(255,255,255,.7); }
.v5-area i { position: absolute; right: 28px; top: 26px; font-style: normal; transition: transform .2s ease; }
.v5-area:hover i { transform: translate(3px,-3px); }

/* Testimonials */
.v5-testimonials { background: var(--v5-sand); }
.v5-testimonial-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.v5-testimonial { min-height: 390px; padding: 34px; display: flex; flex-direction: column; border-radius: var(--v5-radius); background: #fff; box-shadow: var(--v5-shadow-soft); }
.v5-stars { color: var(--v5-champagne-dark); letter-spacing: .16em; }
.v5-testimonial blockquote { margin: 40px 0; font-family: "Fraunces",serif; font-size: 1.35rem; line-height: 1.45; }
.v5-testimonial footer { margin-top: auto; display: flex; align-items: center; gap: 14px; }
.v5-testimonial footer > span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--v5-sand); color: var(--v5-champagne-dark); font-weight: 800; }
.v5-testimonial footer div { display: grid; }
.v5-testimonial footer small { margin-top: 3px; color: var(--v5-muted); }

/* FAQ */
.v5-faq { background: #fff; }
.v5-faq-grid { display: grid; grid-template-columns: .68fr 1.32fr; gap: clamp(60px, 10vw, 150px); }
.v5-faq-intro { position: sticky; top: 132px; align-self: start; }
.v5-faq-intro h2 { max-width: 10ch; margin: 0 0 24px; }
.v5-faq-intro > p { color: var(--v5-muted); }
.v5-faq-intro .v5-text-link { margin-top: 22px; }
.v5-faq-list { border-top: 1px solid var(--v5-line); }
.v5-faq-item { border-bottom: 1px solid var(--v5-line); }
.v5-faq-item summary { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; color: var(--v5-ink); font-size: 1rem; font-weight: 750; }
.v5-faq-item summary::-webkit-details-marker { display: none; }
.v5-faq-item summary i { width: 26px; height: 26px; position: relative; flex: 0 0 auto; border: 1px solid var(--v5-line); border-radius: 50%; }
.v5-faq-item summary i::before,
.v5-faq-item summary i::after { content: ''; position: absolute; left: 7px; top: 12px; width: 10px; height: 1px; background: currentColor; transition: transform .2s ease; }
.v5-faq-item summary i::after { transform: rotate(90deg); }
.v5-faq-item[open] summary i::after { transform: rotate(0); }
.v5-faq-item > div { padding: 0 48px 24px 0; }
.v5-faq-item > div p { margin: 0; color: var(--v5-muted); }

/* Blog */
.v5-blog { background: var(--v5-paper); }
.v5-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.v5-article { min-height: 360px; display: flex; flex-direction: column; padding: 32px; border: 1px solid var(--v5-line); border-radius: var(--v5-radius-sm); background: #fff; transition: box-shadow .22s ease, transform .22s ease; }
.v5-article:hover { transform: translateY(-5px); box-shadow: var(--v5-shadow-soft); }
.v5-article > p { margin: 0 0 54px; color: var(--v5-champagne-dark); font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.v5-article h3 { margin: 0 0 18px; font-size: 1.7rem; line-height: 1.18; }
.v5-article h3 a { color: inherit; text-decoration: none; }
.v5-article > div { color: var(--v5-muted); font-size: .9rem; }
.v5-article .v5-text-link { margin-top: auto; padding-top: 28px; }

/* Contact */
.v5-contact { background: var(--v5-sand); }
.v5-contact-shell { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(52px, 9vw, 130px); align-items: start; }
.v5-contact-copy { position: sticky; top: 132px; }
.v5-contact-copy h2 { max-width: 10ch; margin: 0 0 28px; }
.v5-contact-copy > p { max-width: 47ch; color: var(--v5-muted); }
.v5-contact-atmosphere {
  height: clamp(86px, 8vw, 104px);
  max-height: 104px;
  margin-top: 24px;
  aspect-ratio: 21 / 5;
  position: relative;
  overflow: hidden;
  border-radius: var(--v5-radius);
  background: var(--v5-ink);
  box-shadow: var(--v5-shadow-soft);
}
.v5-contact-atmosphere img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(.88) contrast(1.04);
}
.v5-contact-atmosphere::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,20,18,.78), rgba(8,20,18,.18)),
    linear-gradient(to top, rgba(8,20,18,.58), transparent 48%);
}
.v5-contact-atmosphere span {
  position: absolute;
  left: 20px;
  bottom: 18px;
  color: rgba(255,255,255,.74);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.v5-contact-links { margin-top: 44px; border-top: 1px solid rgba(16,24,32,.22); }
.v5-contact-links a { display: grid; grid-template-columns: 100px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(16,24,32,.22); color: var(--v5-ink); text-decoration: none; }
.v5-contact-links span { color: var(--v5-champagne-dark); font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.v5-contact-links strong { font-size: .88rem; overflow-wrap: anywhere; }
.v5-form-card { padding: clamp(28px, 5vw, 54px); border-radius: var(--v5-radius-lg); background: #fff; box-shadow: var(--v5-shadow); }
.v5-form-head { margin-bottom: 30px; }
.v5-form-head > span { color: var(--v5-champagne-dark); font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.v5-form-head h3 { margin: 12px 0 8px; font-size: clamp(1.8rem, 3vw, 2.6rem); }
.v5-form-head p { margin: 0; color: var(--v5-muted); }
.v5-form-card .lead-form { gap: 18px; }
.v5-form-card .lead-grid { gap: 16px; }
.v5-form-card .lead-form label { gap: 7px; }
.v5-form-card .lead-form span { color: var(--v5-ink-soft); font-size: .76rem; }
.v5-form-card .lead-form input,
.v5-form-card .lead-form select,
.v5-form-card .lead-form textarea { min-height: 50px; border: 1px solid rgba(16,24,32,.22); border-radius: 5px; padding: 12px 14px; background: var(--v5-paper); color: var(--v5-ink); font-size: 1rem; }
.v5-form-card .lead-form textarea { min-height: 110px; }
.v5-form-card .lead-form :is(input,select,textarea):focus { border-color: var(--v5-forest); box-shadow: 0 0 0 4px rgba(18,59,53,.1); transform: none; }
.v5-form-card .lead-form button { min-height: 54px; border-radius: 5px; background: var(--v5-forest); border-color: var(--v5-forest); color: #fff; box-shadow: none; }
.v5-form-card .lead-form button:hover { background: var(--v5-ink); border-color: var(--v5-ink); }
.v5-form-card .lead-form button:disabled { opacity: .58; cursor: wait; }
.v5-form-card .form-privacy { color: var(--v5-muted); }

/* Shared footer */
.v5-footer { padding: 0; background: #0b1116; color: rgba(255,255,255,.72); }
.v5-footer-top { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; padding-block: 80px; border-bottom: 1px solid rgba(255,255,255,.12); }
.v5-brand--footer { color: #fff; }
.v5-brand--footer strong { font-size: 1.35rem; }
.v5-brand--footer small { color: var(--v5-champagne); }
.v5-footer-brand > p { max-width: 40ch; margin-top: 22px; color: rgba(255,255,255,.55); font-size: .86rem; }
.v5-footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.v5-footer-nav > div { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.v5-footer-nav h2 { margin: 0 0 12px; color: var(--v5-champagne); font-family: Manrope, sans-serif; font-size: .64rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.v5-footer-nav a { color: rgba(255,255,255,.68); font-size: .82rem; text-decoration: none; }
.v5-footer-nav a:hover { color: #fff; }
.v5-footer-bottom { min-height: 86px; display: grid; grid-template-columns: auto 1fr auto; gap: 30px; align-items: center; }
.v5-footer-bottom p { margin: 0; color: rgba(255,255,255,.4); font-size: .7rem; }
.v5-disclaimer { text-align: center; }
.v5-footer-bottom nav { display: flex; gap: 16px; }
.v5-footer-bottom a { color: rgba(255,255,255,.5); font-size: .7rem; text-decoration: none; }
.v5-wa-float { width: 56px; height: 56px; position: fixed; right: 22px; bottom: 22px; z-index: 450; display: grid; place-items: center; border-radius: 50%; background: #1fa968; color: #fff; box-shadow: 0 14px 34px rgba(31,169,104,.32); transition: transform .2s ease, box-shadow .2s ease; }
.v5-wa-float:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(31,169,104,.4); }
.v5-wa-float svg { width: 27px; height: 27px; fill: currentColor; }

/* Legal fallback pages */
.v5-legal-page { background: var(--v5-paper); color: var(--v5-ink); }
.v5-legal-hero {
  padding-block: clamp(78px, 10vw, 140px) clamp(46px, 7vw, 88px);
  background:
    radial-gradient(circle at 78% 18%, rgba(199,165,100,.26), transparent 30%),
    linear-gradient(130deg, var(--v5-ink), var(--v5-forest));
  color: #fff;
}
.v5-legal-hero .v5-kicker { color: var(--v5-champagne); }
.v5-legal-hero h1 {
  max-width: 12ch;
  margin: 0 0 24px;
  color: #fff;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: .96;
  letter-spacing: -.05em;
}
.v5-legal-hero p:not(.v5-kicker) {
  max-width: 60ch;
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.72;
}
.v5-legal-body { padding-block: clamp(52px, 8vw, 100px); }
.v5-legal-card {
  padding: clamp(28px, 5vw, 60px);
  border: 1px solid var(--v5-line);
  border-radius: var(--v5-radius-lg);
  background: #fff;
  box-shadow: var(--v5-shadow-soft);
}
.v5-legal-card section + section {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--v5-line);
}
.v5-legal-card h2 {
  margin: 0 0 12px;
  color: var(--v5-ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}
.v5-legal-card p {
  max-width: 76ch;
  margin: 0;
  color: var(--v5-muted);
  line-height: 1.78;
}
.v5-legal-updated {
  margin-top: 36px !important;
  padding-top: 22px;
  border-top: 1px solid var(--v5-line);
  color: var(--v5-champagne-dark) !important;
  font-size: .78rem;
  font-weight: 800;
}

/* Reveal */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .58s var(--v5-ease), transform .58s var(--v5-ease); transition-delay: var(--reveal-delay, 0ms); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@keyframes v5-hero-in { to { opacity: 1; transform: none; } }
@keyframes v5-panel-in { from { transform: translateX(100%); } to { transform: none; } }

@media (max-width: 1120px) {
  .v5-nav-wrap { grid-template-columns: 1fr auto; }
  .v5-desktop-nav,
  .v5-header-cta { display: none; }
  .v5-nav-toggle { display: block; }
  .v5-segment-grid { grid-template-columns: repeat(2, 1fr); }
  .v5-segment { min-height: 340px; }
  .v5-photo-bridge-grid { grid-template-columns: .86fr 1fr; }
  .v5-area-scout {
    grid-template-columns: minmax(360px, 480px) minmax(0, 1fr);
    gap: clamp(44px, 5vw, 72px);
  }
  .v5-area-scout-copy { padding-left: 0; }
  .v5-service-list { grid-template-columns: repeat(2, 1fr); }
  .v5-service--feature { grid-row: auto; }
}

@media (max-width: 900px) {
  :root { --v5-section: 88px; }
  .v5-nav-wrap { min-height: 72px; grid-template-columns: 1fr auto; }
  .v5-desktop-nav,
  .v5-header-cta { display: none; }
  .v5-nav-toggle { display: block; }
  .v5-hero { min-height: auto; }
  .v5-hero-grid { grid-template-columns: 1fr; padding-top: 72px; padding-bottom: 0; }
  .v5-hero-copy { max-width: 680px; }
  .v5-hero-media { min-height: 700px; width: min(620px, 92%); margin-inline: auto; }
  .v5-section-head { grid-template-columns: 1fr; gap: 24px; }
  .v5-section-head > .v5-text-link { justify-self: start; }
  .v5-market-strip-inner,
  .v5-photo-bridge-grid,
  .v5-area-scout { grid-template-columns: 1fr; }
  .v5-market-strip {
    margin-block: -54px -54px;
    padding-block: 34px;
  }
  .v5-market-note { transform: translateY(-18px); }
  .v5-market-city {
    height: clamp(180px, 30vw, 260px);
    max-height: 260px;
    transform: translateY(10px);
  }
  .v5-photo-bridge {
    margin-block: -54px -68px;
    padding-block: 38px;
  }
  .v5-photo-frame { justify-self: start; width: min(650px, 100%); }
  .v5-photo-frame img { height: clamp(210px, 34vw, 300px); max-height: 300px; }
  .v5-photo-quote { max-width: none; transform: translateY(-18px); }
  .v5-area-scout-media { height: clamp(220px, 34vw, 300px); max-height: 300px; }
  .v5-method-layout,
  .v5-concierge-grid,
  .v5-about-grid,
  .v5-faq-grid,
  .v5-contact-shell { grid-template-columns: 1fr; }
  .v5-concierge-grid { gap: 34px; }
  .v5-dashboard { max-width: 100%; justify-self: stretch; }
  .v5-method-intro,
  .v5-faq-intro,
  .v5-contact-copy { position: static; }
  .v5-method-intro h2,
  .v5-faq-intro h2,
  .v5-contact-copy h2 { max-width: 14ch; }
  .v5-about { padding-top: calc(var(--v5-section) + 58px); }
  .v5-about-panel { min-height: 420px; }
  .v5-about-panel img { object-position: center 12%; }
  .v5-area-grid { grid-template-columns: repeat(2, 1fr); }
  .v5-testimonial-track { grid-template-columns: 1fr; }
  .v5-testimonial { min-height: 300px; }
  .v5-blog-grid { grid-template-columns: 1fr; }
  .v5-article { min-height: 300px; }
  .v5-footer-top { grid-template-columns: 1fr; gap: 54px; }
  .v5-footer-bottom { grid-template-columns: 1fr; gap: 14px; padding-block: 24px; }
  .v5-disclaimer { text-align: left; }
}

@media (max-width: 640px) {
  :root { --v5-gutter: 18px; --v5-section: 72px; }
  .v5-brand img { width: 42px; height: 42px; }
  .v5-brand strong { font-size: .92rem; }
  .v5-home h1 { font-size: clamp(3rem, 14vw, 4.4rem); }
  .v5-home h2 { font-size: clamp(2.25rem, 11vw, 3.4rem); }
  .v5-hero-grid { gap: 52px; padding-top: 54px; }
  .v5-hero-actions { flex-direction: column; align-items: stretch; }
  .v5-btn { width: 100%; }
  .v5-trust-list { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 14px; }
  .v5-trust-list li { padding: 0; margin: 0; border: 0; font-size: .65rem; }
  .v5-hero-media { min-height: 520px; width: 100%; }
  .v5-hero-arch { inset-right: 0; border-radius: 190px 190px 6px 6px; }
  .v5-hero-card { width: 86%; margin: 0 0 18px -6px; padding: 16px 18px; }
  .v5-segment-grid { grid-template-columns: 1fr; }
  .v5-segment { min-height: 300px; }
  .v5-segment svg { margin-block: 34px 24px; }
  .v5-market-strip {
    margin-block: -38px -42px;
    padding-block: 28px;
  }
  .v5-market-strip-inner { min-height: auto; gap: 10px; }
  .v5-market-city {
    height: clamp(154px, 46vw, 210px);
    max-height: 210px;
    border-radius: var(--v5-radius);
    transform: translateY(8px);
  }
  .v5-market-city::after { left: 18px; bottom: 16px; font-size: .52rem; }
  .v5-market-note {
    padding: 22px 20px;
    transform: translateY(-12px);
  }
  .v5-market-note,
  .v5-photo-quote,
  .v5-area-scout { border-radius: var(--v5-radius); }
  .v5-market-note h2,
  .v5-photo-quote h2,
  .v5-area-scout h3 { max-width: 100%; }
  .v5-timeline::before { left: 25px; }
  .v5-timeline li { min-height: 142px; grid-template-columns: 50px 1fr; gap: 18px; }
  .v5-timeline li > span { width: 50px; height: 50px; font-size: .78rem; }
  .v5-concierge-copy { padding: 28px 22px; border-radius: var(--v5-radius); }
  .v5-concierge-copy h2 { max-width: 100%; font-size: clamp(1.85rem, 8.2vw, 2.55rem); line-height: 1.04; }
  .v5-concierge-actions { gap: 14px; }
  .v5-honesty-note { width: auto; border-radius: var(--v5-radius-sm); line-height: 1.5; }
  .v5-dashboard-grid { grid-template-columns: 1fr; background: transparent; }
  .v5-dashboard-grid > div:last-child { padding-left: 0; }
  .v5-service-list { grid-template-columns: 1fr; }
  .v5-service { min-height: 220px; }
  .v5-photo-bridge {
    margin-block: -40px -50px;
    padding-block: 28px;
  }
  .v5-photo-bridge-grid { min-height: auto; gap: 10px; }
  .v5-photo-frame { width: 100%; }
  .v5-photo-frame::before,
  .v5-photo-frame img { border-radius: var(--v5-radius); }
  .v5-photo-frame::before { inset: 10px -10px -10px 10px; }
  .v5-photo-frame img { height: clamp(170px, 52vw, 230px); max-height: 230px; }
  .v5-photo-quote {
    padding: 22px 20px;
    transform: translateY(-12px);
  }
  .v5-about { padding-top: calc(var(--v5-section) + 44px); }
  .v5-about-panel { min-height: 420px; padding: 24px; }
  .v5-about-panel img { object-position: center top; }
  .v5-about-panel span { font-size: clamp(4.4rem, 18vw, 6.6rem); }
  .v5-credentials { grid-template-columns: 1fr; }
  .v5-credentials > div:nth-child(even) { padding-left: 0; border-left: 0; }
  .v5-area-scout { min-height: auto; padding: 16px; gap: 16px; }
  .v5-area-scout-media { height: clamp(190px, 58vw, 260px); max-height: 260px; }
  .v5-area-scout-copy ul { margin-top: 16px; }
  .v5-area-scout-copy li { font-size: .62rem; padding: 7px 10px; }
  .v5-area-grid { grid-template-columns: 1fr; }
  .v5-area { min-height: 164px; padding: 22px; }
  .v5-area h3 { margin-top: 32px; }
  .v5-faq-item summary { min-height: 68px; font-size: .92rem; }
  .v5-faq-item > div { padding-right: 0; }
  .v5-contact-links a { grid-template-columns: 78px 1fr; }
  .v5-contact-atmosphere { height: 88px; max-height: 88px; margin-top: 18px; }
  .v5-form-card { padding: 26px 20px; border-radius: var(--v5-radius); }
  .v5-form-card .lead-grid { grid-template-columns: 1fr; }
  .v5-footer-nav { grid-template-columns: 1fr 1fr; }
  .v5-footer-nav > div:last-child { grid-column: 1 / -1; }
  .v5-wa-float { width: 52px; height: 52px; right: 16px; bottom: 16px; }
}

@media (max-width: 390px) {
  .v5-brand small { display: none; }
  .v5-trust-list { grid-template-columns: 1fr; }
  .v5-footer-nav { grid-template-columns: 1fr; }
  .v5-footer-nav > div:last-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal,
  .js .v5-hero-enter { opacity: 1 !important; transform: none !important; }
}
