/* ================================================================
   Victoria Dream Photography — Warm Romance theme
   ================================================================ */

:root {
  --bg:        #faf3e8;
  --bg-soft:   #f3e9d8;
  --bg-white:  #fffdf9;
  --beige:     #e8d4b8;
  --gold:      #c9a878;
  --gold-deep: #a8865d;
  --brown:     #5c3f24;
  --espresso:  #2d1f10;
  --ink:       #3a2a1a;
  --line:      rgba(92, 63, 36, 0.18);

  --serif:  "Cormorant Garamond", Georgia, serif;
  --script: "Pinyon Script", cursive;
  --sans:   "Inter", -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.vd-body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.vd-body img { display: block; max-width: 100%; }
body.vd-body a { color: inherit; text-decoration: none; }

/* hide Astra junk if anything leaks */
body.vd-body .ast-container,
body.vd-body #content,
body.vd-body #primary,
body.vd-body .entry-header,
body.vd-body .ast-page-builder-template { padding: 0; max-width: none; }

/* ====== TYPOGRAPHY ====== */
.vd h1, .vd h2, .vd h3, .vd h4, .vd p { margin: 0; }
.vd em { color: var(--gold-deep); font-style: italic; font-family: var(--serif); }

.vd h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(54px, 7vw, 104px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--espresso);
}
.vd h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(38px, 4.6vw, 70px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--espresso);
}
.vd h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.15;
  color: var(--espresso);
}
.vd .overline {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.vd .script {
  font-family: var(--script);
  color: var(--gold-deep);
  line-height: 1;
}

/* ====== SHARED CTA ====== */
.vd .cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 17px 32px;
  background: var(--bg-white);
  color: var(--espresso);
  border: 1px solid var(--gold-deep);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 250ms ease, color 250ms ease, transform 250ms ease, border-color 250ms ease, gap 250ms ease;
}
.vd .cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--espresso);
  transform: translateY(-2px);
  gap: 18px;
}
.vd .cta-arrow { font-size: 16px; line-height: 1; }
.vd .cta.dark { background: var(--bg-soft); }

/* ====== HEADER ====== */
.vd-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 56px;
  background: linear-gradient(180deg, rgba(250, 243, 232, 0.94) 0%, rgba(250, 243, 232, 0.65) 60%, rgba(250, 243, 232, 0) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
/* Push fixed header below WP admin bar when logged in */
.admin-bar .vd-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .vd-header { top: 46px; }
}

/* Mobile nav: hidden by default, shown only when burger is open */
.vd-mobile-nav { display: none; }
.vd-header .vd-logo { height: 56px; width: auto; display: block; }
.vd-logo-text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.vd-logo-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--espresso);
}
.vd-logo-tag {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 4px;
}
.vd-nav { display: flex; gap: 32px; align-items: center; list-style: none; margin: 0; padding: 0; }
.vd-nav li, .vd-mobile-nav li { list-style: none; margin: 0; padding: 0; }
.vd-mobile-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.vd-nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brown);
  position: relative;
  transition: color 200ms ease;
}
.vd-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  height: 1px; width: 0;
  background: var(--gold-deep);
  transition: width 250ms ease;
}
.vd-nav a:hover { color: var(--gold-deep); }
.vd-nav a:hover::after { width: 100%; }
.vd-nav .current-menu-item > a { color: var(--gold-deep); }
.vd-nav .current-menu-item > a::after { width: 100%; }

.vd-burger { display: none; }

/* ====== HERO (homepage) ====== */
.vd-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  background: var(--bg);
  overflow: hidden;
}
.vd-hero-photo { position: relative; height: 100vh; }
.vd-hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 75%; }
.vd-hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(45,31,16,.3) 0%, rgba(45,31,16,0) 35%, rgba(45,31,16,0) 70%, rgba(45,31,16,.2) 100%);
}
.vd-hero-text { align-self: center; padding: 130px 7vw 80px; }
.vd-hero-text h1 { margin-bottom: 24px; }
.vd-hero-text .lede {
  max-width: 460px;
  margin-top: 12px;
  font-size: 17px;
  color: var(--brown);
}
.vd-hero-text .cta { margin-top: 42px; }
.vd-hero-mark {
  position: absolute;
  bottom: 32px; right: 56px;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ====== PAGE HERO (inner pages) ====== */
.vd-pagehero {
  position: relative;
  min-height: 70vh;
  padding: 180px 8vw 100px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 6vw;
  align-items: center;
  background: var(--bg);
  overflow: hidden;
}
.vd-pagehero-text .overline { margin-bottom: 22px; }
.vd-pagehero-text h1 { margin-bottom: 24px; }
.vd-pagehero-text .lede {
  max-width: 520px;
  font-size: 17px;
  color: var(--brown);
}
.vd-pagehero-text .cta { margin-top: 48px; }
.vd-pagehero-photo {
  height: 620px;
  border-radius: 4px;
  overflow: hidden;
}
.vd-pagehero-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Centered (no-photo) variant — used on Contact for form-first layout */
.vd-pagehero--centered {
  grid-template-columns: 1fr;
  text-align: center;
  min-height: auto;
  padding: 140px 8vw 16px;
}
.vd-pagehero--centered .vd-pagehero-text { max-width: 720px; margin: 0 auto; }
.vd-pagehero--centered .lede { margin-left: auto; margin-right: auto; }
.vd-pagehero--centered .cta { margin-top: 32px; }
/* When the centered hero is followed by the inquire section, pull the form up */
.vd-pagehero--centered + .vd-inquire { padding-top: 40px; }
.vd-pagehero--centered + .vd-inquire .vd-inquire-inner { padding-top: 56px; }

/* ====== SIGNATURE / STATEMENT BAND ====== */
.vd-signature {
  padding: 140px 36px;
  text-align: center;
  background: var(--bg);
}
.vd-signature::before, .vd-signature::after {
  content: "";
  display: block;
  width: 80px; height: 1px;
  background: var(--gold-deep);
  margin: 0 auto 32px;
}
.vd-signature::after { margin: 32px auto 0; }
.vd-signature-inner { max-width: 920px; margin: 0 auto; }
.vd-signature .script {
  font-size: 56px;
  margin-bottom: 20px;
}
.vd-signature .meta {
  margin-top: 32px;
  max-width: 640px;
  margin-left: auto; margin-right: auto;
  font-size: 17px;
  color: var(--brown);
}

/* ====== ABOUT (duo) ====== */
.vd-duo {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 7vw;
  align-items: center;
  padding: 130px 8vw;
  background: var(--bg-soft);
}
.vd-duo-img {
  height: min(720px, 80vw);
  border-radius: 4px;
  overflow: hidden;
}
.vd-duo-img img { width: 100%; height: 100%; object-fit: cover; }
.vd-duo-text { max-width: 540px; }
.vd-duo-text .overline { margin-bottom: 20px; }
.vd-duo-text h2 { margin-bottom: 28px; }
.vd-duo-text p { color: var(--brown); margin-bottom: 16px; }
.vd-signature-name,
.vd-comfort-text p.vd-signature-name,
.vd-duo-text p.vd-signature-name,
.vd-process-step-text p.vd-signature-name,
.vd-content-inner p.vd-signature-name {
  font-family: var(--script) !important;
  font-size: clamp(26px, 2.8vw, 38px) !important;
  color: var(--gold-deep);
  margin-top: 32px !important;
  margin-bottom: 0 !important;
  line-height: 1.1 !important;
  display: block;
}
.vd-comfort-text p em,
.vd-duo-text p em,
.vd-process-step-text p em,
.vd-content-inner p em {
  font-size: 1.28em;
  line-height: 1;
}

/* ====== SESSIONS GRID ====== */
.vd-sessions { padding: 130px 6vw 140px; background: var(--bg); }
.vd-sessions-head { text-align: center; margin-bottom: 80px; }
.vd-sessions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.vd-session {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 400ms ease, box-shadow 400ms ease;
  color: inherit;
}
.vd-session:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -25px rgba(92, 63, 36, 0.25);
}
.vd-session.featured { background: var(--bg-soft); }
.vd-session-img { aspect-ratio: 4/5; overflow: hidden; }
.vd-session-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s ease; }
.vd-session:hover .vd-session-img img { transform: scale(1.04); }
.vd-session-body { padding: 32px 30px 36px; flex: 1; display: flex; flex-direction: column; }
.vd-session-num {
  font-family: var(--script);
  font-size: 36px;
  color: var(--gold-deep);
  line-height: 1;
  margin-bottom: 12px;
}
.vd-session h3 { margin-bottom: 12px; }
.vd-session p { color: var(--brown); font-size: 15px; flex: 1; }
.vd-session-link {
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border-bottom: 1px solid var(--gold-deep);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: color 200ms ease, border-color 200ms ease, gap 200ms ease;
  display: inline-flex;
  gap: 8px;
}
.vd-session:hover .vd-session-link { gap: 14px; }

/* ====== GALLERY MASONRY (Pinterest-style, preserves aspect ratios) ====== */
.vd-gallery .vd-gallery-lede,
.vd-gallery-intro .vd-gallery-lede,
p.vd-gallery-lede {
  max-width: 580px;
  margin: 18px auto 0;
  font-size: 16px;
  color: var(--brown);
  line-height: 1.6;
  text-align: center;
}
.vd-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 36px;
}
.vd-gallery-grid figure {
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 2px;
  background: var(--bg-soft);
  aspect-ratio: 4 / 5;
}
.vd-gallery-grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s ease;
}
.vd-gallery-grid figure:hover img {
  transform: scale(1.03);
}
@media (max-width: 1000px) {
  .vd-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 0 24px;
  }
}
@media (max-width: 540px) {
  .vd-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 14px;
  }
}
@media (max-width: 380px) {
  .vd-gallery-grid {
    grid-template-columns: 1fr;
    padding: 0 18px;
  }
}

.vd-gallery-masonry {
  column-count: 3;
  column-gap: 18px;
  padding: 0 36px;
}
.vd-gallery-masonry figure {
  margin: 0 0 18px;
  padding: 0;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  overflow: hidden;
  border-radius: 2px;
  background: var(--bg-soft);
}
.vd-gallery-masonry figure img {
  width: 100% !important;
  height: auto !important;
  display: block;
  transition: transform 1.4s ease, opacity 600ms ease;
}
.vd-gallery-masonry figure:hover img {
  transform: scale(1.03);
}
@media (max-width: 1000px) {
  .vd-gallery-masonry { column-count: 2; column-gap: 14px; padding: 0 24px; }
  .vd-gallery-masonry figure { margin: 0 0 14px; }
}
@media (max-width: 540px) {
  .vd-gallery-masonry { column-count: 1; padding: 0 18px; }
}

/* ====== GALLERY MOSAIC (legacy — used on Home & Maternity) ====== */
.vd-gallery { padding: 0 0 140px; background: var(--bg); }
.vd-gallery-intro { text-align: center; padding: 80px 36px 70px; }
.vd-gallery-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 360px 360px;
  gap: 18px;
  padding: 0 36px;
}
.vd-gallery-mosaic figure { margin: 0; overflow: hidden; border-radius: 2px; }
.vd-gallery-mosaic figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s ease; }
.vd-gallery-mosaic figure:hover img { transform: scale(1.04); }
/* 5-photo layout (default — used on inner pages) */
.vd-gallery-mosaic .m1 { grid-row: span 2; }
.vd-gallery-mosaic .m4 { grid-column: span 2; }

/* 7-photo layout — homepage. Override the 5-photo spans. */
.vd-gallery-mosaic--7 {
  grid-template-rows: 320px 320px 320px;
}
.vd-gallery-mosaic--7 .m1 { grid-row: span 2; }      /* tall left */
.vd-gallery-mosaic--7 .m4 { grid-column: auto; }     /* reset wide → square */
.vd-gallery-mosaic--7 .m6 { grid-column: span 2; }   /* wide bottom-left */

/* ====== COMFORT STATEMENT (storytelling intro) ====== */
.vd-comfort {
  padding: 130px 6vw;
  background: var(--bg-soft);
}
.vd-comfort-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 7vw;
  align-items: center;
}
.vd-comfort-text { max-width: 580px; }
.vd-comfort-text .overline { margin-bottom: 22px; }
.vd-comfort-text h2 { margin-bottom: 30px; }
.vd-comfort-text p {
  color: var(--brown);
  margin-bottom: 18px;
  font-size: 17px;
}
.vd-comfort-text .vd-signature-name {
  margin-top: 22px !important;
}
.vd-comfort-quote {
  position: relative;
  padding: 44px 36px 40px;
  border-top: 1px solid var(--gold-deep);
  border-bottom: 1px solid var(--gold-deep);
  background: rgba(255, 253, 249, 0.4);
}
.vd-quote-mark {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 100px;
  color: var(--gold);
  line-height: 0.6;
  display: block;
  margin-bottom: -8px;
}
.vd-comfort-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.4;
  color: var(--espresso);
  margin: 0 0 24px;
}
.vd-comfort-quote-photo {
  width: 80px;
  height: 80px;
  margin: 8px auto 12px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
}
.vd-comfort-quote-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vd-quote-author {
  display: block;
  font-family: var(--script);
  font-size: 36px;
  color: var(--gold-deep);
  line-height: 1;
}
.vd-comfort-quote-photo + .vd-quote-author {
  text-align: center;
}

/* ====== PROCESS — alternating step blocks ====== */
.vd-process {
  padding: 140px 6vw 130px;
  background: var(--bg);
}
.vd-process-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 110px;
}
.vd-process-head .overline { margin-bottom: 22px; text-align: center; }
.vd-process-head h2 { margin-bottom: 28px; text-align: center; }
.vd-process-head .vd-process-lede {
  font-size: 17px;
  color: var(--brown);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.vd-process-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto 120px;
}
.vd-process-step:last-child { margin-bottom: 0; }
.vd-process-step.reverse .vd-process-step-img { order: 2; }
.vd-process-step.reverse .vd-process-step-text { order: 1; }
.vd-process-step-img {
  height: 600px;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
}
.vd-process-step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s ease;
}
.vd-process-step:hover .vd-process-step-img img {
  transform: scale(1.03);
}
.vd-process-step-text { max-width: 500px; }
.vd-process-step-num {
  font-family: var(--script);
  font-size: 64px;
  color: var(--gold-deep);
  line-height: 1;
  display: block;
  margin-bottom: 18px;
}
.vd-process-step-text .overline { margin-bottom: 18px; }
.vd-process-step-text h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--espresso);
}
.vd-process-step-text p {
  color: var(--brown);
  font-size: 17px;
  line-height: 1.7;
}

/* ====== TESTIMONIAL ====== */
.vd-testimonial {
  padding: 130px 36px;
  text-align: center;
  background: var(--bg-soft);
  color: var(--espresso);
  position: relative;
}
.vd-testimonial::before, .vd-testimonial::after {
  content: ""; display: block;
  width: 100px; height: 1px;
  background: var(--gold-deep);
  margin: 0 auto 36px;
}
.vd-testimonial::after { margin: 36px auto 0; }
.vd-testimonial .script {
  font-size: 50px;
  margin-bottom: 22px;
}
.vd-testimonial blockquote {
  max-width: 880px;
  margin: 0 auto 28px;
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 1.4;
  color: var(--espresso);
}
.vd-testimonial-photo {
  width: 80px;
  height: 80px;
  margin: 8px auto 14px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
}
.vd-testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vd-testimonial .quote-name {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ====== AWARDS / RECOGNITION STRIP ====== */
.vd-awards {
  padding: 70px 6vw 80px;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.vd-awards-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.vd-awards .overline {
  margin-bottom: 38px;
}
.vd-awards-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 64px;
}
.vd-award {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vd-award-img {
  height: 140px !important;
  width: auto !important;
  max-width: 220px;
  object-fit: contain;
  opacity: 0.92;
  filter: saturate(0.95);
  transition: opacity 250ms ease, filter 250ms ease, transform 250ms ease;
  display: block;
}
.vd-award:hover .vd-award-img {
  opacity: 1;
  filter: saturate(1);
  transform: translateY(-4px);
}
@media (max-width: 900px) {
  .vd-awards { padding: 60px 24px; }
  .vd-awards-row { gap: 40px; }
  .vd-award-img { height: 100px !important; max-width: 160px; }
}
@media (max-width: 500px) {
  .vd-awards-row { gap: 28px; }
  .vd-award-img { height: 80px !important; max-width: 130px; }
}

/* ====== CTA BAND ====== */
.vd-ctaband {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--bg-soft);
}
.vd-ctaband-img { height: 720px; overflow: hidden; }
.vd-ctaband-img img { width: 100%; height: 100%; object-fit: cover; }
.vd-ctaband-text {
  padding: 8vw 7vw;
  align-self: center;
  max-width: 600px;
}
.vd-ctaband-text .overline { margin-bottom: 20px; }
.vd-ctaband-text h2 { margin-bottom: 24px; }
.vd-ctaband-text p { color: var(--brown); }
.vd-ctaband-text .cta { margin-top: 36px; }

/* ====== INVESTMENT (pricing) ====== */
.vd-pricing { padding: 140px 6vw; background: var(--bg); scroll-margin-top: 100px; }
.vd-pricing-head { text-align: center; max-width: 760px; margin: 0 auto 80px; }
.vd-price-grid {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
}
.vd-price-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}
.vd-price-grid .vd-price-card { max-width: none; margin: 0; }
.vd-price-card::before {
  content: "";
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 3px;
  background: var(--gold-deep);
}
.vd-price-card--mini {
  background: var(--bg-soft);
}
.vd-price-card--mini::before {
  background: var(--gold);
  width: 80px;
}
.vd-price-tag {
  display: inline-block;
  align-self: center;
  margin-bottom: 18px;
  padding: 6px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--gold-deep);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.vd-price-card--mini .vd-price-tag {
  background: var(--bg-white);
  border-color: var(--gold);
  color: var(--gold-deep);
}
.vd-price-blurb {
  display: block;
  align-self: center;
  width: fit-content;
  max-width: 560px;
  margin: -8px auto 8px;
  padding: 0;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.4;
  color: var(--brown);
}
.vd-price-card .cta {
  align-self: center;
  margin-top: auto;
}
.vd-price-footnote-wrap {
  width: 100%;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.vd-price-footnote-wrap .vd-price-footnote {
  display: block;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--espresso);
}
@media (max-width: 900px) {
  .vd-price-grid { grid-template-columns: 1fr; gap: 24px; }
}
.vd-reviews { padding: 0 6vw 120px; background: var(--bg); }
.vd-reviews-head { text-align: center; max-width: 760px; margin: 0 auto 28px; }
.vd-reviews-head .overline { margin-bottom: 16px; }
.vd-reviews-widget { max-width: 1200px; margin: 0 auto; }
@media (max-width: 900px) {
  .vd-reviews { padding: 0 24px 70px; }
  .vd-reviews-head { margin-bottom: 20px; }
}

/* Tighter vertical rhythm on the Investment page only */
.page-family-photography-pricing-orlando .vd-pagehero {
  min-height: auto;
  padding-top: 140px;
  padding-bottom: 48px;
}
.page-family-photography-pricing-orlando .vd-pricing {
  padding-top: 80px;
}
@media (max-width: 900px) {
  .page-family-photography-pricing-orlando .vd-pagehero {
    padding-top: 100px;
    padding-bottom: 32px;
  }
  .page-family-photography-pricing-orlando .vd-pricing {
    padding-top: 48px;
  }
}
.vd-price-card .overline { margin-bottom: 14px; }
.vd-price-card .price {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(64px, 7vw, 100px);
  line-height: 1;
  color: var(--espresso);
  margin: 14px 0 22px;
}
.vd-price-card--mini .price { color: var(--brown); }
.vd-price-includes {
  list-style: none;
  margin: 0 auto 40px;
  padding: 32px 40px;
  text-align: left;
  width: fit-content;
  max-width: 100%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 14px;
}
.vd-price-includes li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--brown);
}
.vd-price-includes li::before {
  content: "✦";
  position: absolute;
  left: 0; top: 1px;
  color: var(--gold-deep);
  font-size: 13px;
}

/* ====== CONTENT BLOCKS (long copy) ====== */
.vd-content { padding: 120px 8vw; background: var(--bg); }
.vd-content-inner { max-width: 760px; margin: 0 auto; }
.vd-content-inner h2 { margin-bottom: 28px; }
.vd-content-inner h3 { margin: 40px 0 14px; }
.vd-content-inner p { color: var(--brown); margin-bottom: 18px; font-size: 17px; }
.vd-content-inner ul { color: var(--brown); padding-left: 24px; margin-bottom: 18px; }
.vd-content-inner li { margin-bottom: 8px; }
.vd-content-inner a { color: var(--gold-deep); border-bottom: 1px solid var(--gold-deep); }

/* ====== FAQ accordion ====== */
.vd-faq { padding: 120px 6vw; background: var(--bg); }
.vd-faq-inner { max-width: 880px; margin: 0 auto; }
.vd-faq details {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.vd-faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--espresso);
  transition: color 200ms ease;
}
.vd-faq summary::-webkit-details-marker { display: none; }
.vd-faq summary::after {
  content: "+";
  font-family: var(--serif);
  font-weight: 300;
  font-size: 28px;
  color: var(--gold-deep);
  line-height: 1;
  transition: transform 250ms ease;
  flex-shrink: 0;
}
.vd-faq details[open] summary { color: var(--gold-deep); }
.vd-faq details[open] summary::after { content: "—"; }
.vd-faq details p { color: var(--brown); margin-top: 16px; font-size: 16px; }

/* ====== CONTACT page — compact info strip below the form ====== */
.vd-contact-meta {
  padding: 30px 6vw 110px;
  background: var(--bg);
}
.vd-contact-meta-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  padding-top: 56px;
  border-top: 1px solid var(--line);
}
.vd-contact-meta article {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.vd-contact-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
}
.vd-contact-value {
  display: block;
  font-family: var(--serif);
  font-size: 19px;
  color: var(--espresso);
  font-weight: 400;
  line-height: 1.3;
  word-break: break-word;
}
a.vd-contact-value {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 200ms ease, border-color 200ms ease;
}
a.vd-contact-value:hover {
  color: var(--gold-deep);
  border-bottom-color: var(--gold-deep);
}
.vd-contact-meta-sub {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--brown);
  line-height: 1.5;
  max-width: 240px;
  font-family: var(--sans);
}
@media (max-width: 900px) {
  .vd-contact-meta-inner { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}
@media (max-width: 560px) {
  .vd-contact-meta-inner { grid-template-columns: 1fr; gap: 32px; }
  .vd-contact-meta { padding: 30px 24px 80px; }
}

/* ====== INQUIRE SECTION ====== */
.vd-inquire { padding: 140px 6vw; background: var(--bg); }
.vd-inquire-inner {
  max-width: 880px;
  margin: 0 auto;
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 72px 64px;
  position: relative;
}
.vd-inquire-inner::before {
  content: "";
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 3px;
  background: var(--gold-deep);
}
.vd-inquire-head { text-align: center; margin-bottom: 12px; }
.vd-inquire-head .overline { margin-bottom: 16px; }
.vd-inquire-head h2 { margin-bottom: 18px; }
.vd-inquire-lede {
  max-width: 520px;
  margin: 0 auto;
  color: var(--brown);
  font-size: 16px;
}
@media (max-width: 700px) {
  .vd-inquire { padding: 70px 18px; }
  .vd-inquire-inner { padding: 48px 24px; }
}

/* ====== INQUIRY FORM ====== */
.vd-form {
  margin-top: 40px;
  display: grid;
  gap: 28px;
}
.vd-form-row { display: grid; gap: 28px; }
.vd-form-row--2 { grid-template-columns: 1fr 1fr; }

.vd-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.vd-field-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.vd-field-label em {
  color: var(--gold-deep);
  font-style: normal;
  margin-left: 4px;
}
.vd-field-meta {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: lowercase;
  color: var(--brown);
  opacity: 0.45;
  margin-left: 8px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.vd-field input,
.vd-field select,
.vd-field textarea {
  font-family: var(--sans) !important;
  font-style: normal !important;
  font-weight: 400;
  font-size: 16px;
  color: var(--espresso);
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 16px;
  width: 100%;
  height: 52px;
  line-height: 50px;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
}
.vd-field textarea {
  resize: vertical;
  height: auto;
  min-height: 140px;
  padding: 14px 16px;
  line-height: 1.5;
}
.vd-field select {
  cursor: pointer;
  padding-right: 40px;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold-deep) 50%),
                    linear-gradient(135deg, var(--gold-deep) 50%, transparent 50%);
  background-position: calc(100% - 20px) center, calc(100% - 14px) center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.vd-field select option {
  font-family: var(--sans);
  color: var(--espresso);
  background: var(--bg-white);
}
.vd-field input:hover,
.vd-field select:hover,
.vd-field textarea:hover {
  border-color: var(--gold);
}
.vd-field input:focus,
.vd-field select:focus,
.vd-field textarea:focus {
  outline: none;
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(168, 134, 93, 0.15);
}
.vd-field input::placeholder,
.vd-field textarea::placeholder {
  color: rgba(92, 63, 36, 0.4);
  font-style: italic;
  font-size: 13px;
  font-weight: 400;
  opacity: 1;
}
.vd-field input::-webkit-input-placeholder,
.vd-field textarea::-webkit-input-placeholder {
  color: rgba(92, 63, 36, 0.4);
  font-style: italic;
  font-size: 13px;
}
.vd-field input::-moz-placeholder,
.vd-field textarea::-moz-placeholder {
  color: rgba(92, 63, 36, 0.4);
  font-style: italic;
  font-size: 13px;
  opacity: 1;
}
.vd-field select:invalid { color: rgba(92, 63, 36, 0.7); }
.vd-field select option { color: var(--espresso); }
.vd-field.has-error input,
.vd-field.has-error select,
.vd-field.has-error textarea {
  border-color: #c44;
}

.vd-honeypot {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.vd-form-submit {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 16px;
}
.vd-form-submit .cta {
  cursor: pointer;
  font-family: var(--sans);
  background: var(--gold);
  border-color: var(--gold);
  color: var(--espresso);
  padding: 19px 40px;
  font-size: 13px;
}
.vd-form-submit .cta:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--bg-white);
  transform: translateY(-2px);
}
.vd-form-fineprint {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--brown);
  opacity: 0.75;
  margin: 0;
}

.vd-form-message {
  padding: 28px 32px;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: var(--bg-white);
}
.vd-form-message .script {
  font-family: var(--script);
  font-size: 38px;
  color: var(--gold-deep);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.vd-form-message p {
  color: var(--brown);
  font-size: 16px;
  margin: 0;
}
.vd-form-message a { color: var(--gold-deep); border-bottom: 1px solid var(--gold-deep); }
.vd-form-message--success { border-color: var(--gold-deep); background: var(--bg-soft); }
.vd-form-message--error { border-left: 3px solid #c44; }

@media (max-width: 700px) {
  .vd-form-row--2 { grid-template-columns: 1fr; }
}

/* ====== FOOTER ====== */
.vd-footer {
  padding: 100px 56px 60px;
  background: var(--bg);
  color: var(--brown);
  border-top: 1px solid var(--line);
}
.vd-footer-script {
  font-family: var(--script);
  font-size: 56px;
  color: var(--gold-deep);
  margin-bottom: 50px;
  line-height: 1;
}
.vd-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1.1fr 1.4fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.vd-footer-brand .vd-logo { height: 72px; width: auto; margin-bottom: 18px; }
.vd-footer-brand p { font-size: 14px; max-width: 340px; line-height: 1.7; }
.vd-footer-label {
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.vd-footer-grid p, .vd-footer-grid a { color: var(--brown); font-size: 14px; line-height: 1.8; }
.vd-footer-col a { display: block; transition: color 200ms ease, padding-left 200ms ease; }
.vd-footer-col a:hover { color: var(--gold-deep); padding-left: 4px; }
.vd-footer-meta {
  display: block;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--brown);
  opacity: 0.85;
}
.vd-footer-area {
  padding: 36px 0 32px;
  border-bottom: 1px solid var(--line);
}
.vd-footer-area p {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  font-size: 13px;
  line-height: 1.85;
  color: var(--brown);
  opacity: 0.85;
}
.vd-footer-area a {
  color: var(--brown);
  border-bottom: 1px dotted rgba(168, 134, 93, 0.5);
  transition: color 200ms ease, border-color 200ms ease;
}
.vd-footer-area a:hover {
  color: var(--gold-deep);
  border-bottom-color: var(--gold-deep);
}
.vd-footer-area strong {
  color: var(--espresso);
  font-weight: 500;
}
.vd-footer-copy {
  margin-top: 32px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1100px) {
  .vd-header { padding: 16px 24px; }
  .vd-nav { display: none; }
  .vd-burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    background: transparent;
    border: 1.5px solid var(--gold-deep);
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
  }
  .vd-burger::before {
    content: "";
    width: 18px; height: 2px;
    background: var(--espresso);
    box-shadow: 0 -6px 0 var(--espresso), 0 6px 0 var(--espresso);
    border-radius: 1px;
  }
  .vd-mobile-backdrop {
    position: fixed;
    inset: 0;
    z-index: 89;
    background: rgba(58, 38, 18, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 280ms ease;
  }
  body.vd-menu-open .vd-mobile-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
  .vd-mobile-nav {
    display: flex;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 66vw;
    max-width: 340px;
    z-index: 90;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 80px 28px 28px;
    box-shadow: 4px 0 24px rgba(58, 38, 18, 0.10);
    transform: translateX(-100%);
    pointer-events: none;
    transition: transform 320ms cubic-bezier(0.32, 0.72, 0.24, 1);
    overflow-y: auto;
  }
  body.vd-menu-open .vd-mobile-nav {
    transform: translateX(0);
    pointer-events: auto;
  }
  .vd-mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
  }
  .vd-mobile-nav a {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--espresso);
    padding: 12px 4px;
    line-height: 1.2;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 200ms ease, border-color 200ms ease;
  }
  .vd-mobile-nav a:hover {
    color: var(--gold-deep);
  }
  .vd-mobile-nav .vd-mobile-nav-cta {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 22px !important;
    margin-top: 20px;
    background: var(--bg-white) !important;
    color: var(--espresso) !important;
    border: 1.5px solid var(--gold-deep) !important;
    border-radius: 999px !important;
    font-family: var(--sans) !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    letter-spacing: 0.28em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    line-height: 1 !important;
    box-shadow: 0 2px 10px rgba(168, 134, 93, 0.15);
  }
  .vd-mobile-nav-cta:active {
    background: var(--gold);
  }
  .vd-mobile-nav-cta .cta-arrow {
    font-size: 16px;
    line-height: 1;
  }
  .vd-mobile-close {
    position: absolute;
    top: 16px; right: 16px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--brown);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .vd-hero { grid-template-columns: 1fr; min-height: auto; }
  .vd-hero-photo { height: auto; max-height: none; }
  .vd-hero-photo img { height: auto; object-fit: unset; object-position: unset; }
  .vd-hero-text { padding: 56px 24px 64px; }
  .vd-hero-mark {
    left: 0;
    right: 0;
    bottom: 24px;
    text-align: center;
  }
  .vd-pagehero {
    grid-template-columns: 1fr;
    padding: 110px 24px 48px;
    gap: 32px;
    min-height: auto;
  }
  .vd-pagehero-photo { height: 420px; }
  .vd-duo, .vd-ctaband { grid-template-columns: 1fr; padding: 70px 24px; gap: 36px; }
  .vd-comfort { padding: 70px 24px; }
  .vd-comfort-inner { grid-template-columns: 1fr; gap: 40px; }
  .vd-process { padding: 70px 24px; }
  .vd-process-head { margin-bottom: 56px; }
  .vd-process-step { grid-template-columns: 1fr; gap: 28px; margin-bottom: 64px; }
  .vd-process-step.reverse .vd-process-step-img { order: 0; }
  .vd-process-step.reverse .vd-process-step-text { order: 1; }
  .vd-process-step-img { height: 360px; }
  .vd-process-step-num { font-size: 48px; }
  .vd-duo-img, .vd-ctaband-img { height: 380px; }
  .vd-ctaband-text { padding: 60px 28px 80px; }
  .vd-sessions-grid { grid-template-columns: 1fr; gap: 24px; }
  .vd-gallery-mosaic,
  .vd-gallery-mosaic--7 {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 0 24px;
  }
  .vd-gallery-mosaic .m1,
  .vd-gallery-mosaic .m4,
  .vd-gallery-mosaic--7 .m1,
  .vd-gallery-mosaic--7 .m6 {
    grid-row: auto;
    grid-column: auto;
  }
  .vd-gallery-mosaic figure { height: 380px; }
  .vd-pricing { padding: 80px 24px; }
  .vd-price-card { padding: 48px 28px; }
  .vd-contact-grid { grid-template-columns: 1fr; }
  .vd-contact-photo { min-height: 440px; }
  .vd-contact-info { padding: 80px 28px; }
  .vd-content { padding: 80px 28px; }
  .vd-footer { padding: 56px 24px 36px; }
  .vd-footer-script { font-size: 38px; margin-bottom: 32px; }
  .vd-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; padding-bottom: 32px; }
  .vd-footer-brand { grid-column: span 2; }
  .vd-footer-brand .vd-logo { height: 56px; margin-bottom: 12px; }
  .vd-footer-brand p { font-size: 13px; max-width: none; }
  .vd-footer-label { margin-bottom: 10px; font-size: 10px; }
  .vd-footer-grid p, .vd-footer-grid a { font-size: 13px; line-height: 1.7; }
  .vd-footer-area { padding: 24px 0 20px; }
  .vd-footer-area p { font-size: 12px; line-height: 1.7; }
  .vd-footer-copy { margin-top: 22px; }
}

/* Mobile: keep faces in frame for vertical photos */
@media (max-width: 768px) {
  .vd-pagehero-photo img,
  .vd-duo-img img,
  .vd-session-img img,
  .vd-process-step-img img,
  .vd-ctaband-img img,
  .vd-gallery-mosaic figure img,
  .vd-contact-photo img,
  .vd-comfort-photo img {
    object-position: center 15%;
  }
}

@media (max-width: 600px) {
  .vd-hero-text h1 { font-size: 48px; line-height: 1.05; }
  .vd-hero-text p { font-size: 16px; }
  .vd-signature, .vd-testimonial { padding: 70px 22px; }
  .vd-signature .script, .vd-footer-script { font-size: 42px; }
  .vd-signature h2, .vd-pagehero-text h1, .vd-duo-text h2, .vd-comfort-text h2,
  .vd-process-head h2, .vd-ctaband-text h2, .vd-gallery-intro h2 {
    font-size: clamp(34px, 9vw, 44px);
    line-height: 1.1;
  }
  .vd-testimonial blockquote { font-size: 22px; line-height: 1.45; }
  .vd-footer { padding: 48px 20px 28px; }
  .vd-footer-script { font-size: 34px; margin-bottom: 24px; }
  .vd-footer-grid { grid-template-columns: 1fr; gap: 24px; padding-bottom: 24px; }
  .vd-footer-brand { grid-column: auto; }
  .vd-footer-brand .vd-logo { height: 48px; }
  .vd-footer-area { padding: 20px 0 16px; }
  .vd-footer-area p { font-size: 11px; line-height: 1.6; }
  .vd-footer-copy { flex-direction: column; gap: 8px; margin-top: 18px; font-size: 10px; }

  /* Tap-friendly CTAs: full-width, easier to tap with thumb */
  .vd .cta {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 18px 24px;
    font-size: 11px;
    letter-spacing: 0.24em;
  }
  .vd .cta + .vd .cta,
  .vd-hero-text .cta + .cta,
  .vd-ctaband-text .cta + .cta,
  .vd-duo-text .cta + .cta,
  .vd-pagehero-text .cta + .cta {
    margin-top: 12px;
  }

  /* Tighter section spacing */
  .vd-duo, .vd-ctaband, .vd-comfort, .vd-process { padding: 60px 20px; }
  .vd-process-step { margin-bottom: 56px; }
  .vd-process-step-img, .vd-duo-img, .vd-ctaband-img { height: 560px; }
  .vd-pagehero-photo { height: 560px; }
  .vd-gallery-mosaic figure { height: 480px; }
  .vd-contact-photo { min-height: 560px; }
  .vd-pagehero { padding: 100px 22px 40px; }
  .vd-hero-text { padding: 48px 22px 56px; }

  /* Hero photo: full natural height, no cropping on mobile */
  .vd-hero-photo { height: auto; max-height: none; }
}

@media (max-width: 380px) {
  .vd-hero-text h1 { font-size: 42px; }
  .vd-process-step-img, .vd-duo-img, .vd-ctaband-img { height: 500px; }
  .vd-pagehero-photo { height: 500px; }
}

/* Hide Astra's "scroll to top" button — we have our own sticky mobile CTA */
#ast-scroll-top,
.ast-scroll-to-top-icon,
.astra-scroll-to-top-button {
  display: none !important;
}

/* ====== STICKY MOBILE CTA ====== */
.vd-sticky-cta { display: none; }

@media (max-width: 768px) {
  .vd-sticky-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(248, 244, 236, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -6px 24px rgba(58, 38, 18, 0.06);
  }
  .vd-sticky-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 22px;
    background: var(--bg-white);
    color: var(--espresso);
    border: 1px solid var(--gold-deep);
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 200ms ease, color 200ms ease, transform 200ms ease;
  }
  .vd-sticky-cta-btn:active {
    transform: scale(0.98);
    background: var(--gold);
  }
  .vd-sticky-cta-btn .cta-arrow {
    font-size: 16px;
    line-height: 1;
  }
  /* Reserve space so footer content isn't hidden under the bar */
  body.vd-body { padding-bottom: 76px; }
}
@media (max-width: 380px) {
  body.vd-body { padding-bottom: 72px; }
  .vd-sticky-cta-btn {
    padding: 14px 18px;
    font-size: 11px;
    letter-spacing: 0.22em;
  }
}
