/* ==========================================================================
   Yatin Kalra â€” SmartPro Realty | Luxury Design System v2
   Fonts: Fraunces (display) + Manrope (body)
   Palette: deep ink navy, warm ivory, champagne gold, brass accents
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  --ink: #0a1626;
  --ink-2: #0f2138;
  --ink-3: #16304f;
  --ivory: #faf7f1;
  --ivory-2: #f3eee3;
  --gold: #b08d3e;
  --gold-2: #d4b169;
  --champagne: #e9d9b0;
  --text: #2c3a4d;
  --text-soft: #55647a;
  --muted: #8b97a8;
  --line: #e7e0d2;
  --white: #ffffff;
  --green: #2e7d5b;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 18px 50px rgba(10, 22, 38, .12);
  --shadow-lg: 0 40px 90px rgba(10, 22, 38, .22);
  --glow: 0 0 0 1px rgba(176, 141, 62, .25), 0 18px 50px rgba(176, 141, 62, .18);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --maxw: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--ivory);
  line-height: 1.7;
  font-size: 16.5px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); line-height: 1.15; font-weight: 500; letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
h3 { font-family: var(--font-body); font-size: 1.12rem; font-weight: 700; letter-spacing: .01em; }
p.lead { font-size: 1.13rem; color: var(--text-soft); font-weight: 400; }

.section { padding: 110px 0; }
.section.alt { background: var(--white); }
.center { text-align: center; }
.muted { color: var(--muted); }
.gold { color: var(--gold); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .74rem; font-weight: 800; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 34px; height: 1.5px; background: linear-gradient(90deg, var(--gold), transparent); }
.center .eyebrow::before { display: none; }
.center .eyebrow { justify-content: center; gap: 14px; }
.center .eyebrow::after { content: ""; width: 34px; height: 1.5px; background: linear-gradient(270deg, var(--gold), transparent); }
.head-center { max-width: 680px; margin: 0 auto 60px; }
.head-center .lead { margin-top: 6px; }

/* Scroll progress bar */
#scrollBar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-2), var(--champagne));
  z-index: 99; transition: width .1s linear;
}

/* Buttons */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 17px 36px; border-radius: 999px; border: 0; cursor: pointer;
  font-family: var(--font-body); font-size: .92rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn-gold { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #fff; box-shadow: 0 12px 32px rgba(176, 141, 62, .4); }
.btn-gold:hover { box-shadow: 0 20px 44px rgba(176, 141, 62, .5); }
.btn-navy { background: var(--ink); color: #fff; box-shadow: 0 12px 32px rgba(10, 22, 38, .3); }
.btn-navy:hover { background: var(--ink-2); }
.btn-ghost { background: rgba(255,255,255,.06); color: #fff; border: 1.5px solid rgba(255,255,255,.35); backdrop-filter: blur(6px); }
.btn-ghost:hover { border-color: var(--gold-2); background: rgba(212, 177, 105, .12); }
.btn-sm { padding: 12px 24px; font-size: .82rem; }
/* shine sweep */
.btn::after {
  content: ""; position: absolute; top: 0; left: -80%; width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg); transition: left .6s ease;
}
.btn:hover::after { left: 130%; }

/* Header */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 241, .85);
  backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid rgba(231, 224, 210, .8);
  transition: box-shadow .3s;
  max-width: 100%;
  overflow-x: hidden;
}
header.site.scrolled { box-shadow: 0 10px 40px rgba(10, 22, 38, .08); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 84px; gap: 32px; }
.logo { display: flex; align-items: center; gap: 14px; flex: none; }
.logo-img { height: 44px; width: auto; border-radius: 8px; }
.logo-text { font-weight: 800; font-size: 1.02rem; color: var(--ink); line-height: 1.25; letter-spacing: .01em; padding-right: 28px; border-right: 1.5px solid var(--line); }
.logo-text small { display: block; font-size: .62rem; font-weight: 700; color: var(--gold); letter-spacing: .22em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 6px; flex: 1; justify-content: center; }
.nav-links a {
  padding: 10px 15px; border-radius: 10px; font-size: .88rem; font-weight: 600; color: var(--text);
  letter-spacing: .02em; transition: color .2s, background .2s; position: relative; white-space: nowrap;
}
.nav-links a:hover { color: var(--gold); background: rgba(176, 141, 62, .07); }
.nav-links a.active { color: var(--gold); }
.nav-cta { display: flex; align-items: center; gap: 16px; flex: none; }
.nav-phone { font-weight: 800; color: var(--ink); font-size: .95rem; display: flex; align-items: center; gap: 8px; letter-spacing: .02em; }
.nav-phone:hover { color: var(--gold); }
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 10px; border-radius: 10px; flex: none; -webkit-tap-highlight-color: transparent; }
.burger span { display: block; width: 26px; height: 3px; background: var(--ink); margin: 6px 0; border-radius: 3px; transition: .3s; }

.mobile-menu {
  display: none; flex-direction: column; gap: 4px; padding: 14px 28px 28px;
  background: var(--ivory); border-bottom: 1px solid var(--line);
}
.mobile-menu a { padding: 14px 18px; border-radius: 10px; font-weight: 700; color: var(--ink); font-size: .98rem; min-height: 48px; display: flex; align-items: center; }
.mobile-menu a.active { color: var(--gold); background: rgba(176, 141, 62, .08); }
.mobile-menu .btn { margin-top: 12px; }
.mobile-menu.open { display: flex; animation: slideDown .3s ease; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* Hero */
.hero, .page-hero {
  position: relative; color: #fff; overflow: hidden;
  background: linear-gradient(rgba(8, 16, 30, .55), rgba(8, 16, 30, .72)), url("assets/hero.jpg") center/cover no-repeat;
}
.hero { padding: 150px 0 130px; }
.page-hero { padding: 110px 0 96px; }
.hero::before, .page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 30%, rgba(212, 177, 105, .18), transparent 60%);
  pointer-events: none;
}
.hero > .wrap, .page-hero > .wrap { position: relative; z-index: 2; }
.breadcrumb { font-size: .82rem; color: rgba(255,255,255,.55); margin-bottom: 18px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }
.breadcrumb a { color: var(--gold-2); }
.hero h1, .page-hero h1 { color: #fff; text-shadow: 0 4px 40px rgba(0,0,0,.35); }
.hero h1 em, .page-hero h1 em { font-style: italic; color: var(--gold-2); }
.hero .lead, .page-hero .lead { color: rgba(255,255,255,.82); max-width: 620px; margin-top: 22px; font-size: 1.16rem; }
.hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 64px; align-items: center; }
.hero-cta { display: flex; gap: 16px; margin-top: 38px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; margin-top: 60px; flex-wrap: wrap; }
.hero-stats b { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--gold-2); font-weight: 500; }
.hero-stats span { font-size: .82rem; color: rgba(255,255,255,.65); letter-spacing: .08em; text-transform: uppercase; font-weight: 600; }

/* animated float for lead card */
.lead-card {
  background: rgba(255, 255, 255, .97); border-radius: var(--radius-lg); padding: 38px 36px;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.6);
  animation: floatCard 7s ease-in-out infinite;
}
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.lead-card h3 { font-family: var(--font-display); color: var(--ink); margin-bottom: 4px; font-size: 1.45rem; font-weight: 600; }
.lead-card .sub { font-size: .92rem; margin-bottom: 24px; color: var(--text-soft); }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: .76rem; font-weight: 800; color: var(--ink); margin-bottom: 7px; letter-spacing: .1em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: var(--font-body); font-size: .95rem; color: var(--ink); background: var(--ivory);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 4px rgba(176, 141, 62, .12);
}
.field textarea { resize: vertical; min-height: 96px; }
.btn-full { width: 100%; }
.form-note { font-size: .78rem; color: var(--muted); text-align: center; margin-top: 14px; }
.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success.show { display: block; animation: popIn .4s cubic-bezier(.2,.8,.2,1); }
@keyframes popIn { from { opacity: 0; transform: scale(.92); } to { opacity: 1; transform: scale(1); } }
.form-success .big { font-size: 2.8rem; }
.form-success h4 { color: var(--green); margin: 12px 0 6px; }

/* Search strip */
.search-strip { background: var(--ink); padding: 36px 0; position: relative; overflow: hidden; }
.search-strip::after {
  content: ""; position: absolute; width: 500px; height: 500px; border-radius: 50%;
  border: 1px solid rgba(212, 177, 105, .12); left: -200px; top: -250px;
}
.search-box {
  display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 14px;
  background: rgba(255,255,255,.98); padding: 20px; border-radius: 18px; box-shadow: var(--shadow-lg);
}
.search-box input, .search-box select {
  padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: var(--font-body); font-size: .93rem; color: var(--ink); background: var(--ivory); width: 100%;
}
.search-box input:focus, .search-box select:focus { outline: none; border-color: var(--gold); background: #fff; }

/* Cards */
.grid { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border: 1px solid rgba(231, 224, 210, .6); border-radius: var(--radius-lg);
  padding: 40px 36px; box-shadow: 0 6px 24px rgba(10, 22, 38, .05);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .35s;
  position: relative;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(176, 141, 62, .35); }
.card .ico {
  width: 58px; height: 58px; border-radius: 16px; font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
  background: linear-gradient(135deg, var(--ivory-2), var(--champagne));
  box-shadow: inset 0 0 0 1px rgba(176, 141, 62, .18);
}
.card h3 { color: var(--ink); margin-bottom: 12px; font-size: 1.15rem; }
.card p { font-size: .95rem; color: var(--text-soft); }

.feature-card { overflow: hidden; }
.feature-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transform: scaleX(0); transform-origin: left; transition: transform .5s ease;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card .num {
  position: absolute; top: 20px; right: 28px; font-family: var(--font-display);
  font-size: 3rem; font-weight: 300; color: var(--ivory-2); line-height: 1; font-style: italic;
}

/* Steps */
.steps { counter-reset: step; }
.step { display: flex; gap: 26px; padding: 30px 0; border-bottom: 1px solid rgba(231,224,210,.7); }
.step:last-child { border-bottom: 0; }
.step .n {
  flex: none; width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 600;
  box-shadow: 0 10px 26px rgba(176, 141, 62, .35);
}
.step h3 { margin-bottom: 8px; color: var(--ink); }
.step p { font-size: .96rem; max-width: 640px; color: var(--text-soft); }

/* Check list */
.checks li { display: flex; gap: 14px; padding: 11px 0; font-size: .98rem; color: var(--text-soft); }
.checks li::before {
  content: "âœ“"; flex: none; width: 27px; height: 27px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(176,141,62,.15), rgba(212,177,105,.2)); color: var(--gold);
  font-weight: 800; font-size: .85rem; display: flex; align-items: center; justify-content: center; margin-top: 3px;
}

/* Split media */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split .visual {
  aspect-ratio: 4/3; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--ink), var(--ink-3));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.85); font-size: .9rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 600;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.split .visual::after {
  content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%;
  border: 1px solid rgba(212, 177, 105, .25); right: -90px; bottom: -90px;
  box-shadow: 0 0 0 40px rgba(212, 177, 105, .05);
}

/* Photo frame with slow zoom */
.photo-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 8s ease; }
.photo-frame:hover img { transform: scale(1.06); }
.photo-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(transparent 55%, rgba(10, 22, 38, .78));
  pointer-events: none;
}
.photo-badge { position: absolute; left: 22px; bottom: 22px; z-index: 2; }
.photo-badge b { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: #fff; }
.photo-badge span { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-2); font-weight: 700; }

/* Testimonials */
.quote {
  background: var(--white); border-radius: var(--radius-lg); padding: 38px 34px;
  border: 1px solid rgba(231, 224, 210, .6); box-shadow: 0 6px 24px rgba(10, 22, 38, .05);
  display: flex; flex-direction: column; gap: 18px; position: relative;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
}
.quote:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.quote::before {
  content: """; position: absolute; top: 10px; right: 24px; font-family: var(--font-display);
  font-size: 5rem; color: var(--champagne); line-height: 1; font-style: italic;
}
.quote .stars { color: var(--gold); letter-spacing: 4px; font-size: .95rem; }
.quote p { font-size: .98rem; color: var(--text); font-style: italic; font-family: var(--font-display); font-weight: 400; line-height: 1.7; }
.quote .who { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.quote .avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--ink), var(--ink-3)); color: var(--gold-2);
  display: flex; align-items: center; justify-content: center; font-weight: 800;
}
.quote .who b { color: var(--ink); display: block; font-size: .95rem; }
.quote .who span { font-size: .8rem; color: var(--muted); letter-spacing: .04em; }

/* FAQ */
.faq-item { border: 1px solid rgba(231,224,210,.8); border-radius: 16px; background: var(--white); margin-bottom: 14px; overflow: hidden; transition: border-color .3s, box-shadow .3s; }
.faq-item.open { border-color: rgba(176, 141, 62, .4); box-shadow: var(--shadow); }
.faq-q {
  width: 100%; text-align: left; padding: 22px 28px; background: none; border: 0; cursor: pointer;
  font-family: var(--font-body); font-size: 1rem; font-weight: 700; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .pm { color: var(--gold); font-size: 1.5rem; font-weight: 300; flex: none; transition: transform .3s; }
.faq-item.open .pm { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 28px 24px; font-size: .96rem; color: var(--text-soft); }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--ink), var(--ink-3));
  border-radius: var(--radius-lg); padding: 72px 64px; color: #fff;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.cta-band::before {
  content: ""; position: absolute; width: 400px; height: 400px; border-radius: 50%;
  border: 1px solid rgba(212, 177, 105, .2); right: -130px; top: -130px;
  box-shadow: 0 0 0 60px rgba(212, 177, 105, .04);
}
.cta-band::after {
  content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%;
  border: 1px solid rgba(212, 177, 105, .1); left: -120px; bottom: -150px;
}
.cta-band h2 { color: #fff; margin-bottom: 12px; font-weight: 500; }
.cta-band h2 em { font-style: italic; color: var(--gold-2); }
.cta-band p { color: rgba(255,255,255,.75); max-width: 520px; }
.cta-band > * { position: relative; z-index: 2; }

/* Guide articles */
.doc-nav { display: flex; gap: 10px; flex-wrap: wrap; margin: 38px 0 10px; }
.doc-nav a {
  font-size: .8rem; font-weight: 800; color: var(--ink); background: var(--white);
  border: 1.5px solid var(--line); padding: 10px 20px; border-radius: 999px;
  transition: all .2s; letter-spacing: .04em; text-transform: uppercase;
}
.doc-nav a:hover { border-color: var(--gold); color: var(--gold); background: rgba(176, 141, 62, .06); }
.doc h2 { margin: 60px 0 20px; padding-top: 12px; }
.doc h3 { margin: 30px 0 12px; color: var(--ink); font-size: 1.1rem; font-weight: 700; }
.doc p { margin-bottom: 16px; max-width: 760px; color: var(--text-soft); }
.doc ul, .doc ol { margin: 0 0 20px 22px; max-width: 720px; }
.doc ul li { list-style: none; padding: 6px 0 6px 22px; position: relative; color: var(--text-soft); }
.doc ul li::before { content: "â€”"; position: absolute; left: 0; color: var(--gold); }
.doc ol li { list-style: decimal; padding: 6px 0; color: var(--text-soft); }
.doc .note, .doc .tip {
  padding: 22px 26px; margin: 26px 0; max-width: 760px; font-size: .95rem; border-radius: 0 14px 14px 0;
  background: linear-gradient(135deg, rgba(212, 177, 105, .12), rgba(233, 217, 176, .18));
  border-left: 3px solid var(--gold);
}
.doc .tip { background: linear-gradient(135deg, rgba(46, 125, 91, .08), rgba(46, 125, 91, .14)); border-left-color: var(--green); }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.info-tile { display: flex; gap: 20px; padding: 26px 0; border-bottom: 1px solid rgba(231,224,210,.7); }
.info-tile:last-child { border-bottom: 0; }
.info-tile .ico {
  width: 52px; height: 52px; border-radius: 14px; flex: none; font-size: 1.35rem;
  background: linear-gradient(135deg, var(--ivory-2), var(--champagne));
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(176, 141, 62, .18);
}
.info-tile b { display: block; color: var(--ink); margin-bottom: 3px; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; }
.info-tile span, .info-tile a { font-size: 1rem; color: var(--text-soft); font-weight: 500; }
.info-tile a:hover { color: var(--gold); }

/* Footer */
footer.site { background: var(--ink); color: rgba(255,255,255,.72); padding: 80px 0 0; }
footer.site h4 { color: #fff; font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 22px; font-family: var(--font-body); font-weight: 800; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 48px; padding-bottom: 56px; }
.footer-grid a { display: block; padding: 7px 0; font-size: .92rem; transition: color .2s, transform .2s; }
.footer-grid a:hover { color: var(--gold-2); transform: translateX(4px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 26px 0;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .82rem;
}
.footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.footer-logo-img { height: 46px; width: auto; border-radius: 8px; background: #fff; padding: 5px; }
.footer-logo .logo-text { color: #fff; }
.footer-logo .logo-text small { color: var(--gold-2); }

/* Affiliations */
.affiliations { border-top: 1px solid rgba(255,255,255,.1); padding: 34px 0; }
.affil-row { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.affil-label { font-size: .72rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.affil-badge {
  border: 1.5px solid rgba(255,255,255,.22); border-radius: 12px; padding: 10px 18px;
  font-size: .8rem; font-weight: 800; color: #fff; letter-spacing: .06em; transition: border-color .2s, transform .2s;
}
.affil-badge:hover { border-color: var(--gold-2); transform: translateY(-2px); }
.affil-logo {
  height: 44px; width: auto; border-radius: 10px; background: #fff; padding: 6px 10px;
  transition: transform .25s;
}
.affil-logo:hover { transform: translateY(-3px); }

/* Mobile sticky CTA */
.mobile-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 40; display: none; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(231, 224, 210, .6); }
.mobile-cta a {
  padding: 17px; text-align: center; font-weight: 800; font-size: .92rem; letter-spacing: .04em;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.mobile-cta .call { background: var(--ink); color: #fff; }
.mobile-cta .wa { background: #1faa53; color: #fff; }

/* Toast */
#toast {
  position: fixed; bottom: 24px; left: 50%; transform: translate(-50%, 20px);
  background: var(--ink); color: #fff; padding: 15px 30px; border-radius: 999px;
  font-size: .9rem; font-weight: 600; box-shadow: var(--shadow-lg); opacity: 0;
  pointer-events: none; transition: opacity .3s, transform .3s; z-index: 100;
}
#toast.show { opacity: 1; transform: translate(-50%, 0); }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .3s; }

/* Marquee */
.marquee { overflow: hidden; background: var(--ink); padding: 20px 0; position: relative; }
.marquee-track { display: flex; gap: 64px; width: max-content; animation: scrollX 30s linear infinite; }
.marquee span {
  font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 1.3rem;
  color: rgba(233, 217, 176, .9); white-space: nowrap; display: flex; align-items: center; gap: 64px;
}
.marquee span::after { content: "â—†"; font-size: .55rem; color: var(--gold); font-style: normal; }
@keyframes scrollX { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (max-width: 1200px) and (min-width: 901px) {
  .nav { gap: 14px; height: 76px; }
  .logo-text { font-size: .88rem; padding-right: 16px; }
  .logo-img { height: 34px; }
  .nav-links { gap: 2px; }
  .nav-links a { padding: 9px 8px; font-size: .74rem; }
  .nav-phone { display: none; }
  .nav-cta { gap: 0; }
  .nav-cta .btn { padding: 11px 16px; font-size: .7rem; }
}
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
/* Form submit-mode buttons */
.submit-note { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .78rem; color: var(--muted); margin-top: 12px; }
.or-divider { display: flex; align-items: center; gap: 14px; margin: 18px 0 14px; color: var(--muted); font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.or-divider::before, .or-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.btn-wa { background: #fff; color: #1d9e4f; border: 1.5px solid #1d9e4f; width: 100%; }
.btn-wa:hover { background: #1d9e4f; color: #fff; box-shadow: 0 12px 32px rgba(29, 158, 79, .25); }

/* Social icons */
.social-row { display: flex; align-items: center; gap: 12px; }
.social-icon {
  width: 42px; height: 42px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.22);
  transition: transform .25s, border-color .25s, background .25s;
}
.social-icon svg { width: 18px; height: 18px; fill: #fff; }
.social-icon:hover { transform: translateY(-4px); border-color: var(--gold-2); background: rgba(212, 177, 105, .15); }
.footer-social { margin-top: 22px; }
.header-social .social-icon { width: 36px; height: 36px; background: rgba(10,22,38,.06); border-color: rgba(10,22,38,.12); }
.header-social .social-icon svg { width: 15px; height: 15px; fill: var(--ink); }
.header-social .social-icon:hover { background: rgba(176,141,62,.12); border-color: var(--gold); }
.header-social .social-icon:hover svg { fill: var(--gold); }
@media (max-width: 900px) { .header-social { display: none; } }
@media (max-width: 900px) {
  .nav-links, .nav-cta .btn, .nav-phone { display: none; }
  .burger { display: block; flex: none; margin-left: auto; }
  .nav { gap: 12px; height: 74px; }
  .logo { gap: 10px; }
  .logo-img { height: 36px; }
  .logo-text { font-size: .94rem; padding-right: 0; border-right: 0; }
  .logo-text small { font-size: .56rem; letter-spacing: .18em; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding: 90px 0 80px; }
  .split .visual { aspect-ratio: 16/9; }
  .search-box { grid-template-columns: 1fr 1fr; }
  .search-box .btn { grid-column: 1 / -1; }
  .grid-3 { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .cta-band { padding: 48px 32px; }
  .mobile-cta { display: grid; }
  footer.site { padding-bottom: 74px; }
  .lead-card { animation: none; padding: 32px 28px; }
  .marquee span { font-size: 1.05rem; }
  .marquee-track { gap: 40px; }
  .marquee span::after { gap: 40px; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 18px; }
  body { font-size: 16px; }
  .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .hero-stats { gap: 26px; }
  .hero-stats b { font-size: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .search-box { grid-template-columns: 1fr; padding: 14px; }
  .lead-card { padding: 26px 20px; }
  .field input, .field select, .field textarea { font-size: 16px; padding: 13px 14px; }
  .hero .lead { font-size: 1.02rem; }
  .hero-cta .btn { width: 100%; }
  .photo-badge b { font-size: 1.2rem; }
  .cta-band { padding: 40px 24px; }
  .doc-nav a { font-size: .72rem; padding: 8px 14px; }
  .step { gap: 16px; padding: 22px 0; }
  .step .n { width: 46px; height: 46px; font-size: 1.15rem; }
  #toast { bottom: 84px; font-size: .84rem; padding: 13px 20px; }
}
@media (max-width: 400px) {
  .logo-img { height: 30px; }
  .logo-text { font-size: .84rem; }
  .logo-text small { font-size: .52rem; }
  .nav { height: 68px; }
}
/* Hide Netlify "Powered by" badge (free-plan sites) */
netlify-badge, .netlify-badge, #netlify-badge, a[href*="netlify.com"][class*="badge"] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
