/* ============================================================
   AVH Marketing INC — Design System
   Light & energetic · coral accent · Space Grotesk + Inter
   ============================================================ */

:root {
  /* Brand palette */
  --coral:    #ff5a3c;   /* primary accent */
  --coral-d:  #e8421f;
  --coral-l:  #ff8569;
  --coral-soft:#fff1ec;
  --plum:     #2a1d3a;   /* deep secondary for gradients */

  /* Neutrals */
  --ink:      #16131f;   /* headings */
  --ink-2:    #221c2e;
  --body:     #4b4754;
  --muted:    #857f8d;
  --line:     #ececef;
  --bg:       #ffffff;
  --bg-soft:  #fbf7f5;   /* warm off-white */
  --bg-mist:  #fff4f0;   /* coral tint */
  --white:    #ffffff;
  --dark:     #171320;   /* footer */

  /* Type */
  --font-head: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  /* Spacing / shape */
  --radius:   18px;
  --radius-s: 11px;
  --shadow-sm: 0 2px 12px rgba(22,19,31,.06);
  --shadow:    0 16px 44px rgba(232,66,31,.12);
  --shadow-lg: 0 34px 80px rgba(232,66,31,.22);
  --maxw: 1180px;
  --transition: .3s cubic-bezier(.4,0,.2,1);

  /* Accent gradient surfaces */
  --grad-accent: linear-gradient(155deg, #ff6b4a 0%, #ef4a24 52%, #c4310e 100%);
}

/* Reset */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { max-width: 100%; }
body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
}
h1, h2, h3, h4, p { overflow-wrap: break-word; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.12; font-weight: 700; letter-spacing: -.01em; }

/* Layout helpers */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 70px 0; }
.bg-soft { background: var(--bg-soft); }
.text-center { text-align: center; }

/* Eyebrow + headings */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 13px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--coral-d);
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--coral); border-radius: 2px; }
.eyebrow.center { justify-content: center; }
.section-title { font-size: clamp(28px, 4vw, 45px); color: var(--ink); margin-bottom: 18px; letter-spacing: -.025em; }
.section-lead { font-size: 18px; color: var(--muted); max-width: 640px; }
.section-head.center { text-align: center; }
.section-head.center .section-lead { margin: 0 auto; }
.section-head { margin-bottom: 56px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: 15.5px;
  padding: 15px 30px; border-radius: 999px; cursor: pointer; border: 2px solid transparent;
  transition: var(--transition); white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--coral); color: #fff; box-shadow: 0 12px 28px rgba(255,90,60,.34); }
.btn-primary:hover { background: var(--coral-d); transform: translateY(-2px); box-shadow: 0 18px 38px rgba(255,90,60,.46); }
.btn-light { background: var(--white); color: var(--coral-d); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
/* Ghost = dark outline (used over the light hero) */
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(22,19,31,.18); }
.btn-ghost:hover { border-color: var(--coral); color: var(--coral-d); background: var(--coral-soft); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--coral); color: var(--coral-d); }

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: var(--transition);
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 11px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 13px; flex: none;
  background: var(--grad-accent);
  display: grid; place-items: center; color: #fff; font-family: var(--font-head);
  font-weight: 700; font-size: 21px; box-shadow: 0 8px 20px rgba(255,90,60,.38);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 19px; color: var(--ink); letter-spacing: -.02em; }
.brand-sub { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--coral-d); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-family: var(--font-head); font-weight: 500; font-size: 15.5px; color: var(--ink-2);
  position: relative; transition: color .2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--coral); transition: width .25s; border-radius: 2px;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--coral-d); }
.nav-cta { display: flex; align-items: center; gap: 16px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: var(--transition); }

/* ============================================================
   Hero (light)
   ============================================================ */
.hero {
  position: relative; padding: 188px 0 120px;
  background:
    radial-gradient(900px 480px at 82% -8%, rgba(255,90,60,.16), transparent 60%),
    radial-gradient(700px 460px at 8% 110%, rgba(255,133,105,.14), transparent 55%),
    linear-gradient(180deg, #fffaf8 0%, #ffffff 100%);
  color: var(--body); overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(22,19,31,.045) 1px, transparent 1px);
  background-size: 28px 28px; opacity: .6; pointer-events: none; -webkit-mask-image: linear-gradient(180deg,#000,transparent 75%); mask-image: linear-gradient(180deg,#000,transparent 75%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.hero-glow.g1 { width: 420px; height: 420px; background: rgba(255,90,60,.22); top: -120px; right: -80px; }
.hero-glow.g2 { width: 360px; height: 360px; background: rgba(255,150,110,.20); bottom: -140px; left: -100px; }
.hero-inner { position: relative; z-index: 2; max-width: 780px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  font-size: 13.5px; font-weight: 500; color: var(--ink-2); margin-bottom: 26px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 4px rgba(255,90,60,.18); }
.hero h1 {
  font-size: clamp(38px, 6.2vw, 66px); color: var(--ink); letter-spacing: -.03em; margin-bottom: 24px; font-weight: 700;
}
.hero h1 .grad {
  background: linear-gradient(100deg, var(--coral), var(--coral-d)); -webkit-background-clip: text;
  background-clip: text; color: transparent;
}
.hero p.lead { font-size: 20px; color: var(--body); max-width: 640px; margin-bottom: 38px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-stats { display: flex; gap: 44px; margin-top: 64px; flex-wrap: wrap; position: relative; z-index: 2; }
.hero-stat .num { font-family: var(--font-head); font-weight: 700; font-size: 38px; color: var(--ink); letter-spacing: -.02em; }
.hero-stat .num .accent { color: var(--coral); }
.hero-stat .lbl { font-size: 14px; color: var(--muted); }

/* Split hero layout */
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.hero-copy { max-width: 600px; }
.hero-copy .hero-actions { margin-top: 4px; }

/* Hero results panel (white glass card) */
.hero-panel { position: relative; }
.hp-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: 24px;
  padding: 34px; box-shadow: var(--shadow-lg); overflow: hidden;
}
.hp-spark { position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(255,90,60,.18), transparent 70%); }
.hp-head { display: flex; gap: 14px; align-items: center; margin-bottom: 24px; padding-bottom: 22px; border-bottom: 1px solid var(--line); position: relative; }
.hp-ico { flex: none; width: 50px; height: 50px; border-radius: 14px; background: var(--grad-accent); color: #fff; display: grid; place-items: center; box-shadow: 0 8px 18px rgba(255,90,60,.32); }
.hp-ico svg { width: 26px; height: 26px; }
.hp-head strong { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--ink); display: block; letter-spacing: -.01em; }
.hp-head span { font-size: 13.5px; color: var(--muted); }
.hp-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; position: relative; }
.hp-stats > div { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; transition: var(--transition); }
.hp-stats > div:hover { border-color: rgba(255,90,60,.4); transform: translateY(-3px); }
.hp-stats b { font-family: var(--font-head); font-weight: 700; font-size: 30px; color: var(--coral-d); display: block; letter-spacing: -.02em; line-height: 1.1; }
.hp-stats span { font-size: 13px; color: var(--muted); }
.hp-foot { display: flex; gap: 9px; align-items: center; margin-top: 22px; font-size: 14px; font-weight: 500; color: var(--ink-2); }
.hp-foot svg { width: 17px; height: 17px; color: var(--coral-d); flex: none; }

/* ============================================================
   Trust / clients strip
   ============================================================ */
.trust { padding: 36px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.trust-row { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.trust-label { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; font-family: var(--font-head); }
.trust-items { display: flex; gap: 40px; flex-wrap: wrap; align-items: center; }
.trust-items span { font-family: var(--font-head); font-weight: 700; font-size: 19px; color: var(--ink-2); letter-spacing: -.02em; }

/* ============================================================
   Service cards
   ============================================================ */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.service-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px 32px; transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: var(--grad-accent); transform: scaleX(0);
  transform-origin: left; transition: transform .35s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 62px; height: 62px; border-radius: 16px; display: grid; place-items: center;
  background: var(--coral-soft); color: var(--coral-d);
  margin-bottom: 24px;
}
.service-icon svg { width: 30px; height: 30px; }
.service-card h3 { font-size: 21px; margin-bottom: 12px; }
.service-card p { font-size: 15.5px; color: var(--body); margin-bottom: 18px; }
.service-card .more { font-family: var(--font-head); font-weight: 600; font-size: 14.5px; color: var(--coral-d); display: inline-flex; gap: 6px; align-items: center; }
.service-card .more svg { width: 16px; height: 16px; transition: transform .25s; }
.service-card:hover .more svg { transform: translateX(4px); }

/* ============================================================
   Why / feature list
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature-list { display: grid; gap: 22px; margin-top: 30px; }
.feature-item { display: flex; gap: 16px; }
.feature-check {
  flex: none; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: var(--coral-soft); color: var(--coral-d);
}
.feature-check svg { width: 20px; height: 20px; }
.feature-item h4 { font-size: 17px; margin-bottom: 4px; color: var(--ink); }
.feature-item p { font-size: 15px; color: var(--muted); }

.visual-card {
  position: relative; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg);
  background: var(--grad-accent);
  padding: 44px; color: #fff; min-height: 420px; display: flex; flex-direction: column; justify-content: space-between;
}
.visual-card .vc-glow { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,.22); filter: blur(70px); top: -60px; right: -60px; }
.vc-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; position: relative; z-index: 2; }
.vc-stat { background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.2); border-radius: 14px; padding: 22px; backdrop-filter: blur(4px); }
.vc-stat .n { font-family: var(--font-head); font-weight: 700; font-size: 32px; color: #fff; letter-spacing: -.02em; }
.vc-stat .l { font-size: 13.5px; color: rgba(255,255,255,.85); }
.vc-quote { position: relative; z-index: 2; font-size: 18px; font-weight: 500; color: #fff; }

/* ============================================================
   Process steps
   ============================================================ */
.steps { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 26px; counter-reset: step; }
/* connecting timeline line behind the step numbers */
.steps::before {
  content: ""; position: absolute; top: 37px; left: 12%; right: 12%; height: 2px; z-index: 0;
  background: repeating-linear-gradient(90deg, var(--coral-l) 0 9px, transparent 9px 18px); opacity: .55;
}
.step { position: relative; z-index: 1; padding-top: 14px; }
.step .step-num {
  font-family: var(--font-head); font-weight: 700; font-size: 17px; color: #fff;
  width: 46px; height: 46px; border-radius: 50%; border: 4px solid #fff;
  display: grid; place-items: center; margin-bottom: 20px; background: var(--grad-accent);
  box-shadow: 0 8px 20px rgba(255,90,60,.3);
}
.step h4 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--muted); }

/* Numbered service cards */
.grid-3 { counter-reset: svc; }
.service-card { counter-increment: svc; }
.service-card::after {
  content: counter(svc, decimal-leading-zero); position: absolute; top: 24px; right: 28px;
  font-family: var(--font-head); font-weight: 700; font-size: 42px; line-height: 1;
  color: rgba(255,90,60,.13); pointer-events: none;
}

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  background:
    radial-gradient(700px 360px at 82% 0%, rgba(255,255,255,.18), transparent 60%),
    var(--grad-accent);
  border-radius: 30px; padding: 64px; text-align: center; color: #fff; position: relative; overflow: hidden;
}
.cta-band h2 { color: #fff; font-size: clamp(26px,3.5vw,40px); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,.9); font-size: 18px; max-width: 560px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
/* Ghost button turns light inside the coral CTA band */
.cta-band .btn-ghost { color: #fff; border-color: rgba(255,255,255,.45); }
.cta-band .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.12); color: #fff; }
.cta-band .btn-primary { background: #fff; color: var(--coral-d); box-shadow: 0 12px 28px rgba(0,0,0,.18); }
.cta-band .btn-primary:hover { background: #fff; color: var(--coral-d); transform: translateY(-2px); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--dark); color: #b3acc0; padding: 70px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: var(--coral-l); }
.footer-about { font-size: 15px; margin: 18px 0; max-width: 320px; color: #948da6; }
.footer-col h5 { color: #fff; font-family: var(--font-head); font-size: 15px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: 15px; color: #b3acc0; transition: color .2s; }
.footer-col a:hover { color: var(--coral-l); }
.footer-contact li { display: flex; gap: 12px; font-size: 15px; margin-bottom: 13px; color: #c3bcd2; }
.footer-contact svg { width: 18px; height: 18px; color: var(--coral); flex: none; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 14px; color: #837c95; }

/* ============================================================
   Page hero (inner pages, light)
   ============================================================ */
.page-hero {
  padding: 168px 0 80px; text-align: center; color: var(--body); position: relative; overflow: hidden;
  background:
    radial-gradient(800px 380px at 50% -20%, rgba(255,90,60,.16), transparent 60%),
    linear-gradient(180deg, #fffaf8 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { color: var(--ink); font-size: clamp(32px,5vw,54px); letter-spacing: -.03em; margin-bottom: 14px; }
.page-hero p { color: var(--muted); font-size: 18px; max-width: 560px; margin: 0 auto; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; font-size: 14px; color: var(--muted); margin-top: 18px; }
.breadcrumb a:hover { color: var(--coral-d); }

/* ============================================================
   About — story / values / team
   ============================================================ */
.about-img {
  border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); position: relative;
  min-height: 440px; background: var(--grad-accent);
}
.about-img .ai-glow { position: absolute; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,.22); filter: blur(70px); bottom: -80px; left: -60px; }
.about-img .ai-badge {
  position: absolute; bottom: 26px; left: 26px; right: 26px; z-index: 2;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(6px);
  border-radius: 16px; padding: 22px 24px; color: #fff;
}
.about-img .ai-badge .n { font-family: var(--font-head); font-weight: 700; font-size: 30px; }
.about-img .ai-badge .l { font-size: 14px; color: rgba(255,255,255,.85); }
.about-img .ai-center {
  position: absolute; inset: 0; display: grid; place-items: center; z-index: 1; color: #fff; text-align: center;
}
.about-img .ai-center .mark {
  width: 110px; height: 110px; border-radius: 28px; display: grid; place-items: center; margin: 0 auto 18px;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.25); font-family: var(--font-head);
  font-weight: 700; font-size: 52px; box-shadow: 0 20px 50px rgba(0,0,0,.18);
}
.about-img .ai-center .est { font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.9); font-family: var(--font-head); font-weight: 600; }

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mv-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 38px 34px;
}
.mv-card .service-icon { margin-bottom: 22px; }
.mv-card h3 { font-size: 22px; margin-bottom: 12px; }
.mv-card p { font-size: 16px; color: var(--body); }

.value-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px;
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.value-card .vc-ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--coral-soft); color: var(--coral-d); margin-bottom: 18px; }
.value-card .vc-ico svg { width: 26px; height: 26px; }
.value-card h4 { font-size: 18px; margin-bottom: 8px; }
.value-card p { font-size: 15px; color: var(--muted); }

/* Stats band */
.stats-band { background: var(--grad-accent); border-radius: 26px; padding: 54px 40px; }
.stats-band .grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; text-align: center; }
.stats-band .sb-num { font-family: var(--font-head); font-weight: 700; font-size: 42px; color: #fff; letter-spacing: -.02em; }
.stats-band .sb-num .accent { color: #ffe2d8; }
.stats-band .sb-lbl { font-size: 15px; color: rgba(255,255,255,.88); margin-top: 4px; }

/* ============================================================
   Services — detailed rows
   ============================================================ */
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 60px 0; border-bottom: 1px solid var(--line); }
.svc-row:last-child { border-bottom: 0; }
.svc-row.flip .svc-media { order: 2; }
.svc-num { font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--coral-d); letter-spacing: .1em; }
.svc-row h2 { font-size: clamp(26px,3vw,36px); margin: 10px 0 16px; }
.svc-row > div > p { font-size: 16.5px; color: var(--body); margin-bottom: 24px; }
.svc-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.svc-checks li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--ink); font-weight: 500; }
.svc-checks svg { width: 18px; height: 18px; color: var(--coral-d); flex: none; margin-top: 4px; }
.svc-media {
  border-radius: 22px; min-height: 360px; position: relative; overflow: hidden;
  background: var(--grad-accent); display: grid; place-items: center;
  box-shadow: var(--shadow);
}
.svc-media .sm-glow { position: absolute; width: 280px; height: 280px; border-radius: 50%; background: rgba(255,255,255,.22); filter: blur(70px); top: -50px; right: -50px; }
.svc-media .sm-ico { width: 120px; height: 120px; border-radius: 30px; display: grid; place-items: center; z-index: 2;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.25); color: #fff; }
.svc-media .sm-ico svg { width: 58px; height: 58px; }

/* ============================================================
   Contact — cards / form / map
   ============================================================ */
.contact-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.contact-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 28px;
  text-align: center; transition: var(--transition);
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.contact-card .cc-ico { width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; margin: 0 auto 18px;
  background: var(--coral-soft); color: var(--coral-d); }
.contact-card .cc-ico svg { width: 28px; height: 28px; }
.contact-card h4 { font-size: 18px; margin-bottom: 6px; }
.contact-card p, .contact-card a { font-size: 15.5px; color: var(--body); }
.contact-card a:hover { color: var(--coral-d); }

.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: stretch; }
.form-wrap { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-sm); }
.form-wrap h3 { font-size: 24px; margin-bottom: 8px; }
.form-wrap > p { font-size: 15.5px; color: var(--muted); margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 500; font-size: 14px; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-s);
  font-family: var(--font-body); font-size: 15.5px; color: var(--ink); background: var(--bg-soft); transition: var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--coral); background: #fff; box-shadow: 0 0 0 4px rgba(255,90,60,.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; }
.form-success {
  display: none; background: var(--coral-soft); border: 1px solid rgba(255,90,60,.35); color: var(--coral-d);
  border-radius: var(--radius-s); padding: 16px 18px; font-weight: 600; font-size: 15px; margin-bottom: 20px;
}
.form-success.show { display: block; }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); min-height: 420px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

.hours-list { display: grid; gap: 10px; margin-top: 22px; }
.hours-list li { display: flex; justify-content: space-between; font-size: 15px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.hours-list li span:first-child { color: var(--muted); }
.hours-list li span:last-child { font-weight: 600; color: var(--ink); }

@media (max-width: 940px) {
  .mv-grid, .contact-split, .svc-checks { grid-template-columns: 1fr; }
  .svc-row { grid-template-columns: 1fr; gap: 34px; }
  .svc-row.flip .svc-media { order: 0; }
  .contact-cards { grid-template-columns: 1fr; }
  .stats-band .grid-4 { grid-template-columns: 1fr 1fr; gap: 26px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 940px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-copy { max-width: none; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 4px; position: absolute; top: 100%; left: 16px; right: 16px;
    background: #fff; border-radius: 16px; padding: 18px; box-shadow: var(--shadow); margin-top: 12px;
  }
  .nav-links.open a { color: var(--ink); padding: 10px 6px; }
  .section { padding: 70px 0; }
  .grid-3, .grid-2, .steps, .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 140px 0 80px; }
  .hero h1 { font-size: clamp(30px, 8.5vw, 40px); }
  .hero p.lead { font-size: 17px; }
  .hero-stats { gap: 24px 28px; }
  .hero-stat .num { font-size: 32px; }
  .page-hero h1 { font-size: clamp(28px, 8vw, 40px); }
  .cta-band { padding: 44px 24px; }
  .footer-bottom { flex-direction: column; }
}
