:root {
  --red:       #c0392b;
  --red-dark:  #a93226;
  --blue:      #1a2f6e;
  --blue-dark: #102050;
  --white:     #ffffff;
  --off-white: #f8f7f4;
  --ink:       #0e1117;
  --ink-soft:  #3d4452;
  --ink-mute:  #8a909e;
  --border:    rgba(14,17,23,.09);
  --nav-h:     64px;
  --shadow-sm: 0 2px 12px rgba(14,17,23,.07);
  --shadow-md: 0 8px 32px rgba(14,17,23,.12);
  --shadow-lg: 0 24px 60px rgba(14,17,23,.16);
  --radius:    16px;
  --radius-sm: 8px;
  --max-w:     1320px;
  --ease:      cubic-bezier(.25,.46,.45,.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── UTIL ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

/* ── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: .87rem;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .18s, color .18s, border-color .18s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(192,57,43,.3);
}
.btn-red:hover { background: var(--red-dark); box-shadow: 0 8px 28px rgba(192,57,43,.42); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(14,17,23,.2);
}
.btn-outline:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

.btn-full { width: 100%; }


/* ════════════════════════════════════════════
   NAV
════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 500;
  /* default: light */
  --nav-bg:        rgba(255,255,255,.93);
  --nav-border:    rgba(14,17,23,.09);
  --nav-text:      var(--ink-soft);
  --nav-text-hov:  var(--ink);
  --nav-pill-hov:  rgba(14,17,23,.06);
}

/* when a mega menu is open → go black */
.nav.mega-open {
  --nav-bg:       #111;
  --nav-border:   transparent;
  --nav-text:     rgba(255,255,255,.75);
  --nav-text-hov: #fff;
  --nav-pill-hov: rgba(255,255,255,.08);
}

.nav__bar {
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background .28s var(--ease), border-color .28s var(--ease), box-shadow .25s;
}
.nav.scrolled .nav__bar { box-shadow: var(--shadow-sm); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 16px;
}

/* logo */
.nav__logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav__logo img { height: 30px; width: auto; }
/* .nav__logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav__logo-name {
  font-family: 'Playfair Display', serif;
  font-size: .87rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--nav-text-hov);
  transition: color .28s;
} */
.nav__logo-tag {
  font-size: 17.0px;
  color: var(--red);
  letter-spacing: .1em;
  font-weight:900;
  font-family:"Great Vibes",cursive;
}

/* sticky address bar */
.nav__address-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  max-width: 440px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.nav__address-bar.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

.nav__address-wrap { position: relative; flex: 1; }
.nav__address-icon {
  position: absolute; left: 11px; top: 50%; transform: translateY(-50%);
  width: 14px; height: 14px; color: var(--ink-mute); pointer-events: none;
}
.nav__address-input {
  width: 100%; height: 38px;
  padding: 0 12px 0 32px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--off-white);
  font-family: 'DM Sans', sans-serif;
  font-size: .84rem; color: var(--ink);
  outline: none;
  transition: border-color .18s;
}
.nav__address-input:focus { border-color: var(--blue); background: #fff; }
.nav__address-cta { padding: 8px 16px; font-size: .81rem; }

/* nav links row */
.nav__links { display: flex; align-items: center; gap: 2px; flex-shrink: 0; }
.nav__mobile-links { display: none; }

.nav__pill {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .87rem; font-weight: 500;
  color: var(--nav-text);
  background: none;
  transition: background .16s, color .16s;
  cursor: pointer;
  white-space: nowrap;
}
.nav__pill:hover { background: var(--nav-pill-hov); color: var(--nav-text-hov); }

/* active (open) trigger */
.nav__pill.active {
  background: var(--nav-pill-hov);
  color: var(--white);
}

/* login button */
.nav__login {
  border: 1.5px solid rgba(14,17,23,.18);
  margin-left: 6px;
  transition: background .16s, color .16s, border-color .16s;
}
.nav.mega-open .nav__login { border-color: rgba(255,255,255,.25); }
.nav__login:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.nav.mega-open .nav__login:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.5); color: var(--white); }

/* hamburger */
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; padding: 6px;
}
.nav__burger span {
  display: block; height: 2px;
  background: var(--nav-text-hov); border-radius: 2px;
  transition: transform .22s, opacity .22s, background .28s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ════════════════════════════════════════════
   MEGA MENU
════════════════════════════════════════════ */
.mega {
  background: #111;
  border-top: 1px solid rgba(255,255,255,.06);
  /* hidden by default */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: max-height .35s var(--ease), opacity .25s var(--ease);
}
.mega.open {
  max-height: 480px;
  opacity: 1;
  pointer-events: auto;
}

.mega__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 36px 0 40px;
}

/* column dividers */
.mega__inner > div + div {
  border-left: 1px solid rgba(255,255,255,.07);
  padding-left: 28px;
  margin-left: -1px;
}
.mega__inner > div { padding-right: 28px; }

.mega__heading {
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: 14px;
}

.mega__link {
  display: block;
  margin-bottom: 2px;
  padding: 7px 8px;
  border-radius: var(--radius-sm);
  font-size: .87rem;
  color: rgba(255,255,255,.7);
  transition: background .15s, color .15s;
}
.mega__link:hover { background: rgba(255,255,255,.07); color: var(--white); }

/* featured links have a title + sub line */
.mega__link--featured {
  padding: 10px 10px 10px 8px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}
.mega__link--featured:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); }

.mega__link-title { display: block; font-size: .89rem; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.mega__link-sub   { display: block; font-size: .78rem; color: rgba(255,255,255,.45); }

/* page overlay behind open mega */
.mega-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 499;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.mega-overlay.visible { opacity: 1; pointer-events: auto; }

/* autocomplete shared */
.address-dropdown {
  position: absolute; top: calc(100% + 5px); left: 0; right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  z-index: 600;
  max-height: 220px; overflow-y: auto;
  display: none;
}
.address-dropdown.open { display: block; }
.address-dropdown li {
  padding: 10px 14px; font-size: .84rem;
  cursor: pointer; color: var(--ink);
  border-bottom: 1px solid var(--border);
  transition: background .12s;
}
.address-dropdown li:last-child { border-bottom: none; }
.address-dropdown li:hover,
.address-dropdown li.focused { background: var(--off-white); }


/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  position: relative;
  /* shorter — just 62vh so reviews peek below the fold */
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blue-dark);
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  /* real photo, no gradient tint */
  opacity: .55;
  z-index: 0;
}
/* very subtle dark vignette at bottom so text stays legible */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(10,20,50,.45) 0%,
    rgba(10,20,50,.3) 50%,
    rgba(10,20,50,.55) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding: 72px 0 60px;
}
.hero__content { max-width: 600px; }

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 14px;
}
.hero__title em { font-style: italic; color: #f5a8a0; }

.hero__sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,.75);
  margin-bottom: 28px;
}

/* hero address search */
.hero__search { display: flex; align-items: center; gap: 10px; max-width: 540px; }
.hero__search-wrap { position: relative; flex: 1; }
.hero__search-icon {
  position: absolute; left: 15px; top: 50%; transform: translateY(-50%);
  width: 17px; height: 17px; color: var(--ink-mute); pointer-events: none;
}
.hero__search-input {
  width: 100%; height: 52px;
  padding: 0 16px 0 42px;
  border-radius: 999px; border: none;
  background: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: .93rem; color: var(--ink);
  outline: none;
  box-shadow: 0 4px 24px rgba(0,0,0,.18);
  transition: box-shadow .18s;
}
.hero__search-input:focus { box-shadow: 0 4px 32px rgba(0,0,0,.3), 0 0 0 3px rgba(192,57,43,.3); }
.hero__search-btn { height: 52px; padding: 0 26px; font-size: .9rem; flex-shrink: 0; }

.hero__note {
  margin-top: 14px;
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .03em;
}


/* ════════════════════════════════════════════
   SECTIONS
════════════════════════════════════════════ */
.section { padding: 80px 0; }
.section--alt { background: var(--white); }

.section__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}
.section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 10px;
}
.section__sub { font-size: .96rem; color: var(--ink-soft); }


/* ── TESTIMONIALS ─── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tcard {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.tcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.tcard__avatar {
  width: 68px; height: 68px;
  border-radius: 999px;
  overflow: hidden;
  margin: 0 auto 14px;
  border: 3px solid var(--white);
  box-shadow: 0 2px 10px rgba(14,17,23,.13);
  background: #d8dde8;
}
.tcard__avatar img { width: 100%; height: 100%; object-fit: cover; }

.tcard__stars  { color: #f5a623; font-size: .88rem; letter-spacing: .05em; margin-bottom: 12px; }
.tcard__quote  { font-size: .87rem; line-height: 1.7; color: var(--ink-soft); margin-bottom: 16px; font-style: italic; }
.tcard__name   { font-size: .83rem; font-weight: 600; color: var(--ink); }
.tcard__loc    { font-size: .77rem; color: var(--ink-mute); margin-top: 3px; }


/* ── STEPS ─── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(100%/6);
  right: calc(100%/6);
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--red) 0, var(--red) 6px, transparent 6px, transparent 14px);
  opacity: .3;
  z-index: 0;
}
.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  position: relative; z-index: 1;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step__num {
  width: 38px; height: 38px; border-radius: 999px;
  background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: .93rem; font-weight: 700;
  margin-bottom: 16px;
}
.step__title { font-size: .97rem; font-weight: 600; margin-bottom: 7px; }
.step__body  { font-size: .86rem; color: var(--ink-soft); line-height: 1.65; }


/* ── FORM ─── */
.form-wrap { max-width: 480px; margin: 0 auto; }
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.form-dots { display: flex; gap: 5px; margin-bottom: 16px; }
.dot { width: 7px; height: 7px; border-radius: 999px; background: #ddd; transition: background .2s, transform .2s; }
.dot.dot--active { background: var(--red); transform: scale(1.3); }

.form-step { display: none; }
.form-step.active { display: block; }
.form-step-label { font-size: .77rem; color: var(--ink-mute); font-weight: 500; letter-spacing: .04em; margin-bottom: 14px; display: block; }

.form-card label {
  display: block; font-size: .78rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 5px;
}
.form-card input,
.form-card select {
  width: 100%; padding: 11px 12px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--off-white);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem; color: var(--ink);
  margin-bottom: 12px; outline: none;
  transition: border-color .18s, background .18s;
}
.form-card input:focus,
.form-card select:focus { border-color: var(--blue); background: var(--white); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

.step-btns { display: flex; gap: 10px; margin-top: 4px; }
.step-btns .btn { flex: 1; }

.form-alert { display: none; padding: 9px 12px; border-radius: var(--radius-sm); font-size: .81rem; font-weight: 600; margin-bottom: 12px; }
.form-alert.success { display: block; background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.form-alert.error   { display: block; background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.form-legal { font-size: .71rem; color: var(--ink-mute); text-align: center; margin-top: 12px; }


/* ── FAQ ─── */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  padding: 17px 0; font-size: .95rem; font-weight: 600; cursor: pointer; user-select: none; gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--red); flex-shrink: 0; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding-bottom: 17px; font-size: .89rem; color: var(--ink-soft); line-height: 1.75; }


/* ── FOOTER ─── */
.footer { background: var(--blue-dark); color: rgba(255,255,255,.45); padding: 52px 0 26px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer__logo { filter: brightness(0) invert(1); height: 28px; width: auto; margin-bottom: 12px; }
.footer__desc { font-size: .82rem; line-height: 1.65; max-width: 270px; }
.footer__col-title { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 12px; }
.footer__links { display: flex; flex-direction: column; gap: 9px; }
.footer__links a { font-size: .83rem; color: rgba(255,255,255,.38); transition: color .16s; }
.footer__links a:hover { color: var(--white); }

.footer__trust {
  display: flex; align-items: center; gap: 24px;
  padding: 22px 0; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 22px;
}
.footer__trust-item { display: flex; align-items: center; gap: 12px; }
.footer__trust-img { height: 46px; width: auto; object-fit: contain; }
.footer__trust-img--google { height: 34px; }
.footer__trust-divider { width: 1px; height: 38px; background: rgba(255,255,255,.1); }
.footer__trust-label { font-size: .84rem; font-weight: 600; color: var(--white); }
.footer__trust-stars { color: #f5a623; font-size: .92rem; letter-spacing: .06em; line-height: 1; margin-bottom: 2px; }
.footer__trust-sub { font-size: .74rem; color: rgba(255,255,255,.42); }

.footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; font-size: .77rem;
}
.footer__legal { display: flex; gap: 18px; }
.footer__legal a { color: rgba(255,255,255,.3); transition: color .16s; }
.footer__legal a:hover { color: rgba(255,255,255,.65); }


/* ── SCROLL-REVEAL ─── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }


/* ── RESPONSIVE ─── */
@media (max-width: 960px) {
  .mega__inner { grid-template-columns: 1fr 1fr; padding: 28px 0 32px; }
  .mega__inner > div + div { border-left: none; padding-left: 0; margin-left: 0; border-top: 1px solid rgba(255,255,255,.07); padding-top: 20px; margin-top: 4px; }
  .nav__address-bar { display: none !important; }
}

@media (max-width: 768px) {
  .nav__links {
    display: none; flex-direction: column; align-items: stretch;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: rgba(255,255,255,.97); backdrop-filter: blur(18px);
    padding: 10px 20px 16px; border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md); z-index: 498;
  }
  .nav__links.open { display: flex; }
  .nav__pill { padding: 11px 8px; font-size: .93rem; color: var(--ink-soft); }
  .nav__login { margin-left: 0; margin-top: 4px; text-align: center; justify-content: center; }
  .nav__burger { display: flex; }
  .nav { position: relative; }

  .mega, .mega.open, .mega-overlay { display:none !important; position: static; }
  .js-mega-trigger { display: none; }
  .nav__mobile-links { display: flex; flex-direction: column; gap: 4px; }

  .testimonials  { grid-template-columns: 1fr; }
  .steps         { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .footer__grid  { grid-template-columns: 1fr 1fr; }
  .footer__trust { gap: 16px; }
}

@media (max-width: 600px) {
  .section     { padding: 56px 0; }
  .hero__inner { padding: 56px 0 48px; }
  .hero        { min-height: 55vh; }
  .hero__search { flex-direction: column; }
  .hero__search-btn  { width: fit-content; height: 48px; }
  .hero__search-input { width: fit-content; height: 48px; }
  .footer__grid  { grid-template-columns: 1fr; }
  .footer__trust { flex-direction: column; align-items: flex-start; }
  .footer__trust-divider { display: none; }
}

/* ── ---------------- ─── */
/* ── ---------------- ─── */
/* ──    OTHER PAGES   ─── */
/* ── ---------------- ─── */
/* ── ---------------- ─── */

.contact-card { display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:start }
.buyer-contact { display:grid;grid-template-columns:1.5fr 1fr;gap:64px;align-items:center }

@media (max-width:768px) {
    .contact-card { grid-template-columns:1fr; }
    .buyer-contact { grid-template-columns:1fr; }
}

