/* ============================================================
   Nova Studios NJ — Consolidated Stylesheet
   ============================================================ */

/* === CSS VARIABLES === */
:root {
  --navy: #0d1b2a;
  --navy-mid: #162338;
  --navy-light: #1e3050;
  --gold: #c9a84c;
  --gold-light: #e8c96e;
  --gold-dim: rgba(201,168,76,0.15);
  --cream: #f8f5ef;
  --white: #ffffff;
  --gray: #6b7280;
  --light-gray: #f1f0ed;
  --text: #1c2b3a;
}

/* === SHARED === */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

/* ── NAV (fixed — homepage + location pages) ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 6%;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  backdrop-filter: blur(10px);
  animation: fadeDown 0.6s ease both;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.logo-mark img { width: 44px; height: 44px; object-fit: cover; display: block; border-radius: 50%; }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700; color: var(--navy);
}
.logo-text span { color: var(--gold); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 0.87rem; font-weight: 500; letter-spacing: 0.02em;
  color: var(--navy); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--navy); color: var(--white);
  padding: 10px 22px; border-radius: 4px;
  font-size: 0.87rem; font-weight: 600; letter-spacing: 0.02em;
  text-decoration: none; transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--gold); color: var(--navy); transform: translateY(-1px); }

/* ── NAV (static — service pages, get-started, thank-you) ── */
.simple-nav nav {
  position: static;
  backdrop-filter: none;
  animation: none;
}

/* ── HAMBURGER + MOBILE MENU ── */
#hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px; padding: 0;
}
#hamburger span {
  display: block; width: 22px; height: 2px; background: var(--navy);
  transition: transform 0.25s, opacity 0.2s;
}
@media(max-width:900px){ #hamburger { display: flex; } }
#mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 24px 6%; z-index: 199; box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
body.has-banner #mobile-menu { top: 108px; }
#mobile-menu.open { display: block; }
#mobile-menu a {
  display: block; padding: 14px 0; font-size: 1rem; font-weight: 500;
  color: var(--navy); text-decoration: none; border-bottom: 1px solid rgba(0,0,0,0.05);
}
#mobile-menu a:last-child { border-bottom: none; }
#mobile-menu a:hover { color: var(--gold); }
#mobile-menu .mobile-cta {
  display: block; margin-top: 16px; text-align: center;
  background: var(--gold); color: var(--navy); padding: 14px;
  border-radius: 4px; font-weight: 600; border-bottom: none;
}

/* ── SECTION COMMON ── */
section { padding: 100px 6%; }
.section-tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 18px;
}
.section-sub { font-size: 1rem; line-height: 1.75; color: var(--gray); max-width: 560px; }

/* ── BUTTONS ── */
.btn-gold {
  background: var(--gold); color: var(--navy);
  padding: 14px 30px; border-radius: 4px;
  font-size: 0.92rem; font-weight: 700;
  text-decoration: none; transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,168,76,0.3); }
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.25); color: var(--white);
  padding: 14px 30px; border-radius: 4px;
  font-size: 0.92rem; font-weight: 500;
  text-decoration: none; transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }

/* ── SERVICES (shared across homepage + location pages) ── */
.services { background: var(--cream); }
.services-header { margin-bottom: 64px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}
@media(max-width:700px){ .services-grid { grid-template-columns: 1fr; } }
.service-card {
  background: var(--white); padding: 48px 40px;
  position: relative; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(0,0,0,0.1); }
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem; font-weight: 700;
  color: var(--navy); opacity: 0.06;
  position: absolute; top: 20px; right: 28px;
  line-height: 1;
}
.service-icon-wrap {
  width: 52px; height: 52px;
  background: var(--navy); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 26px;
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 600; color: var(--navy); margin-bottom: 14px;
}
.service-card p { font-size: 0.92rem; line-height: 1.75; color: var(--gray); margin-bottom: 24px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 0; }
.service-link { display: inline-block; margin-top: 18px; font-size: 0.85rem; font-weight: 600; color: var(--gold); text-decoration: none; transition: color 0.2s; }
.service-link:hover { color: var(--navy); }
.tag {
  font-size: 0.75rem; font-weight: 500;
  background: var(--light-gray); color: var(--text);
  padding: 5px 12px; border-radius: 20px;
}

/* ── FAQ (shared across homepage + location pages) ── */
.faq-section { background: var(--cream); }
.faq-list { max-width: 720px; margin: 56px auto 0; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.07); }
.faq-question { cursor: pointer; display: flex; justify-content: space-between; align-items: center; width: 100%; background: none; border: none; text-align: left; padding: 22px 0; font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: var(--navy); }
.faq-question::after { content: '+'; font-size: 1.2rem; color: var(--gold); transition: transform 0.25s; flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p { font-size: 0.88rem; line-height: 1.75; color: var(--gray); padding: 0 0 22px; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ── CTA / CONTACT FORM (shared across homepage + location pages) ── */
.cta-band {
  background: var(--navy); text-align: center;
  padding: 110px 6%; position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.09), transparent);
}
.cta-band .section-title { color: var(--white); position: relative; max-width: 640px; margin: 0 auto 16px; }
.cta-band p { color: rgba(255,255,255,0.55); font-size: 1.05rem; margin-bottom: 40px; position: relative; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.contact-form {
  max-width: 560px; margin: 0 auto; position: relative; text-align: left;
}
.contact-form .form-row { display: flex; gap: 14px; margin-bottom: 14px; }
@media(max-width:600px){ .contact-form .form-row { flex-direction: column; } }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: 14px 16px; border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px; background: rgba(255,255,255,0.07); color: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 0.92rem;
  transition: border-color 0.2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.35); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-form select { appearance: none; }
.contact-form select option { background: var(--navy); color: var(--white); }
.contact-form .form-field { margin-bottom: 14px; }
.contact-form button[type="submit"] {
  width: 100%; padding: 16px; border: none; border-radius: 4px;
  background: var(--gold); color: var(--navy);
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
  margin-top: 8px;
}
.contact-form button[type="submit"]:hover { background: var(--gold-light); transform: translateY(-1px); }
.contact-form button[type="submit"]:disabled { opacity: 0.6; cursor: not-allowed; }
.trust-line {
  text-align: center; margin-top: 24px; position: relative;
  font-size: 0.85rem; color: rgba(255,255,255,0.45);
}

/* ── FOOTER (full — homepage + location pages) ── */
footer { background: #060d16; padding: 70px 6% 32px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
@media(max-width:768px){ .footer-top { grid-template-columns: 1fr 1fr; } }
.footer-brand-desc { font-size: 0.87rem; line-height: 1.75; color: rgba(255,255,255,0.35); margin-top: 14px; max-width: 260px; }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.social-btn {
  width: 34px; height: 34px; border-radius: 6px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.social-btn:hover { border-color: var(--gold); background: rgba(201,168,76,0.1); }
.footer-col h5 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.87rem; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.82rem; color: rgba(255,255,255,0.25);
}

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── MOBILE CTA BAR ── */
#mobile-cta-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
#mobile-cta-bar .mcta-inner { display: flex; }
#mobile-cta-bar a {
  flex: 1; text-align: center; padding: 16px; font-size: 0.92rem; font-weight: 600;
  text-decoration: none; font-family: 'DM Sans', sans-serif;
}
.mcta-call { background: var(--navy); color: var(--white); }
.mcta-book { background: var(--gold); color: var(--navy); }
@media(max-width:768px){
  #mobile-cta-bar { display: block; }
}

/* ── ANIMATIONS (keyframes) ── */
@keyframes fadeDown { from { opacity:0; transform:translateY(-16px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }

/* ── SHARED RESPONSIVE ── */
@media(max-width:900px){
  .nav-links { display: none; }
}
@media(max-width:600px){
  nav { padding: 14px 4%; align-items: center; }
  .nav-cta { padding: 8px 14px; font-size: 0.78rem; white-space: nowrap; }
  .logo-mark { width: 38px; height: 38px; }
  .logo-mark img { width: 38px; height: 38px; }
  .logo-text { font-size: 1.15rem; }
  #hamburger { margin-left: 10px; }
  .btn-gold, .btn-ghost { padding: 13px 24px; font-size: 0.87rem; }
}


/* === HOMEPAGE === */

/* ── PROMO BANNER ── */
.promo-banner {
  background: var(--navy); color: var(--gold);
  text-align: center; padding: 10px 6%;
  font-size: 0.85rem; font-weight: 500;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  position: fixed; top: 0; left: 0; right: 0; z-index: 210;
  height: 44px;
}
.promo-banner a { color: var(--gold); font-weight: 600; text-decoration: underline; }
.promo-banner a:hover { color: var(--gold-light); }
.promo-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,0.5); font-size: 1.1rem;
  cursor: pointer; line-height: 1;
}
.promo-close:hover { color: var(--white); }
body.has-banner nav { top: 44px; }
body.has-banner .hero { padding-top: 174px; }
body.has-banner .about-hero { padding-top: 160px; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center;
  padding: 130px 6% 90px;
  position: relative; overflow: hidden;
}
.hero-bg-glow {
  position: absolute; top: -20%; right: -10%;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-bg-glow2 {
  position: absolute; bottom: -20%; left: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-inner {
  position: relative; width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 60px; flex-wrap: wrap;
}
.hero-content { max-width: 620px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold-light); padding: 7px 16px; border-radius: 30px;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 30px;
  animation: fadeUp 0.7s 0.2s ease both;
}
.dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.7rem);
  font-weight: 700; line-height: 1.13; color: var(--white);
  margin-bottom: 26px;
  animation: fadeUp 0.7s 0.35s ease both;
}
h1 em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: 1.05rem; line-height: 1.75;
  color: rgba(255,255,255,0.6); max-width: 500px;
  margin-bottom: 44px;
  animation: fadeUp 0.7s 0.5s ease both;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.65s ease both;
}

.hero-cards {
  display: flex; flex-direction: column; gap: 14px;
  animation: fadeUp 0.7s 0.8s ease both;
}
.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
  min-width: 260px;
  transition: border-color 0.25s, background 0.25s;
}
.hero-card:hover { border-color: rgba(201,168,76,0.4); background: rgba(201,168,76,0.06); }
.hc-icon { font-size: 1.5rem; }
.hc-label { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-bottom: 2px; letter-spacing: 0.04em; }
.hc-val { font-size: 0.95rem; font-weight: 600; color: var(--white); }

.hero-stats {
  display: flex; gap: 48px; flex-wrap: wrap;
  margin-top: 56px; padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: fadeUp 0.7s 0.9s ease both;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--gold);
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* ── MARQUEE STRIP ── */
.marquee-strip {
  background: var(--gold); padding: 14px 0; overflow: hidden;
  display: flex;
}
.marquee-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--navy);
  padding: 0 32px;
  display: flex; align-items: center; gap: 12px;
}
.marquee-item::after { content: '\25C6'; font-size: 0.5rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── CONTENT CREATION SPOTLIGHT ── */
.content-spotlight {
  background: var(--navy);
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  padding: 0;
}
@media(max-width:768px){ .content-spotlight { grid-template-columns: 1fr; } }
.cs-left {
  padding: 100px 6% 100px 6%;
  display: flex; flex-direction: column; justify-content: center;
}
.cs-left .section-title { color: var(--white); }
.cs-left .section-sub { color: rgba(255,255,255,0.55); margin-bottom: 40px; }
.cs-items { display: flex; flex-direction: column; gap: 0; }
.cs-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cs-item:last-child { border-bottom: none; }
.cs-dot {
  width: 10px; height: 10px; background: var(--gold);
  border-radius: 50%; margin-top: 6px; flex-shrink: 0;
}
.cs-item h4 { font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.cs-item p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.cs-right {
  background: var(--navy-light);
  padding: 80px 6%;
  display: flex; flex-direction: column; justify-content: center; gap: 20px;
  border-left: 1px solid rgba(255,255,255,0.06);
}
.cs-showcase {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 28px;
  transition: border-color 0.25s;
}
.cs-showcase:hover { border-color: rgba(201,168,76,0.35); }
.cs-showcase-label {
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px; font-weight: 600;
}
.cs-showcase h4 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--white); margin-bottom: 8px; }
.cs-showcase p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ── PROCESS ── */
.process { background: var(--cream); }
.process-inner { display: flex; gap: 80px; align-items: flex-start; flex-wrap: wrap; }
.process-left { flex: 1; min-width: 260px; position: sticky; top: 100px; }
.process-right { flex: 1.5; min-width: 300px; }
.process-step {
  display: flex; gap: 24px;
  padding: 32px 0; border-bottom: 1px solid rgba(0,0,0,0.07);
}
.process-step:last-child { border-bottom: none; }
.ps-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700; color: var(--gold);
  opacity: 0.3; min-width: 48px; line-height: 1;
}
.ps-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 8px;
}
.ps-body p { font-size: 0.9rem; line-height: 1.75; color: var(--gray); }
@media(max-width:768px){
  .process-inner { flex-direction: column; gap: 40px; }
  .process-left { position: static; min-width: unset; width: 100%; }
  .process-right { min-width: unset; width: 100%; }
}

/* ── WHY US ── */
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px; margin-top: 60px;
}
.why-card {
  border: 1.5px solid var(--light-gray); border-radius: 8px; padding: 36px 28px;
  transition: all 0.25s;
}
.why-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.07); }
.why-icon { font-size: 1.8rem; margin-bottom: 18px; }
.why-card h4 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--navy); margin-bottom: 10px; }
.why-card p { font-size: 0.87rem; line-height: 1.7; color: var(--gray); }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--navy); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-sub { color: rgba(255,255,255,0.5); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin-top: 56px;
}
.t-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px; padding: 36px;
  transition: border-color 0.25s, background 0.25s;
}
.t-card:hover { border-color: rgba(201,168,76,0.3); background: rgba(201,168,76,0.04); }
.t-stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 18px; font-size: 0.95rem; }
.t-card blockquote { font-size: 0.93rem; line-height: 1.8; color: rgba(255,255,255,0.75); font-style: italic; margin-bottom: 24px; }
.t-author { display: flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy-light); border: 1.5px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 700; color: var(--gold); font-size: 0.95rem;
}
.t-name { font-weight: 600; font-size: 0.9rem; color: var(--white); }
.t-biz { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* ── PRICING ── */
.pricing { background: var(--cream); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 60px;
}
.p-card {
  background: var(--white);
  border: 1.5px solid var(--light-gray);
  border-radius: 10px; padding: 44px 36px;
  position: relative;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.p-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 16px 44px rgba(0,0,0,0.09); }
.p-card.featured { border-color: var(--navy); background: var(--navy); }
.p-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  padding: 5px 18px; border-radius: 20px; text-transform: uppercase; white-space: nowrap;
}
.p-tier { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-bottom: 12px; }
.featured .p-tier { color: rgba(255,255,255,0.4); }
.p-price { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; color: var(--navy); line-height: 1; }
.featured .p-price { color: var(--white); }
.p-price-old { font-size: 1.1rem; font-weight: 400; color: var(--gray); text-decoration: line-through; margin-right: 8px; vertical-align: middle; }
.p-price sub { font-size: 1rem; font-weight: 400; color: var(--gray); }
.featured .p-price sub { color: rgba(255,255,255,0.4); }
.p-desc { font-size: 0.87rem; color: var(--gray); margin: 12px 0 28px; line-height: 1.65; }
.featured .p-desc { color: rgba(255,255,255,0.45); }
.p-divider { border: none; border-top: 1px solid var(--light-gray); margin-bottom: 24px; }
.featured .p-divider { border-color: rgba(255,255,255,0.1); }
.p-features { list-style: none; margin-bottom: 36px; }
.p-features li { font-size: 0.87rem; padding: 9px 0; border-bottom: 1px solid var(--light-gray); display: flex; gap: 10px; align-items: flex-start; color: var(--text); }
.featured .p-features li { border-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); }
.p-features li:last-child { border-bottom: none; }
.p-check { color: var(--gold); font-weight: 700; flex-shrink: 0; }
.btn-p {
  display: block; text-align: center; text-decoration: none;
  padding: 13px; border-radius: 5px; font-size: 0.9rem; font-weight: 600;
  transition: all 0.2s;
}
.btn-p-navy { border: 1.5px solid var(--navy); color: var(--navy); }
.btn-p-navy:hover { background: var(--navy); color: var(--white); }
.btn-p-gold { background: var(--gold); color: var(--navy); }
.btn-p-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.p-contract { font-size: 0.78rem; color: var(--gray); text-align: center; margin-top: 16px; margin-bottom: 0; }
.featured .p-contract { color: rgba(255,255,255,0.5); }
.pricing-notsure { text-align: center; margin-top: 40px; }
.pricing-notsure p { font-size: 1rem; color: var(--gray); margin-bottom: 14px; }
.pricing-notsure .btn-p { display: inline-block; }

/* ── PRICING FUNNEL STRIP ── */
.pricing-funnel-strip {
  background: var(--cream); border: 1.5px solid var(--light-gray);
  border-radius: 10px; padding: 28px 32px;
  margin: 40px 0 48px;
}
.pricing-prog-bg { height: 3px; background: var(--light-gray); border-radius: 2px; margin-bottom: 8px; }
.pricing-prog-fill { height: 3px; background: var(--gold); border-radius: 2px; transition: width 0.4s ease; }
.pricing-step-label { font-size: 0.72rem; color: var(--gray); letter-spacing: 0.04em; margin-bottom: 20px; }
.pricing-step { display: none; }
.pricing-step.active { display: block; }
.pricing-step-q { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 600; color: var(--navy); margin-bottom: 16px; }
.pricing-options { display: flex; flex-wrap: wrap; gap: 10px; }
.pricing-opt {
  background: var(--white); border: 1.5px solid var(--light-gray);
  border-radius: 8px; padding: 12px 18px; cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.pricing-opt:hover { border-color: var(--gold); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.pricing-opt.selected { border-color: var(--gold); background: rgba(201,168,76,0.06); }
.pricing-opt-title { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.pricing-opt-sub { font-size: 0.78rem; color: var(--gray); margin-top: 2px; line-height: 1.4; }
.pricing-funnel-done { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.pricing-funnel-done-label { font-size: 0.9rem; font-weight: 600; color: var(--navy); }
.pricing-funnel-done-label::before { content: '\2713 '; color: var(--gold); }
.pricing-restart-btn { background: none; border: none; font-size: 0.82rem; color: var(--gray); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.pricing-restart-btn:hover { color: var(--navy); }
.pcard-rec-badge {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--gold); color: var(--navy);
  padding: 4px 14px; border-radius: 20px; margin-bottom: 12px;
}
.pcard-lit { border-color: var(--gold) !important; box-shadow: 0 16px 44px rgba(201,168,76,0.2) !important; transform: translateY(-5px) !important; transition: all 0.35s ease; }
.pcard-dim { opacity: 0.42; transform: scale(0.97); transition: all 0.35s ease; }
.pcard-cta-primary { background: var(--navy) !important; color: var(--white) !important; border-color: var(--navy) !important; }
.pcard-cta-primary:hover { background: var(--gold) !important; color: var(--navy) !important; }

/* ── FUNNEL MODAL ── */
.funnel-overlay {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,0.65); align-items: center; justify-content: center;
  padding: 24px;
}
.funnel-modal {
  background: var(--white); border-radius: 12px; width: 100%; max-width: 520px;
  padding: 40px 36px; position: relative; max-height: 90vh; overflow-y: auto;
}
.funnel-close {
  position: absolute; top: 14px; right: 18px; background: none; border: none;
  font-size: 1.3rem; color: var(--gray); cursor: pointer; line-height: 1;
}
.funnel-close:hover { color: var(--navy); }
.funnel-progress { height: 4px; background: var(--light-gray); border-radius: 2px; margin-bottom: 8px; }
.funnel-progress-bar { height: 100%; background: var(--gold); border-radius: 2px; width: 16.6%; transition: width 0.3s; }
.funnel-step-counter { font-size: 0.78rem; color: var(--gray); margin-bottom: 24px; }
.funnel-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 600; color: var(--navy); margin-bottom: 20px; }
.funnel-options { display: flex; flex-direction: column; gap: 10px; }
.funnel-option {
  padding: 16px 20px; border: 1.5px solid var(--light-gray); border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--navy);
  cursor: pointer; transition: border-color 0.2s, background 0.2s;
  background: none; text-align: left; width: 100%;
}
.funnel-option:hover { border-color: var(--gold); background: var(--gold-dim); }
.funnel-form input {
  width: 100%; padding: 14px 16px; margin-bottom: 12px;
  border: 1.5px solid var(--light-gray); border-radius: 4px;
  font-family: 'DM Sans', sans-serif; font-size: 0.92rem; color: var(--navy);
}
.funnel-form input:focus { outline: none; border-color: var(--gold); }
.funnel-form input::placeholder { color: var(--gray); }
.funnel-submit {
  width: 100%; padding: 16px; border: none; border-radius: 4px;
  background: var(--gold); color: var(--navy);
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s;
}
.funnel-submit:hover { background: var(--gold-light); }
.funnel-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.funnel-success { text-align: center; padding: 20px 0; }
.funnel-success .check { font-size: 2.5rem; margin-bottom: 12px; }

/* ── EXIT POPUP ── */
.exit-popup {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,0.65); align-items: center; justify-content: center;
  padding: 24px;
}
.popup-modal {
  background: var(--white); border-radius: 12px; width: 100%; max-width: 440px;
  padding: 40px 36px; position: relative; text-align: center;
}
.popup-close {
  position: absolute; top: 14px; right: 18px; background: none; border: none;
  font-size: 1.3rem; color: var(--gray); cursor: pointer; line-height: 1;
}
.popup-close:hover { color: var(--navy); }
.popup-tag {
  display: inline-block; background: var(--gold-dim); color: var(--gold);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px; margin-bottom: 16px;
}
.popup-modal h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--navy); margin-bottom: 10px; }
.popup-modal p { font-size: 0.9rem; line-height: 1.65; color: var(--gray); margin-bottom: 24px; }
.popup-form input {
  width: 100%; padding: 14px 16px; margin-bottom: 12px;
  border: 1.5px solid var(--light-gray); border-radius: 4px;
  font-family: 'DM Sans', sans-serif; font-size: 0.92rem; color: var(--navy);
}
.popup-form input:focus { outline: none; border-color: var(--gold); }
.popup-form input::placeholder { color: var(--gray); }
.popup-form button[type="submit"] {
  width: 100%; padding: 16px; border: none; border-radius: 4px;
  background: var(--gold); color: var(--navy);
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s;
}
.popup-form button[type="submit"]:hover { background: var(--gold-light); }

/* ── HOMEPAGE RESPONSIVE ── */
@media(max-width:900px){
  .hero-cards { display: none; }
}
@media(max-width:600px){
  .promo-banner { font-size: 0.72rem; padding: 6px 36px 6px 12px; height: auto; min-height: 32px; line-height: 1.4; }
  body.has-banner nav { top: 32px; }
  body.has-banner .hero { padding-top: 150px; }
  body.has-banner #mobile-menu { top: 92px; }
  .hero { padding: 120px 5% 70px; min-height: auto; }
  h1 { font-size: clamp(1.8rem, 7.5vw, 2.4rem); margin-bottom: 20px; }
  .hero-badge { font-size: 0.68rem; padding: 5px 12px; margin-bottom: 22px; }
  .hero-sub { font-size: 0.93rem; margin-bottom: 32px; }
}


/* === SERVICE PAGES === */

/* ── PAGE HEADER (service pages — no padding-top for fixed nav) ── */
.page-header {
  background: var(--navy); padding: 80px 6% 60px; text-align: center; position: relative; overflow: hidden;
}
.page-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.09), transparent); }
.page-header h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 700;
  color: var(--white); position: relative; margin-bottom: 12px;
}
.page-header h1 em { color: var(--gold); font-style: italic; }
.page-header p { color: rgba(255,255,255,0.55); font-size: 1.05rem; position: relative; max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* ── CAPABILITIES (service pages) ── */
.capabilities { padding: 80px 6%; }
.capabilities h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 600; color: var(--navy); text-align: center; margin-bottom: 12px; }
.capabilities .sub { color: var(--gray); font-size: 0.95rem; text-align: center; margin-bottom: 48px; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cap-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
@media(max-width:700px){ .cap-grid { grid-template-columns: 1fr; } }
.cap-card {
  background: var(--cream); border: 1.5px solid var(--light-gray); border-radius: 10px;
  padding: 36px 32px; transition: transform 0.25s, box-shadow 0.25s;
}
.cap-card:hover { transform: translateY(-4px); box-shadow: 0 16px 44px rgba(0,0,0,0.08); }
.cap-icon { font-size: 1.6rem; margin-bottom: 16px; }
.cap-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.cap-card p { font-size: 0.88rem; line-height: 1.75; color: var(--gray); }

/* ── FORM SECTION (service pages — dark bg form) ── */
.form-section { padding: 80px 6%; background: var(--navy); position: relative; overflow: hidden; }
.form-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.09), transparent); }
.form-section h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 600; color: var(--white); text-align: center; margin-bottom: 8px; position: relative; }
.form-section .sub { color: rgba(255,255,255,0.55); font-size: 0.95rem; text-align: center; margin-bottom: 40px; position: relative; }
.app-form {
  max-width: 560px; margin: 0 auto; position: relative;
}
.app-form .form-row { display: flex; gap: 14px; margin-bottom: 14px; }
@media(max-width:600px){ .app-form .form-row { flex-direction: column; } }
.app-form input,
.app-form select,
.app-form textarea {
  width: 100%; padding: 14px 16px; border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px; background: rgba(255,255,255,0.07); color: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 0.92rem;
  transition: border-color 0.2s;
}
.app-form input::placeholder,
.app-form textarea::placeholder { color: rgba(255,255,255,0.35); }
.app-form input:focus,
.app-form select:focus,
.app-form textarea:focus { outline: none; border-color: var(--gold); }
.app-form select { appearance: none; }
.app-form select option { background: var(--navy); color: var(--white); }
.app-form .form-field { margin-bottom: 14px; }
.app-form textarea { min-height: 100px; resize: vertical; }
.app-form button[type="submit"] {
  width: 100%; padding: 16px; border: none; border-radius: 4px;
  background: var(--gold); color: var(--navy);
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
  margin-top: 8px;
}
.app-form button[type="submit"]:hover { background: var(--gold-light); transform: translateY(-1px); }
.app-form button[type="submit"]:disabled { opacity: 0.6; cursor: not-allowed; }

/* ── REVEAL DELAY VARIANTS (service pages) ── */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── SERVICE PAGE FOOTER (simple) ── */
.simple-footer { background: #060d16; padding: 40px 6%; text-align: center; }
.simple-footer p { font-size: 0.82rem; color: rgba(255,255,255,0.25); }
.simple-footer a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.simple-footer a:hover { color: var(--gold); }


/* === LOCATION PAGES (VARIANT A) === */
/* Used by: cherry-hill.html, moorestown.html, mount-laurel.html, marlton.html, haddonfield.html, voorhees.html, medford.html, delran.html */
/* These use a .page-header with grid background and full-width intro text */

.page-header-glow {
  position: absolute; top: -20%; right: -10%;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-header-inner {
  position: relative; max-width: 760px;
}

/* Override page-header for location variant A (fixed nav needs top padding) */
.location-variant-a .page-header {
  padding: 160px 6% 80px;
  text-align: left;
}
.location-variant-a .page-header::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}
.location-variant-a .page-header .section-tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.location-variant-a .page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.15; color: var(--white);
  margin-bottom: 28px;
}
.location-variant-a .page-header h1 em { color: var(--gold); font-style: italic; }
.page-header-intro {
  font-size: 1rem; line-height: 1.85; color: rgba(255,255,255,0.6);
  max-width: 640px;
}
.page-header-cta {
  margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap;
}


/* === LOCATION PAGES (VARIANT B) === */
/* Used by: evesham.html */
/* These use a .location-hero section instead of .page-header */

.location-hero {
  background: var(--navy);
  padding: 160px 6% 80px;
  position: relative; overflow: hidden;
}
.location-hero::before {
  content: '';
  position: absolute; top: -20%; right: -10%;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.location-hero .hero-inner {
  position: relative; max-width: 800px;
}
.location-hero .section-tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.location-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.15; color: var(--white);
  margin-bottom: 28px;
}
.location-hero h1 em { color: var(--gold); font-style: italic; }
.location-hero .intro-text {
  font-size: 1rem; line-height: 1.85; color: rgba(255,255,255,0.6);
  max-width: 680px; margin-bottom: 36px;
}


/* === GET STARTED === */

/* ── PRICING CARDS (get-started page variant) ── */
.plans-section { padding: 60px 6% 40px; }
.plans-section h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 600; color: var(--navy); text-align: center; margin-bottom: 8px; }
.plans-section .sub { color: var(--gray); font-size: 0.92rem; text-align: center; margin-bottom: 36px; }

/* get-started page overrides for p-card */
.p-card.selected-card { border-color: var(--gold) !important; box-shadow: 0 16px 44px rgba(201,168,76,0.2) !important; transform: translateY(-5px) !important; }
.p-card.dimmed { opacity: 0.42; transform: scale(0.97); }
.p-card.dimmed:hover { opacity: 0.7; transform: scale(0.98); }
.p-rec-badge { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: var(--gold); color: var(--navy); padding: 4px 14px; border-radius: 20px; margin-bottom: 12px; }
.select-btn {
  display: block; text-align: center; text-decoration: none;
  padding: 13px; border-radius: 5px; font-size: 0.9rem; font-weight: 600;
  transition: all 0.2s; border: 1.5px solid var(--navy); color: var(--navy); background: none;
  cursor: pointer; width: 100%; font-family: 'DM Sans', sans-serif;
}
.select-btn:hover { background: var(--navy); color: var(--white); }
.featured .select-btn { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.featured .select-btn:hover { background: var(--gold-light); }
.select-btn.active-plan { background: var(--navy); color: var(--white); border-color: var(--navy); }
@media(max-width:800px){ .pricing-grid { grid-template-columns: 1fr; max-width: 400px; } }

/* ── GET-STARTED FORM SECTION ── */
.gs-form-section { padding: 60px 6%; max-width: 640px; margin: 0 auto; }
.gs-form-section h2 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.gs-form-section .sub { color: var(--gray); font-size: 0.92rem; margin-bottom: 32px; }
.gs-form input, .gs-form select {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--light-gray); border-radius: 4px;
  font-family: 'DM Sans', sans-serif; font-size: 0.92rem; color: var(--navy);
  transition: border-color 0.2s; background: var(--white);
}
.gs-form input::placeholder { color: var(--gray); }
.gs-form input:focus, .gs-form select:focus { outline: none; border-color: var(--gold); }
.gs-form select { appearance: none; }
.gs-form .form-row { display: flex; gap: 14px; margin-bottom: 14px; }
@media(max-width:600px){ .gs-form .form-row { flex-direction: column; } }
.gs-form .form-field { margin-bottom: 14px; }
.gs-form .form-label { display: block; font-size: 0.82rem; font-weight: 500; color: var(--navy); margin-bottom: 6px; }
.gs-form button[type="submit"] {
  width: 100%; padding: 16px; border: none; border-radius: 4px;
  background: var(--gold); color: var(--navy);
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s, transform 0.15s; margin-top: 8px;
}
.gs-form button[type="submit"]:hover { background: var(--gold-light); transform: translateY(-1px); }
.gs-form button[type="submit"]:disabled { opacity: 0.6; cursor: not-allowed; }

/* ── Selected plan display ── */
.selected-plan-display {
  background: var(--cream); border-radius: 8px; padding: 16px 20px; margin-bottom: 14px;
  border-left: 3px solid var(--gold); display: flex; justify-content: space-between; align-items: center;
}
.selected-plan-display .plan-name { font-weight: 600; color: var(--navy); }
.selected-plan-display .plan-price { color: var(--gold); font-weight: 600; }
.change-plan { background: none; border: none; font-size: 0.82rem; color: var(--gray); cursor: pointer; text-decoration: underline; }

/* ── Funnel summary ── */
.prefill-summary {
  background: var(--cream); border-radius: 8px; padding: 20px 24px; margin-bottom: 32px;
  border-left: 3px solid var(--gold);
}
.prefill-summary h3 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--navy); margin-bottom: 10px; }
.prefill-items { display: flex; flex-direction: column; gap: 6px; }
.prefill-item { display: flex; gap: 8px; font-size: 0.88rem; color: var(--text); }
.prefill-label { color: var(--gray); min-width: 120px; }
.prefill-val { font-weight: 500; }


/* === THANK YOU === */

.thank-you-page {
  min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 40px 24px; text-align: center;
}
.thank-you-page .check {
  width: 80px; height: 80px; border-radius: 50%; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px; font-size: 2rem; color: var(--gold);
}
.thank-you-page h1 {
  font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700;
  color: var(--navy); margin-bottom: 12px;
}
.thank-you-page .sub { font-size: 1.05rem; color: var(--gray); max-width: 480px; line-height: 1.7; margin-bottom: 36px; }
.steps {
  text-align: left; max-width: 400px; margin: 0 auto 40px;
  list-style: none; counter-reset: step;
}
.steps li {
  counter-increment: step;
  padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.95rem; color: var(--text); display: flex; gap: 14px; align-items: flex-start;
}
.steps li::before {
  content: counter(step);
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  font-size: 0.8rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.btn {
  padding: 14px 28px; border-radius: 4px; font-size: 0.92rem; font-weight: 600;
  text-decoration: none; transition: background 0.2s, transform 0.15s;
  font-family: 'DM Sans', sans-serif;
}
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--gold); color: var(--navy); transform: translateY(-1px); }
.btn-gold-solid { background: var(--gold); color: var(--navy); }
.btn-gold-solid:hover { background: var(--gold-light); transform: translateY(-1px); }

/* note: thank-you.html also uses .btn-gold class defined in shared buttons above */


/* === BLOG === */

/* ── Blog Header ── */
.blog-header {
  background: var(--navy);
  padding: 140px 6% 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.09), transparent);
}
.blog-header-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.blog-header .section-tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.blog-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.25;
}
.blog-header-sub {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}
.blog-meta-top {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.blog-cat-tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  padding: 4px 14px;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.2s;
}
.blog-cat-tag:hover {
  background: rgba(201,168,76,0.3);
}
.blog-meta-line {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  margin-top: 8px;
}
.blog-meta-sep {
  margin: 0 8px;
}

/* ── Blog Body (post content) ── */
.blog-hero-img {
  max-width: 720px;
  margin: -20px auto 0;
  padding: 0 6%;
}
.blog-hero-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}
.blog-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 6%;
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text);
}
.blog-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin: 48px 0 16px;
}
.blog-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin: 36px 0 12px;
}
.blog-body p {
  margin-bottom: 20px;
}
.blog-body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.blog-body a:hover {
  color: var(--gold-light);
}
.blog-body strong {
  color: var(--navy);
  font-weight: 600;
}
.blog-body ul, .blog-body ol {
  margin: 0 0 20px 24px;
}
.blog-body li {
  margin-bottom: 8px;
  line-height: 1.75;
}
.blog-body blockquote {
  border-left: 3px solid var(--gold);
  margin: 32px 0;
  padding: 16px 24px;
  background: var(--cream);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--gray);
}
.blog-body blockquote p {
  margin-bottom: 0;
}
.blog-body code {
  background: var(--cream);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
}
.blog-body pre {
  background: var(--navy);
  color: var(--cream);
  padding: 20px 24px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 24px 0;
  font-size: 0.88rem;
  line-height: 1.6;
}
.blog-body pre code {
  background: none;
  padding: 0;
  color: inherit;
}
.blog-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 24px 0;
}
.blog-body hr {
  border: none;
  border-top: 1px solid var(--light-gray);
  margin: 48px 0;
}

/* ── Blog Author Line ── */
.blog-author-line {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 6% 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--light-gray);
  padding-top: 32px;
}
.blog-author-avatar .logo-mark {
  width: 48px; height: 48px;
}
.blog-author-avatar .logo-mark img {
  width: 48px; height: 48px;
}
.blog-author-line strong {
  font-size: 0.95rem;
  color: var(--navy);
  display: block;
  margin-bottom: 2px;
}
.blog-author-line p {
  font-size: 0.84rem;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}

/* ── Blog Card Grid ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 6%;
}
@media (max-width: 680px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
.blog-card {
  background: var(--white);
  border: 1.5px solid var(--light-gray);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
}
.blog-card-pinned {
  border-color: rgba(201,168,76,0.3);
  background: linear-gradient(135deg, var(--white) 0%, rgba(248,245,239,0.5) 100%);
}
.blog-card-img {
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
.blog-card-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.03);
}
.blog-card-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-cats {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.blog-cat-pill {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  padding: 3px 10px;
  border-radius: 12px;
}
.blog-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}
.blog-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.65;
  flex: 1;
}
.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--light-gray);
}
.blog-card-footer time {
  font-size: 0.78rem;
  color: var(--gray);
}
.blog-read-more {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
}

/* ── Category Filter Bar ── */
.category-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 32px 6%;
  max-width: 960px;
  margin: 0 auto;
}
.category-pill {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray);
  background: var(--white);
  border: 1.5px solid var(--light-gray);
  padding: 7px 18px;
  border-radius: 20px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.category-pill:hover {
  border-color: var(--gold);
  color: var(--navy);
}
.category-pill.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ── Blog Pinned Section ── */
.blog-pinned {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 6% 16px;
}
.blog-pinned-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-left: 2px;
}
.blog-pinned .blog-grid {
  padding: 0;
}

/* ── Blog Listing Section ── */
.blog-listing {
  padding: 24px 0 64px;
}
.blog-empty {
  text-align: center;
  padding: 64px 6%;
  color: var(--gray);
  font-size: 0.95rem;
}

/* ── Blog CTA Band ── */
.blog-cta-band {
  background: var(--navy);
  padding: 80px 6%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.09), transparent);
}
.blog-cta-inner {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}
.blog-cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.blog-cta-band p {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.blog-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Blog Related Posts ── */
.blog-related {
  background: var(--cream);
  padding: 64px 0;
}
.blog-related h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  margin-bottom: 32px;
}
.blog-related .blog-card {
  background: var(--white);
}

/* ── Blog Pagination ── */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 32px 6%;
  max-width: 960px;
  margin: 0 auto;
}
.blog-pagination a, .blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.blog-pagination a {
  color: var(--navy);
  border: 1.5px solid var(--light-gray);
}
.blog-pagination a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.blog-pagination .current {
  background: var(--navy);
  color: var(--white);
  border: 1.5px solid var(--navy);
}

/* ── Differentiator Strip ── */
.differentiator-strip { padding: 80px 6%; background: var(--white); }
.diff-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 32px; max-width: 1200px; margin: 0 auto; }
.diff-card { padding: 36px 28px; border: 1.5px solid var(--light-gray); border-radius: 10px; transition: border-color 0.25s, transform 0.2s; }
.diff-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.diff-icon { font-size: 2rem; margin-bottom: 16px; }
.diff-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.diff-body { font-size: 0.9rem; line-height: 1.75; color: var(--gray); margin-bottom: 20px; }
.diff-link { font-size: 0.85rem; font-weight: 600; color: var(--gold); text-decoration: none; }
.diff-link:hover { text-decoration: underline; }

/* ── About Page ── */
.about-hero { padding: 120px 6% 60px; background: var(--navy); text-align: center; }
.about-hero-inner { max-width: 720px; margin: 0 auto; }
.about-hero h1 { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--white); margin-bottom: 20px; }
.about-hero-sub { font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,0.7); }
.founder-note { padding: 80px 6%; background: var(--cream); }
.founder-inner { max-width: 720px; margin: 0 auto; }
.founder-text p { font-size: 1rem; line-height: 1.85; color: var(--text); margin-bottom: 20px; }
.founder-text p:last-child { margin-bottom: 0; }
.why-us-section { padding: 80px 6%; }

/* ── Services Page ── */
.services-page-grid { padding: 80px 6%; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 40px; }
.services-page-card { padding: 40px 32px; border: 1.5px solid var(--light-gray); border-radius: 12px; transition: border-color 0.25s, transform 0.2s; }
.services-page-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.services-page-card h2 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--navy); margin-bottom: 12px; }
.services-page-card p { font-size: 0.92rem; line-height: 1.75; color: var(--gray); }

/* ── Contact Page ── */
.contact-page-section { padding: 80px 6%; }
.contact-page-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
@media(max-width:768px) { .contact-page-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-page-info h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--navy); margin-bottom: 28px; }
.contact-info-item { margin-bottom: 24px; }
.contact-info-item strong { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray); margin-bottom: 6px; }
.contact-info-item p, .contact-info-item a { font-size: 0.95rem; line-height: 1.7; color: var(--text); text-decoration: none; }
.contact-info-item a:hover { color: var(--gold); }
.contact-page-form .contact-form { background: var(--white); border: 1.5px solid var(--light-gray); border-radius: 12px; padding: 36px; max-width: none; }
.contact-page-form .contact-form input,
.contact-page-form .contact-form select,
.contact-page-form .contact-form textarea {
  background: var(--white); color: var(--text);
  border: 1.5px solid var(--light-gray); border-radius: 8px;
}
.contact-page-form .contact-form input::placeholder,
.contact-page-form .contact-form textarea::placeholder { color: var(--gray); }
.contact-page-form .contact-form input:focus,
.contact-page-form .contact-form select:focus,
.contact-page-form .contact-form textarea:focus { border-color: var(--gold); }
.contact-page-form .contact-form select { color: var(--text); }
.contact-page-form .contact-form select option { background: var(--white); color: var(--text); }
.contact-page-form .trust-line { text-align: center; margin-top: 16px; font-size: 0.82rem; color: var(--gray); }
.addr-dropdown {
  position: absolute; top: 100%; left: 0; right: 0;
  background: #fff; border: 1.5px solid var(--light-gray);
  border-radius: 10px; box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  margin-top: 4px; z-index: 200; list-style: none; padding: 6px 0; overflow: hidden;
}
.addr-dropdown:empty { display: none; }
.addr-dropdown-item {
  display: flex; flex-direction: column; padding: 10px 16px;
  cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--text);
}
.addr-dropdown-item:hover { background: rgba(201,168,76,0.08); }
.addr-main { font-weight: 600; }
.addr-sec { font-size: 0.82rem; color: var(--gray); margin-top: 2px; }
.cta-band .addr-dropdown { background: var(--navy); border-color: rgba(255,255,255,0.15); }
.cta-band .addr-dropdown-item { color: var(--white); }
.cta-band .addr-dropdown-item:hover { background: rgba(201,168,76,0.15); }
.cta-band .addr-sec { color: rgba(255,255,255,0.5); }
