/* ============================================================
   MOT Express — Quick Local MOT & Servicing
   Bright · friendly · honest · teal + warm orange
   ============================================================ */

:root {
  /* Palette — friendly teal + warm orange on crisp white */
  --teal-900: #08363a;
  --teal-800: #0c4a50;
  --teal-700: #0f6068;
  --teal-600: #128089;
  --teal-500: #16a3ad;
  --teal-400: #3cc2cc;
  --teal-300: #7fdce3;
  --teal-100: #d7f4f6;
  --teal-50:  #eefbfc;

  --orange-700: #c8520f;
  --orange-600: #e2640f;
  --orange-500: #f97a16;
  --orange-400: #ff9846;
  --orange-200: #ffd9b8;
  --orange-100: #fff0e1;

  --sun-400: #ffc24a;

  --ink: #11272b;
  --ink-soft: #3d5559;
  --muted: #6c8388;
  --line: rgba(12, 74, 80, 0.10);
  --line-strong: rgba(12, 74, 80, 0.16);

  --white: #ffffff;
  --cloud: #f4fafb;
  --paper: #fbfdfd;

  /* Type */
  --display: "Baloo 2", system-ui, sans-serif;
  --sans: "Nunito Sans", system-ui, sans-serif;

  /* Shape & motion */
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --shadow-sm: 0 4px 16px rgba(12, 74, 80, 0.07);
  --shadow: 0 16px 40px rgba(12, 74, 80, 0.12);
  --shadow-lg: 0 34px 80px rgba(8, 54, 58, 0.20);
  --shadow-orange: 0 14px 34px rgba(226, 100, 15, 0.30);
  --shadow-teal: 0 14px 34px rgba(18, 128, 137, 0.30);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wrap: 1220px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.06; letter-spacing: -0.01em; color: var(--ink); }
h1 { font-size: clamp(2.6rem, 6vw, 4.7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
em { font-style: normal; color: var(--orange-600); }
strong { font-weight: 800; }

.wrap { width: min(100% - 2.4rem, var(--wrap)); margin-inline: auto; }
.section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }
.section-tight { padding: clamp(3rem, 5vw, 4.5rem) 0; }
.cloud { background: var(--cloud); }
.teal-bg { background: linear-gradient(160deg, var(--teal-800), var(--teal-600)); color: #eafafa; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--sans); font-weight: 800; font-size: 0.96rem;
  letter-spacing: 0.005em; padding: 0.95rem 1.7rem; border-radius: 100px;
  cursor: pointer; border: 2px solid transparent;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s, color 0.3s;
  white-space: nowrap;
}
.btn .arr { transition: transform 0.4s var(--ease); display: inline-block; }
.btn:hover .arr { transform: translateX(5px); }
.btn-solid {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: var(--white); box-shadow: var(--shadow-orange);
}
.btn-solid:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(226, 100, 15, 0.42); }
.btn-teal {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  color: var(--white); box-shadow: var(--shadow-teal);
}
.btn-teal:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(18, 128, 137, 0.42); }
.btn-ghost { background: var(--white); border-color: var(--line-strong); color: var(--ink); }
.btn-ghost:hover { border-color: var(--teal-400); color: var(--teal-700); transform: translateY(-2px); }
.btn-light { background: rgba(255,255,255,0.16); color: #fff; border-color: rgba(255,255,255,0.45); backdrop-filter: blur(6px); }
.btn-light:hover { background: var(--white); color: var(--teal-800); transform: translateY(-3px); }
.btn-block { width: 100%; }
.btn-lg { padding: 1.1rem 2rem; font-size: 1.02rem; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--sans); font-weight: 800; font-size: 0.78rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal-600);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; border-radius: 3px; background: var(--orange-500); }
.eyebrow.light { color: var(--teal-300); }
.eyebrow.light::before { background: var(--sun-400); }
.eyebrow.center { justify-content: center; }

.sec-head { max-width: 640px; margin-bottom: 2.8rem; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head p { color: var(--ink-soft); margin-top: 1rem; font-size: 1.08rem; }
.split-head { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2rem; align-items: end; max-width: none; }
.split-head p { color: var(--ink-soft); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: padding 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.site-header.shrink { box-shadow: 0 8px 30px rgba(12,74,80,0.10); border-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.1rem 0; transition: padding 0.35s var(--ease); }
.site-header.shrink .nav { padding: 0.7rem 0; }

.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-badge {
  width: 44px; height: 44px; border-radius: 13px; flex: none;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  box-shadow: var(--shadow-teal);
}
.brand-badge svg { width: 24px; height: 24px; }
.brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-name .b { font-family: var(--display); font-weight: 800; font-size: 1.35rem; color: var(--ink); letter-spacing: -0.01em; }
.brand-name .b span { color: var(--orange-600); }
.brand-name .s { font-size: 0.66rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 0.4rem; }
.nav-links a {
  font-weight: 700; font-size: 0.96rem; color: var(--ink-soft);
  padding: 0.55rem 0.95rem; border-radius: 100px; transition: color 0.25s, background 0.25s;
}
.nav-links a:hover { color: var(--teal-700); background: var(--teal-50); }
.nav-links a.active { color: var(--teal-800); background: var(--teal-100); }

.nav-cta { display: flex; align-items: center; gap: 1.1rem; }
.nav-phone { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 800; color: var(--ink); font-size: 0.95rem; }
.nav-phone svg { width: 18px; height: 18px; color: var(--teal-600); }

.nav-toggle { display: none; width: 46px; height: 46px; border: 1.5px solid var(--line-strong); background: var(--white); border-radius: 13px; cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 22px; height: 2.5px; background: var(--ink); border-radius: 3px; transition: transform 0.35s var(--ease), opacity 0.25s; }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3.5rem, 6vw, 5.5rem); overflow: hidden; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(8px); z-index: 0; opacity: 0.5; pointer-events: none; }
.hero-blob.a { width: 460px; height: 460px; background: radial-gradient(circle, var(--teal-100), transparent 68%); top: -120px; right: -120px; }
.hero-blob.b { width: 380px; height: 380px; background: radial-gradient(circle, var(--orange-100), transparent 68%); bottom: -120px; left: -100px; }
.hero .wrap { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }

.hero h1 { margin: 0.2rem 0 1.1rem; }
.hero-tag { font-size: 1.14rem; color: var(--ink-soft); max-width: 33ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin: 1.8rem 0 1.6rem; }

.hero-trust { display: flex; align-items: center; gap: 0.9rem; flex-wrap: wrap; }
.stars { color: var(--sun-400); letter-spacing: 1px; font-size: 1.05rem; }
.hero-trust .t { font-size: 0.95rem; color: var(--ink-soft); }
.hero-trust .t b { color: var(--ink); }

.hero-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.7rem; }
.chip { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--white); border: 1.5px solid var(--line); border-radius: 100px; padding: 0.5rem 0.95rem; font-weight: 800; font-size: 0.86rem; color: var(--teal-800); box-shadow: var(--shadow-sm); }
.chip svg { width: 16px; height: 16px; color: var(--orange-500); }

/* hero media */
.hero-media { position: relative; }
.hero-frame { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 6px solid #fff; }
.hero-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(8,54,58,0.28)); }
.hero-frame img { width: 100%; aspect-ratio: 4/3.2; object-fit: cover; transform: scale(1.06); transition: transform 0.6s var(--ease); }
.hero-media:hover .hero-frame img { transform: scale(1.12); }

.hero-badge {
  position: absolute; top: -22px; left: -22px; z-index: 3;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: #fff; border-radius: 20px; padding: 0.9rem 1.1rem; box-shadow: var(--shadow-orange);
  border: 3px solid #fff; text-align: center;
}
.hero-badge .n { font-family: var(--display); font-weight: 800; font-size: 1.9rem; line-height: 1; }
.hero-badge .l { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.95; }

.hero-float {
  position: absolute; bottom: -24px; right: -18px; z-index: 3;
  background: #fff; border-radius: 18px; padding: 0.85rem 1.1rem; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 0.75rem; border: 1px solid var(--line);
}
.hero-float .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--teal-100); color: var(--teal-700); display: grid; place-items: center; flex: none; }
.hero-float .ic svg { width: 22px; height: 22px; }
.hero-float .t { display: flex; flex-direction: column; line-height: 1.15; }
.hero-float .t b { font-family: var(--display); font-size: 1.15rem; color: var(--ink); }
.hero-float .t span { font-size: 0.78rem; color: var(--muted); font-weight: 700; }

/* ---------- Logo / trust strip ---------- */
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.trust-strip .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; padding: 1.3rem 0; }
.trust-item { display: flex; align-items: center; gap: 0.7rem; font-weight: 800; color: var(--ink-soft); font-size: 0.95rem; }
.trust-item svg { width: 26px; height: 26px; color: var(--teal-500); flex: none; }

/* ============================================================
   STATS
   ============================================================ */
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.stat { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 1.5rem; text-align: center; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; }
.stat::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--teal-500), var(--orange-500)); }
.stat .n { font-family: var(--display); font-weight: 800; font-size: clamp(2.2rem, 4vw, 3rem); color: var(--teal-700); line-height: 1; display: flex; align-items: baseline; justify-content: center; gap: 1px; }
.stat .suf { color: var(--orange-500); }
.stat .l { font-weight: 800; color: var(--ink-soft); margin-top: 0.5rem; font-size: 0.92rem; }

/* ============================================================
   SERVICES / CARDS
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.svc-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem 1.8rem; box-shadow: var(--shadow-sm); position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--teal-300); }
.svc-ic { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 1.2rem; color: #fff; box-shadow: var(--shadow-teal); }
.svc-ic svg { width: 28px; height: 28px; }
.svc-ic.t1 { background: linear-gradient(135deg, var(--teal-500), var(--teal-700)); }
.svc-ic.t2 { background: linear-gradient(135deg, var(--orange-500), var(--orange-600)); box-shadow: var(--shadow-orange); }
.svc-ic.t3 { background: linear-gradient(135deg, var(--teal-600), var(--teal-800)); }
.svc-card h3 { margin-bottom: 0.5rem; }
.svc-card p { color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 1rem; }
.svc-card .price { font-family: var(--display); font-weight: 800; color: var(--orange-600); font-size: 1.15rem; }
.svc-card .price span { font-size: 0.8rem; color: var(--muted); font-weight: 700; }
.svc-link { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 800; color: var(--teal-700); font-size: 0.92rem; margin-top: 1rem; }
.svc-link .arr { transition: transform 0.35s var(--ease); }
.svc-card:hover .svc-link .arr { transform: translateX(4px); }

/* ============================================================
   FEATURE SPLIT (image + copy)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.flip .split-media { order: 2; }
.split-media { position: relative; }
.split-media .frame { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 6px solid #fff; }
.split-media .frame img { width: 100%; aspect-ratio: 3/3.6; object-fit: cover; transition: transform 0.6s var(--ease); }
.split-media:hover .frame img { transform: scale(1.06); }
.split-media .tag {
  position: absolute; bottom: 22px; left: -16px; background: #fff; border-radius: 16px;
  padding: 0.9rem 1.2rem; box-shadow: var(--shadow); display: flex; align-items: center; gap: 0.8rem; border: 1px solid var(--line);
}
.split-media .tag .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--orange-100); color: var(--orange-600); display: grid; place-items: center; }
.split-media .tag .ic svg { width: 22px; height: 22px; }
.split-media .tag b { font-family: var(--display); display: block; font-size: 1.05rem; }
.split-media .tag span { font-size: 0.8rem; color: var(--muted); font-weight: 700; }

.feat-list { display: grid; gap: 1rem; margin-top: 1.6rem; }
.feat-item { display: flex; gap: 0.9rem; }
.feat-item .tick { width: 30px; height: 30px; border-radius: 9px; background: var(--teal-100); color: var(--teal-700); display: grid; place-items: center; flex: none; }
.feat-item .tick svg { width: 17px; height: 17px; }
.feat-item h4 { font-family: var(--display); font-size: 1.08rem; margin-bottom: 0.15rem; }
.feat-item p { color: var(--ink-soft); font-size: 0.96rem; }

/* ============================================================
   HOW IT WORKS / STEPS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; position: relative; }
.step { text-align: center; position: relative; }
.step .num {
  width: 72px; height: 72px; margin: 0 auto 1.2rem; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--display); font-weight: 800; font-size: 1.5rem; color: var(--teal-800);
  background: var(--white); border: 3px dashed var(--teal-300); position: relative; z-index: 2;
}
.step:hover .num { border-style: solid; border-color: var(--orange-400); color: var(--orange-600); }
.step h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.step p { color: var(--ink-soft); font-size: 0.95rem; }

/* ============================================================
   PRICING TABLE
   ============================================================ */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: stretch; }
.price-card { background: var(--white); border: 1.5px solid var(--line); border-radius: var(--radius-lg); padding: 2.2rem 1.9rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.price-card.featured { border-color: var(--orange-400); box-shadow: var(--shadow); position: relative; }
.price-card.featured::before { content: "Most Popular"; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--orange-500), var(--orange-600)); color: #fff; font-weight: 800; font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.35rem 1rem; border-radius: 100px; box-shadow: var(--shadow-orange); }
.price-card .pname { font-family: var(--display); font-weight: 800; font-size: 1.3rem; }
.price-card .pdesc { color: var(--muted); font-size: 0.92rem; margin-bottom: 1.2rem; }
.price-card .pamount { font-family: var(--display); font-weight: 800; font-size: 2.8rem; color: var(--teal-700); line-height: 1; }
.price-card .pamount small { font-size: 1rem; color: var(--muted); font-weight: 700; }
.price-card ul.plist { display: grid; gap: 0.7rem; margin: 1.5rem 0; }
.price-card ul.plist li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.95rem; color: var(--ink-soft); }
.price-card ul.plist li svg { width: 18px; height: 18px; color: var(--teal-500); flex: none; margin-top: 3px; }
.price-card .btn { margin-top: auto; }

/* ============================================================
   FILTER BAR
   ============================================================ */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.2rem; }
.filter-btn { border: 1.5px solid var(--line-strong); background: var(--white); color: var(--ink-soft); font-weight: 800; font-size: 0.9rem; padding: 0.6rem 1.2rem; border-radius: 100px; cursor: pointer; transition: all 0.3s var(--ease); }
.filter-btn:hover { border-color: var(--teal-400); color: var(--teal-700); }
.filter-btn.active { background: linear-gradient(135deg, var(--teal-500), var(--teal-700)); color: #fff; border-color: transparent; box-shadow: var(--shadow-teal); }
.svc-item.hide { display: none; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.testi { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.9rem; box-shadow: var(--shadow-sm); position: relative; }
.testi .q { font-size: 3.2rem; font-family: var(--display); color: var(--teal-100); line-height: 0.6; position: absolute; top: 1.2rem; right: 1.4rem; }
.testi .stars { font-size: 0.95rem; margin-bottom: 0.8rem; }
.testi p { color: var(--ink-soft); font-size: 0.98rem; }
.testi .who { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.3rem; }
.testi .av { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-family: var(--display); font-weight: 800; color: #fff; flex: none; }
.testi .who b { display: block; font-family: var(--display); }
.testi .who span { font-size: 0.82rem; color: var(--muted); font-weight: 700; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { position: relative; overflow: hidden; border-radius: var(--radius-xl); padding: clamp(2.5rem, 5vw, 4rem); background: linear-gradient(135deg, var(--teal-700), var(--teal-500)); color: #fff; }
.cta-banner .cta-blob { position: absolute; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%); top: -120px; right: -60px; }
.cta-banner .cta-blob.two { background: radial-gradient(circle, rgba(255,194,74,0.30), transparent 70%); bottom: -140px; left: -60px; top: auto; }
.cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-inner h2 { color: #fff; max-width: 16ch; }
.cta-inner p { color: rgba(255,255,255,0.9); margin-top: 0.7rem; max-width: 42ch; }
.cta-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* ============================================================
   BLOG
   ============================================================ */
.featured-post { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 2.5rem; align-items: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 3rem; }
.featured-post .fp-media { overflow: hidden; height: 100%; min-height: 320px; }
.featured-post .fp-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.featured-post:hover .fp-media img { transform: scale(1.05); }
.featured-post .fp-body { padding: 2.2rem 2.4rem 2.2rem 0.4rem; }
.tagline { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 800; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--orange-600); background: var(--orange-100); padding: 0.35rem 0.85rem; border-radius: 100px; }
.post-meta { display: flex; gap: 1rem; align-items: center; color: var(--muted); font-weight: 700; font-size: 0.85rem; margin-top: 1.1rem; }
.post-meta span { display: inline-flex; align-items: center; gap: 0.35rem; }
.post-meta svg { width: 15px; height: 15px; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.post-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post-card .pc-media { height: 200px; overflow: hidden; position: relative; }
.post-card .pc-media .grad { position: absolute; inset: 0; }
.post-card .pc-cat { position: absolute; top: 14px; left: 14px; z-index: 2; background: rgba(255,255,255,0.92); color: var(--teal-800); font-weight: 800; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.06em; padding: 0.3rem 0.75rem; border-radius: 100px; }
.post-card .pc-glyph { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255,255,255,0.85); }
.post-card .pc-glyph svg { width: 64px; height: 64px; }
.post-card .pc-body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.post-card h3 { font-size: 1.22rem; margin-bottom: 0.5rem; }
.post-card p { color: var(--ink-soft); font-size: 0.95rem; flex: 1; }
.post-card .pc-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 1.2rem; padding-top: 1.1rem; border-top: 1px solid var(--line); font-size: 0.82rem; color: var(--muted); font-weight: 700; }
.read-link { color: var(--teal-700); font-weight: 800; display: inline-flex; gap: 0.35rem; align-items: center; }
.read-link .arr { transition: transform 0.35s var(--ease); }
.post-card:hover .read-link .arr { transform: translateX(4px); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.8rem, 3vw, 2.6rem); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 800; font-size: 0.86rem; margin-bottom: 0.4rem; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  padding: 0.85rem 1rem; border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm);
  background: var(--paper); transition: border-color 0.25s, box-shadow 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal-400); box-shadow: 0 0 0 4px var(--teal-100); }
.field textarea { resize: vertical; min-height: 110px; }
[data-form-note] { margin-top: 1rem; font-weight: 800; font-size: 0.95rem; min-height: 1.2em; }
[data-form-note].ok { color: var(--teal-700); }

.info-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: var(--shadow-sm); margin-bottom: 1.4rem; }
.info-row { display: flex; gap: 1rem; align-items: flex-start; padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: 0; padding-bottom: 0; }
.info-row:first-child { padding-top: 0; }
.info-row .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--teal-100); color: var(--teal-700); display: grid; place-items: center; flex: none; }
.info-row .ic svg { width: 22px; height: 22px; }
.info-row b { font-family: var(--display); display: block; font-size: 1.02rem; }
.info-row span, .info-row a { color: var(--ink-soft); font-size: 0.95rem; }
.info-row a:hover { color: var(--teal-700); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 0.55rem 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.hours-table tr:last-child td { border-bottom: 0; }
.hours-table td:last-child { text-align: right; font-weight: 800; color: var(--ink); }
.hours-table td.closed { color: var(--orange-600); }
.hours-table tr.today td { color: var(--teal-700); }
.hours-table tr.today td:first-child::after { content: "Today"; font-size: 0.66rem; font-weight: 800; background: var(--teal-100); color: var(--teal-700); padding: 1px 7px; border-radius: 100px; margin-left: 7px; vertical-align: middle; }

.map-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map-svg { width: 100%; height: auto; display: block; background: var(--teal-50); }

/* ============================================================
   PAGE HERO (sub pages)
   ============================================================ */
.page-hero { position: relative; padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 4vw, 3.5rem); overflow: hidden; background: linear-gradient(160deg, var(--teal-50), var(--paper)); border-bottom: 1px solid var(--line); }
.page-hero .hero-blob.a { top: -160px; right: -120px; opacity: 0.6; }
.page-hero .wrap { position: relative; z-index: 2; text-align: center; }
.page-hero h1 { margin: 0.4rem 0 0.8rem; }
.page-hero p { color: var(--ink-soft); font-size: 1.12rem; max-width: 56ch; margin: 0 auto; }
.crumbs { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 800; font-size: 0.85rem; color: var(--muted); }
.crumbs a:hover { color: var(--teal-700); }
.crumbs .sep { color: var(--line-strong); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--teal-900); color: #c8e6e9; padding: clamp(3rem, 5vw, 4.5rem) 0 2rem; margin-top: 0; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.10); }
.footer-brand .brand-name .b { color: #fff; }
.footer-brand .brand-name .s { color: var(--teal-300); }
.footer-brand p { margin-top: 1.1rem; font-size: 0.95rem; color: #8fbabd; max-width: 34ch; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.3rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,0.07); display: grid; place-items: center; color: #c8e6e9; transition: background 0.25s, transform 0.25s; }
.footer-social a:hover { background: var(--orange-500); color: #fff; transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { font-family: var(--display); color: #fff; font-size: 1.05rem; margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: 0.7rem; }
.footer-col a, .footer-col li { font-size: 0.94rem; color: #9cc4c7; transition: color 0.25s; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 0.6rem; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--teal-400); flex: none; margin-top: 3px; }
.footer-bottom { padding-top: 1.8rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.85rem; color: #7ba6a9; }
.footer-disclaimer { background: rgba(0,0,0,0.22); border-radius: var(--radius); padding: 1rem 1.3rem; margin-top: 1.6rem; font-size: 0.82rem; color: #7ba6a9; line-height: 1.6; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 560px; margin: 1rem auto 0; }
  .hero-tag { max-width: none; }
  .split-head { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .svc-grid, .price-grid, .testi-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 2.5rem; }
  .split { grid-template-columns: 1fr; }
  .split.flip .split-media { order: 0; }
  .split-media { max-width: 520px; margin-inline: auto; }
  .featured-post { grid-template-columns: 1fr; }
  .featured-post .fp-media { min-height: 260px; }
  .featured-post .fp-body { padding: 0 2rem 2.2rem; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.open { position: relative; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch; gap: 0.2rem;
    position: absolute; top: calc(100% + 0.7rem); left: 0; right: 0; z-index: 90;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 0.7rem; box-shadow: var(--shadow);
  }
  .nav.open .nav-links a { padding: 0.85rem 1rem; }
  .nav.open .nav-cta { display: flex; flex-direction: column; align-items: stretch; gap: 0.7rem;
    position: absolute; top: calc(100% + 0.7rem); left: 0; right: 0; z-index: 89; margin-top: 16.5rem; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .svc-grid, .price-grid, .testi-grid, .blog-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .price-card.featured { order: -1; }
}

@media (max-width: 460px) {
  .footer-top { grid-template-columns: 1fr; }
  .hero-badge { left: 0; top: -16px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
