/* ==========================================================
   Silvermoon Landscaping Sarasota — MiniMax builder (M3)
   Brand: premium black + warm gold + stone neutrals
   Style: Liquid Glass — flowing, iridescent, designer portfolio
   Typography: Archivo (display) + Space Grotesk (body)
   Distinct from Leandro (rounded soft green) and prior (forest/earth)
   ========================================================== */

:root {
  --black:       #0C0A09;
  --ink-900:     #1C1917;
  --ink-700:     #44403C;
  --ink-500:     #78716C;
  --ink-300:     #D6D3D1;
  --ink-100:     #F5F5F4;
  --paper:       #FAFAF9;
  --white:       #FFFFFF;

  --gold-700:    #A16207;
  --gold-600:    #B45309;
  --gold-500:    #CA8A04;
  --gold-400:    #EAB308;
  --gold-200:    #FDE68A;
  --gold-100:    #FEF3C7;
  --gold-glow:   rgba(202, 138, 4, 0.25);

  --stone-50:    #FAFAF9;
  --stone-100:   #F5F5F4;
  --stone-200:   #E7E5E4;

  --shadow-sm:   0 2px 8px rgba(12, 10, 9, 0.06);
  --shadow:      0 8px 28px rgba(12, 10, 9, 0.10);
  --shadow-lg:   0 20px 50px rgba(12, 10, 9, 0.18);
  --shadow-gold: 0 8px 32px rgba(202, 138, 4, 0.20);

  --glass-bg:    rgba(255, 255, 255, 0.65);
  --glass-bg-d:  rgba(12, 10, 9, 0.55);
  --glass-bd:    rgba(255, 255, 255, 0.30);
  --glass-bd-d:  rgba(255, 255, 255, 0.10);

  --radius-sm:   6px;
  --radius:      14px;
  --radius-lg:   24px;
  --radius-xl:   36px;
  --radius-pill: 999px;

  --max: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--black);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Archivo', 'Space Grotesk', system-ui, sans-serif;
  font-weight: 600;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

p { color: var(--ink-700); margin: 0 0 1em; font-size: 1.02rem; }
a { color: var(--gold-700); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-500); }
img { max-width: 100%; display: block; height: auto; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px;
  border-radius: var(--radius-pill);
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  line-height: 1.2;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--black);
  color: var(--paper);
  border-color: var(--black);
}
.btn-primary:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--black); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-gold { background: var(--gold-500); color: var(--black); border-color: var(--gold-500); }
.btn-gold:hover { background: var(--gold-600); border-color: var(--gold-600); color: var(--paper); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--black); border-color: var(--ink-300); }
.btn-ghost:hover { border-color: var(--black); color: var(--black); background: var(--stone-100); }
.btn-outline-light { background: transparent; color: var(--paper); border-color: rgba(255,255,255,0.35); backdrop-filter: blur(20px); }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); color: var(--paper); }

/* ---------- Glass card utility ---------- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--glass-bd);
}
.glass-dark {
  background: var(--glass-bg-d);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--glass-bd-d);
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--black);
  color: var(--paper);
  font-size: 0.85rem;
  padding: 10px 0;
  position: relative;
  z-index: 60;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.topbar a { color: var(--gold-200); font-weight: 500; }
.topbar a:hover { color: var(--gold-400); }
.topbar .live {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500; letter-spacing: 0.05em;
}
.topbar .live::before {
  content: ''; width: 7px; height: 7px; background: var(--gold-400); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(234, 179, 8, 0.25);
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 250, 249, 0.75);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--stone-200);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--black); letter-spacing: -0.02em; }
.brand-mark {
  width: 40px; height: 40px;
  background: var(--black);
  border-radius: 50%;
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}
.brand-mark::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-200) 50%, var(--gold-500) 100%);
  opacity: 0.4;
  mix-blend-mode: overlay;
}
.brand-mark svg { width: 22px; height: 22px; position: relative; z-index: 1; }
.brand-text small { display: block; font-family: 'Space Grotesk'; font-weight: 500; font-size: 0.7rem; color: var(--ink-500); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 1px; }

.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links a { padding: 10px 16px; border-radius: var(--radius-pill); font-weight: 500; color: var(--ink-700); font-size: 0.92rem; transition: all .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--black); background: var(--stone-100); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-cta .phone { font-weight: 600; color: var(--black); font-size: 0.92rem; font-family: 'Archivo'; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--black); margin: 5px 0; border-radius: 2px; transition: all .2s; }

/* ---------- Hero (dark, cinematic) ---------- */
.hero {
  position: relative;
  background: var(--black);
  color: var(--paper);
  padding: 100px 0 110px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(202, 138, 4, 0.25), transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 80%, rgba(234, 179, 8, 0.18), transparent 60%),
    linear-gradient(180deg, #0C0A09 0%, #1C1917 100%);
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold-400);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding: 6px 14px;
  background: rgba(234, 179, 8, 0.10);
  border: 1px solid rgba(234, 179, 8, 0.25);
  border-radius: var(--radius-pill);
}
.hero-eyebrow .star { color: var(--gold-400); }
.hero h1 { color: var(--paper); margin-bottom: 22px; }
.hero h1 .accent { background: linear-gradient(120deg, var(--gold-200) 0%, var(--gold-500) 50%, var(--gold-200) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lede { font-size: 1.15rem; color: rgba(255,255,255,0.78); max-width: 540px; margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-ctas .btn-primary { background: var(--gold-500); color: var(--black); border-color: var(--gold-500); }
.hero-ctas .btn-primary:hover { background: var(--gold-400); border-color: var(--gold-400); }
.hero-ctas .btn-outline-light { color: var(--paper); }

.hero-trust { display: flex; gap: 32px; margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap; }
.hero-trust .item .num { font-family: 'Archivo'; font-size: 1.6rem; font-weight: 700; color: var(--gold-400); display: block; line-height: 1; }
.hero-trust .item .lbl { font-size: 0.78rem; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; text-transform: uppercase; margin-top: 4px; display: block; }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--ink-900);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.1);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.hero-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12, 10, 9, 0.85) 100%);
}
.hero-visual .floating-card {
  position: absolute; left: 24px; right: 24px; bottom: 24px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 18px 22px;
  color: var(--paper);
  display: flex; align-items: center; gap: 16px;
}
.hero-visual .floating-card .num { font-family: 'Archivo'; font-size: 2.2rem; font-weight: 700; color: var(--gold-400); line-height: 1; }
.hero-visual .floating-card .label { font-size: 0.85rem; color: rgba(255,255,255,0.78); line-height: 1.35; }

/* ---------- Sections ---------- */
section { padding: 100px 0; }
section.alt { background: var(--stone-100); }
section.dark { background: var(--black); color: var(--paper); }
section.dark h2, section.dark h3, section.dark p { color: var(--paper); }
section.dark p { color: rgba(255,255,255,0.78); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.section-head .eyebrow { color: var(--gold-500); font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.78rem; margin-bottom: 14px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: 1.1rem; color: var(--ink-700); }
.dark .section-head .eyebrow { color: var(--gold-400); }
.dark .section-head p { color: rgba(255,255,255,0.78); }

/* ---------- Service cards (glass) ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.svc-card {
  background: var(--white);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-200), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold-200); }
.svc-card:hover::before { opacity: 1; }
.svc-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold-100), var(--gold-200));
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.svc-icon svg { width: 30px; height: 30px; stroke: var(--gold-700); }
.svc-card h3 { margin-bottom: 10px; color: var(--black); }
.svc-card p { font-size: 0.95rem; color: var(--ink-700); margin-bottom: 18px; }
.svc-card .link { color: var(--black); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; }
.svc-card .link svg { width: 14px; height: 14px; transition: transform .2s; }
.svc-card:hover .link svg { transform: translateX(4px); }

/* ---------- Two-col ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.two-col.flip > div:first-child { order: 2; }
.two-col .img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
  position: relative;
  background: var(--stone-200);
}
.two-col .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.feature-list { list-style: none; margin-top: 24px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 10px 0;
  color: var(--ink-700);
  font-size: 1.02rem;
}
.feature-list li .dot {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold-100);
  color: var(--gold-700);
  display: grid; place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}
.feature-list li strong { color: var(--black); font-weight: 600; }

/* ---------- Reviews (glass cards) ---------- */
.rv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.rv-card {
  background: var(--white);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: all .3s;
}
.rv-card:hover { box-shadow: var(--shadow); }
.rv-card .stars { color: var(--gold-500); font-size: 1.05rem; margin-bottom: 16px; letter-spacing: 3px; }
.rv-card .quote { font-size: 1.02rem; color: var(--black); line-height: 1.6; margin-bottom: 24px; font-family: 'Archivo'; font-weight: 400; }
.rv-card .who { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--stone-200); }
.rv-card .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--black), var(--ink-700));
  color: var(--gold-400);
  display: grid; place-items: center;
  font-weight: 700; font-family: 'Archivo'; font-size: 0.95rem;
}
.rv-card .who .name { font-weight: 600; color: var(--black); font-size: 0.95rem; }
.rv-card .who .meta { font-size: 0.82rem; color: var(--ink-500); margin-top: 2px; }
.rv-card .theme-tag {
  display: inline-block;
  background: var(--gold-100);
  color: var(--gold-700);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ---------- Trust badges ---------- */
.badge-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; }
.badge-card {
  background: var(--white);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: all .3s;
}
.badge-card:hover { border-color: var(--gold-200); transform: translateY(-2px); }
.badge-card svg { width: 32px; height: 32px; color: var(--gold-600); margin-bottom: 12px; }
.badge-card h4 { font-size: 0.95rem; margin-bottom: 6px; }
.badge-card p { font-size: 0.85rem; color: var(--ink-500); margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--black) 0%, var(--ink-900) 100%);
  color: var(--paper);
  border-radius: var(--radius-xl);
  padding: 60px 50px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: ''; position: absolute; right: -150px; top: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
}
.cta-band::after {
  content: ''; position: absolute; left: -100px; bottom: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.12), transparent 70%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--paper); margin-bottom: 14px; }
.cta-band h2 .accent { color: var(--gold-400); }
.cta-band p { color: rgba(255,255,255,0.78); font-size: 1.05rem; margin: 0; }
.cta-band .ctas { display: flex; gap: 12px; flex-wrap: wrap; justify-self: end; }
.cta-band .btn-gold { background: var(--gold-500); color: var(--black); border-color: var(--gold-500); }
.cta-band .btn-gold:hover { background: var(--gold-400); }

/* ---------- Footer ---------- */
footer { background: var(--black); color: rgba(255,255,255,0.7); padding: 80px 0 32px; }
footer h4 { color: var(--paper); margin-bottom: 16px; font-family: 'Archivo'; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; }
footer a { color: rgba(255,255,255,0.55); display: block; padding: 5px 0; font-size: 0.95rem; transition: color .2s; }
footer a:hover { color: var(--gold-400); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; color: rgba(255,255,255,0.45); }
.footer-tag { color: var(--gold-400); font-weight: 500; }

/* ---------- Forms ---------- */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 0.88rem; color: var(--black); letter-spacing: 0.02em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1.5px solid var(--stone-200);
  background: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  color: var(--black);
  transition: all .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: 0;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px var(--gold-glow);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-success {
  background: var(--gold-100);
  color: var(--gold-700);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-weight: 500;
  display: none;
  margin-top: 16px;
  border: 1px solid var(--gold-200);
}
.form-success.show { display: block; }

/* ---------- Service area chips ---------- */
.chip-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  background: var(--white);
  color: var(--ink-700);
  border: 1px solid var(--stone-200);
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all .2s;
}
.chip:hover { background: var(--black); color: var(--paper); border-color: var(--black); cursor: pointer; transform: translateY(-1px); }

/* ---------- Page hero ---------- */
.page-hero {
  background: var(--black);
  color: var(--paper);
  padding: 90px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(202, 138, 4, 0.20), transparent 60%);
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--paper); margin-bottom: 18px; }
.page-hero h1 .accent { color: var(--gold-400); }
.page-hero p { font-size: 1.15rem; max-width: 700px; margin: 0 auto; color: rgba(255,255,255,0.78); }
.page-hero .eyebrow { display: inline-block; color: var(--gold-400); font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.78rem; margin-bottom: 18px; padding: 6px 14px; background: rgba(234, 179, 8, 0.10); border: 1px solid rgba(234, 179, 8, 0.25); border-radius: var(--radius-pill); }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.step {
  background: var(--white);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  transition: all .3s;
  position: relative;
}
.step:hover { border-color: var(--gold-200); transform: translateY(-3px); box-shadow: var(--shadow); }
.step .step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold-400);
  display: grid; place-items: center;
  font-family: 'Archivo'; font-weight: 700; font-size: 1.1rem;
  margin-bottom: 18px;
  border: 1px solid var(--gold-500);
}
.step h3 { margin-bottom: 8px; font-size: 1.1rem; }
.step p { font-size: 0.92rem; margin: 0; }

/* ---------- Portfolio gallery (for services / design) ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.gallery-item {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--stone-200);
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(0.4, 0, 0.2, 1); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .label {
  position: absolute; left: 14px; right: 14px; bottom: 14px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--black);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid, .two-col, .cta-band, .footer-grid, .form-row {
    grid-template-columns: 1fr;
  }
  .cta-band .ctas { justify-self: start; }
  .two-col.flip > div:first-child { order: 0; }
  .hero { padding: 70px 0 80px; }
  section { padding: 70px 0; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(250,250,249,0.95); backdrop-filter: blur(20px); padding: 16px; border-bottom: 1px solid var(--stone-200); }
  .nav-cta .phone { display: none; }
  .nav-toggle { display: block; }
  .footer-bottom { flex-direction: column; }
  .hero-trust { gap: 20px; }
  .hero-trust .item .num { font-size: 1.3rem; }
}
@media (max-width: 560px) {
  .topbar { font-size: 0.78rem; }
  .topbar .container { justify-content: center; text-align: center; }
  .container { padding: 0 20px; }
  .hero-visual .floating-card { padding: 14px 16px; }
  .hero-visual .floating-card .num { font-size: 1.7rem; }
}

/* ---------- Accessibility ---------- */
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 2px; border-radius: 6px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
