/* ============================================================
   Fortress Security — Locksmith & Home-Security Design System
   Deep navy / near-black with a confident amber accent.
   Secure. Trustworthy. Sharp. Safety you can feel.
   ============================================================ */

:root {
  /* Palette — fortress navy, steel, signal amber */
  --navy-950: #070b16;
  --navy-900: #0a0f1f;
  --navy-850: #0d1426;
  --navy-800: #111a31;
  --navy-700: #16223f;
  --navy-600: #1d2d52;
  --steel-500: #43577e;
  --steel-400: #6a7da3;
  --steel-300: #9aabc8;
  --steel-200: #c4cfe2;
  --amber-600: #c2820f;
  --amber-500: #e8a317;
  --amber-400: #ffba33;
  --amber-300: #ffce6b;
  --amber-glow: rgba(232, 163, 23, 0.28);
  --paper: #f6f7fb;
  --paper-2: #eceef6;
  --white: #ffffff;
  --ink: #0a0f1f;
  --ink-soft: #2a3654;
  --muted: #5d6c8c;
  --line: rgba(255, 255, 255, 0.09);
  --line-dark: rgba(10, 15, 31, 0.10);

  /* Type */
  --display: "Sora", system-ui, sans-serif;
  --sans: "Plus Jakarta Sans", system-ui, sans-serif;

  /* Shape & motion */
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --shadow-sm: 0 4px 18px rgba(5, 9, 20, 0.18);
  --shadow: 0 18px 48px rgba(5, 9, 20, 0.30);
  --shadow-lg: 0 40px 90px rgba(3, 6, 16, 0.55);
  --shadow-amber: 0 14px 40px rgba(232, 163, 23, 0.30);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wrap: 1240px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html.smooth { scroll-behavior: smooth; }
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; }
svg { display: block; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--ink);
}
h1 { font-size: clamp(2.7rem, 6.2vw, 5.1rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 600; }
strong, b { font-weight: 700; }

.wrap { width: min(100% - 2.6rem, var(--wrap)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }
.section.tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.dark-sec { background: var(--navy-900); color: var(--steel-200); }
.dark-sec h1, .dark-sec h2, .dark-sec h3 { color: var(--white); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--display); font-weight: 700;
  font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amber-600);
}
.dark-sec .eyebrow { color: var(--amber-400); }
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: currentColor; border-radius: 2px;
}

.lede { font-size: 1.08rem; color: var(--muted); max-width: 56ch; }
.dark-sec .lede { color: var(--steel-300); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--display); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.005em; padding: 0.95rem 1.7rem; border-radius: 10px;
  cursor: pointer; border: 1.5px solid transparent; position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.btn .arr { transition: transform 0.4s var(--ease); }
.btn:hover .arr { transform: translateX(5px); }
.btn-solid {
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
  color: #1a1304; box-shadow: var(--shadow-amber);
}
.btn-solid:hover { transform: translateY(-3px); box-shadow: 0 22px 50px rgba(232, 163, 23, 0.42); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--white); }
.btn-ghost:hover { border-color: var(--amber-400); color: var(--amber-300); transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--navy-900); border-color: transparent; box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-dark { background: var(--navy-900); color: var(--white); }
.btn-dark:hover { transform: translateY(-3px); box-shadow: var(--shadow); background: var(--navy-800); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7, 11, 22, 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
  transition: padding 0.4s var(--ease), background 0.4s var(--ease);
}
.site-header.shrink { background: rgba(7, 11, 22, 0.94); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.4rem; padding: 1.15rem 0; transition: padding 0.4s var(--ease);
}
.site-header.shrink .nav { padding: 0.7rem 0; }

.brand { display: inline-flex; align-items: center; gap: 0.65rem; color: var(--white); }
.brand-badge {
  width: 38px; height: 38px; flex: none; display: grid; place-items: center;
  border-radius: 9px; background: linear-gradient(150deg, var(--amber-500), var(--amber-600));
  box-shadow: 0 6px 18px rgba(232, 163, 23, 0.4);
}
.brand-badge svg { width: 21px; height: 21px; color: #1a1304; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--display); font-weight: 800; font-size: 1.16rem; letter-spacing: -0.02em; }
.brand-name span { color: var(--amber-400); }
.brand-sub { font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--steel-400); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 0.4rem; }
.nav-links a {
  display: inline-block; padding: 0.55rem 0.95rem; border-radius: 8px;
  font-family: var(--display); font-weight: 500; font-size: 0.92rem;
  color: var(--steel-300); transition: color 0.25s, background 0.25s;
}
.nav-links a:hover { color: var(--white); background: rgba(255, 255, 255, 0.05); }
.nav-links a.active { color: var(--amber-400); }

.nav-cta { display: flex; align-items: center; gap: 1.1rem; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--display); font-weight: 600; font-size: 0.92rem; color: var(--white);
}
.nav-phone svg { width: 16px; height: 16px; color: var(--amber-400); }
.nav-phone small { display: block; font-size: 0.62rem; letter-spacing: 0.14em; color: var(--steel-400); text-transform: uppercase; font-weight: 500; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px;
  align-items: center; justify-content: center; background: rgba(255,255,255,0.06);
  border: 1px solid var(--line); border-radius: 10px; cursor: pointer;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.25s; }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 600px at 78% -10%, rgba(232,163,23,0.16), transparent 60%),
    radial-gradient(900px 700px at 8% 110%, rgba(29,45,82,0.9), transparent 55%),
    linear-gradient(180deg, var(--navy-950), var(--navy-850));
  color: var(--steel-200);
  padding: clamp(3.5rem, 7vw, 6.5rem) 0 clamp(5rem, 9vw, 8rem);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-copy h1 { color: var(--white); margin: 1.1rem 0 1.3rem; }
.hero-copy h1 em { font-style: normal; color: var(--amber-400); position: relative; white-space: nowrap; }
.hero-copy h1 em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0.05em; height: 0.13em;
  background: linear-gradient(90deg, var(--amber-500), transparent); border-radius: 2px;
}
.hero-tag { font-size: 1.1rem; color: var(--steel-300); max-width: 50ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin: 2rem 0 1.9rem; }
.hero-trust { display: flex; align-items: center; gap: 0.9rem; flex-wrap: wrap; font-size: 0.92rem; color: var(--steel-300); }
.hero-trust .stars { color: var(--amber-400); letter-spacing: 2px; font-size: 1rem; }
.hero-trust b { color: var(--white); }
.hero-badges { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.45rem 0.9rem;
  border-radius: 100px; border: 1px solid var(--line); background: rgba(255,255,255,0.04);
  font-family: var(--display); font-weight: 500; font-size: 0.78rem; color: var(--steel-200);
}
.chip svg { width: 15px; height: 15px; color: var(--amber-400); }

.hero-media { position: relative; }
.hero-frame {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
  transform: perspective(1400px) rotateY(-6deg) rotateX(1.5deg);
  transition: transform 0.6s var(--ease);
}
.hero-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7,11,22,0.55));
  pointer-events: none;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 5 / 6; will-change: transform; }
.hero-media:hover .hero-frame { transform: perspective(1400px) rotateY(-3deg) rotateX(1deg); }

.hero-pill {
  position: absolute; left: -22px; bottom: 38px; z-index: 3;
  display: flex; align-items: center; gap: 0.75rem; padding: 0.85rem 1.1rem;
  background: rgba(13, 20, 38, 0.86); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow);
}
.hero-pill .dot { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: linear-gradient(150deg, var(--amber-500), var(--amber-600)); }
.hero-pill .dot svg { width: 20px; height: 20px; color: #1a1304; }
.hero-pill b { display: block; color: var(--white); font-family: var(--display); font-size: 1.05rem; }
.hero-pill span span { color: var(--steel-400); font-size: 0.8rem; }
.hero-rating {
  position: absolute; right: -16px; top: 30px; z-index: 3;
  padding: 0.7rem 1rem; background: rgba(13,20,38,0.86); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); text-align: center;
}
.hero-rating .num { font-family: var(--display); font-weight: 800; font-size: 1.5rem; color: var(--amber-400); }
.hero-rating .lbl { font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--steel-400); }

/* response strip */
.respond-strip { background: var(--navy-800); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.respond-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem 2rem; padding: 1.2rem 0; }
.respond-item { display: inline-flex; align-items: center; gap: 0.65rem; color: var(--steel-200); font-family: var(--display); font-weight: 500; font-size: 0.92rem; }
.respond-item svg { width: 19px; height: 19px; color: var(--amber-400); }

/* ---------- Stats ---------- */
.stats { background: var(--navy-900); }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 3vw, 2rem); }
.stat { text-align: center; padding: 1.4rem 1rem; border-radius: var(--radius-lg); border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,0.035), transparent); }
.stat .n { font-family: var(--display); font-weight: 800; font-size: clamp(2.3rem, 4.5vw, 3.4rem); color: var(--white); line-height: 1; letter-spacing: -0.03em; }
.stat .n .suf, .stat .n .pre { color: var(--amber-400); }
.stat .l { margin-top: 0.5rem; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--steel-400); }

/* ---------- Section heads ---------- */
.sec-head { max-width: 60ch; margin-bottom: 3rem; }
.sec-head h2 { margin-top: 0.9rem; }
.split-head { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2rem 3rem; align-items: end; max-width: none; }
.split-head p { color: var(--muted); }
.dark-sec .split-head p { color: var(--steel-300); }

/* ---------- Service cards ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.svc-card {
  position: relative; padding: 2rem 1.8rem; border-radius: var(--radius-lg);
  background: var(--white); border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s;
}
.svc-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 4px;
  background: linear-gradient(180deg, var(--amber-500), var(--amber-600));
  transform: scaleY(0); transform-origin: top; transition: transform 0.45s var(--ease);
}
.svc-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: rgba(232,163,23,0.4); }
.svc-card:hover::before { transform: scaleY(1); }
.svc-ic {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--navy-800), var(--navy-600));
  margin-bottom: 1.2rem; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
.svc-ic svg { width: 26px; height: 26px; color: var(--amber-400); }
.svc-card h3 { margin-bottom: 0.55rem; }
.svc-card p { color: var(--muted); font-size: 0.96rem; }
.svc-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.1rem; font-family: var(--display); font-weight: 600; font-size: 0.86rem; color: var(--amber-600); }
.svc-link .arr { transition: transform 0.3s var(--ease); }
.svc-card:hover .svc-link .arr { transform: translateX(4px); }

/* ---------- Feature split (image + copy) ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.feature.flip .feature-media { order: 2; }
.feature-media { position: relative; }
.zoom-frame {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line-dark);
}
.zoom-frame img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform 1.1s var(--ease); }
.zoom-frame:hover img { transform: scale(1.07); }
.zoom-frame.wide img { aspect-ratio: 4 / 3; }
.feature-media .stamp {
  position: absolute; right: -14px; bottom: -14px; z-index: 3;
  background: var(--navy-900); color: var(--white); border: 1px solid var(--line);
  border-radius: 16px; padding: 1.1rem 1.3rem; box-shadow: var(--shadow); max-width: 220px;
}
.feature-media .stamp .big { font-family: var(--display); font-weight: 800; font-size: 1.7rem; color: var(--amber-400); }
.feature-media .stamp .sm { font-size: 0.82rem; color: var(--steel-300); }

.feature-copy h2 { margin: 0.9rem 0 1.2rem; }
.feature-copy p { color: var(--muted); margin-bottom: 1rem; }
.dark-sec .feature-copy p { color: var(--steel-300); }
.check-list { display: grid; gap: 0.75rem; margin: 1.5rem 0; }
.check-list li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.98rem; }
.check-list .ic { flex: none; width: 24px; height: 24px; border-radius: 7px; display: grid; place-items: center; background: rgba(232,163,23,0.14); margin-top: 1px; }
.check-list .ic svg { width: 14px; height: 14px; color: var(--amber-600); }
.dark-sec .check-list .ic { background: rgba(232,163,23,0.18); }
.dark-sec .check-list .ic svg { color: var(--amber-400); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: step; }
.step { position: relative; padding: 2rem 1.5rem 1.7rem; border-radius: var(--radius-lg); background: rgba(255,255,255,0.03); border: 1px solid var(--line); }
.step .num { font-family: var(--display); font-weight: 800; font-size: 2.4rem; color: var(--amber-400); line-height: 1; opacity: 0.85; }
.step h3 { color: var(--white); margin: 0.8rem 0 0.5rem; }
.step p { color: var(--steel-300); font-size: 0.92rem; }
.step .line { position: absolute; top: 2.5rem; right: -0.85rem; width: 1.7rem; height: 2px; background: linear-gradient(90deg, var(--amber-500), transparent); }

/* ---------- Trust / reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.review {
  padding: 1.9rem 1.7rem; border-radius: var(--radius-lg); background: var(--white);
  border: 1px solid var(--line-dark); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.review .stars { color: var(--amber-500); letter-spacing: 2px; margin-bottom: 0.8rem; }
.review p { color: var(--ink-soft); font-size: 1rem; flex: 1; }
.review .who { display: flex; align-items: center; gap: 0.7rem; margin-top: 1.3rem; padding-top: 1.2rem; border-top: 1px solid var(--line-dark); }
.review .avatar { width: 40px; height: 40px; border-radius: 50%; flex: none; display: grid; place-items: center; font-family: var(--display); font-weight: 700; color: var(--white); background: linear-gradient(150deg, var(--navy-700), var(--steel-500)); font-size: 0.95rem; }
.review .who b { display: block; font-family: var(--display); font-size: 0.94rem; }
.review .who span { font-size: 0.82rem; color: var(--muted); }

/* ---------- Badges row ---------- */
.cred-row { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cred {
  display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.75rem 1.3rem;
  border-radius: 100px; border: 1px solid var(--line); background: rgba(255,255,255,0.03);
  font-family: var(--display); font-weight: 600; font-size: 0.88rem; color: var(--steel-200);
}
.cred svg { width: 18px; height: 18px; color: var(--amber-400); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; border-radius: var(--radius-xl);
  background:
    radial-gradient(700px 400px at 85% 0%, rgba(232,163,23,0.22), transparent 60%),
    linear-gradient(135deg, var(--navy-800), var(--navy-950));
  border: 1px solid var(--line); padding: clamp(2.5rem, 6vw, 4.5rem);
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2rem; align-items: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: var(--steel-300); margin-top: 0.9rem; }
.cta-actions { display: flex; flex-direction: column; gap: 0.9rem; }
.cta-band .phone-big { font-family: var(--display); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--amber-400); letter-spacing: -0.02em; }
.cta-band .phone-sub { font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--steel-400); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: var(--steel-300); padding: clamp(3.5rem, 6vw, 5rem) 0 2rem; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer-brand .brand { margin-bottom: 1.1rem; }
.footer-brand p { color: var(--steel-400); font-size: 0.94rem; max-width: 34ch; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.3rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; border: 1px solid var(--line); color: var(--steel-300); transition: all 0.3s var(--ease); }
.footer-social a:hover { color: var(--navy-900); background: var(--amber-400); border-color: var(--amber-400); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; }
.footer-col h4 { color: var(--white); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1.1rem; font-family: var(--display); }
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a, .footer-col li { color: var(--steel-400); font-size: 0.92rem; transition: color 0.25s; }
.footer-col a:hover { color: var(--amber-400); }
.footer-col .ic-line { display: flex; align-items: flex-start; gap: 0.6rem; }
.footer-col .ic-line svg { width: 16px; height: 16px; color: var(--amber-400); margin-top: 3px; flex: none; }
.footer-bottom { margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.82rem; color: var(--steel-500); }
.footer-disc { margin-top: 1rem; font-size: 0.76rem; color: var(--steel-500); line-height: 1.6; max-width: 90ch; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(900px 500px at 80% -20%, rgba(232,163,23,0.14), transparent 60%),
    linear-gradient(180deg, var(--navy-950), var(--navy-850));
  color: var(--steel-200); padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(3rem, 5vw, 4.5rem);
  border-bottom: 1px solid var(--line);
}
.page-hero .crumb { font-family: var(--display); font-weight: 500; font-size: 0.82rem; color: var(--steel-400); margin-bottom: 1rem; }
.page-hero .crumb a:hover { color: var(--amber-400); }
.page-hero h1 { color: var(--white); max-width: 18ch; }
.page-hero p { color: var(--steel-300); margin-top: 1.2rem; max-width: 56ch; font-size: 1.08rem; }

/* ---------- Services page: filter + pricing ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.4rem; }
.filter-btn {
  font-family: var(--display); font-weight: 600; font-size: 0.86rem; padding: 0.6rem 1.2rem;
  border-radius: 100px; border: 1.5px solid var(--line-dark); background: var(--white);
  color: var(--ink-soft); cursor: pointer; transition: all 0.3s var(--ease);
}
.filter-btn:hover { border-color: var(--amber-500); color: var(--amber-600); }
.filter-btn.active { background: var(--navy-900); color: var(--white); border-color: var(--navy-900); }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.price-card {
  display: flex; flex-direction: column; padding: 1.9rem 1.7rem; border-radius: var(--radius-lg);
  background: var(--white); border: 1px solid var(--line-dark); box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), opacity 0.4s, border-color 0.3s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card.hide { display: none; }
.price-card .tag { display: inline-flex; width: fit-content; align-items: center; gap: 0.4rem; font-family: var(--display); font-weight: 600; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.7rem; border-radius: 100px; background: rgba(67,87,126,0.12); color: var(--steel-500); margin-bottom: 1.1rem; }
.price-card.featured { border-color: var(--amber-500); box-shadow: 0 18px 48px rgba(232,163,23,0.18); position: relative; }
.price-card.featured .tag { background: rgba(232,163,23,0.16); color: var(--amber-600); }
.price-card h3 { margin-bottom: 0.4rem; }
.price-card .desc { color: var(--muted); font-size: 0.92rem; min-height: 3.2em; }
.price-card .price { font-family: var(--display); font-weight: 800; font-size: 2.4rem; color: var(--navy-900); margin: 1.1rem 0 0.2rem; letter-spacing: -0.03em; }
.price-card .price small { font-size: 0.9rem; font-weight: 600; color: var(--muted); }
.price-card .from { font-size: 0.78rem; color: var(--muted); margin-bottom: 1.2rem; }
.price-card ul { display: grid; gap: 0.6rem; margin-bottom: 1.6rem; flex: 1; }
.price-card ul li { display: flex; gap: 0.55rem; font-size: 0.92rem; color: var(--ink-soft); }
.price-card ul li svg { width: 16px; height: 16px; color: var(--amber-600); flex: none; margin-top: 4px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.form-card { background: var(--white); border: 1px solid var(--line-dark); border-radius: var(--radius-xl); padding: clamp(1.8rem, 4vw, 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-family: var(--display); font-weight: 600; font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 0.45rem; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 0.96rem; color: var(--ink);
  padding: 0.85rem 1rem; border: 1.5px solid var(--line-dark); border-radius: 11px;
  background: var(--paper); transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--amber-500); background: var(--white); box-shadow: 0 0 0 4px rgba(232,163,23,0.14); }
[data-form-note] { margin-top: 1rem; padding: 0.9rem 1.1rem; border-radius: 11px; font-size: 0.9rem; font-weight: 600; display: none; }
[data-form-note].show { display: block; }
[data-form-note].ok { display: block; background: rgba(232,163,23,0.12); color: var(--amber-600); border: 1px solid rgba(232,163,23,0.4); }

.info-card { padding: 1.8rem; border-radius: var(--radius-lg); background: var(--navy-900); color: var(--steel-200); border: 1px solid var(--line); margin-bottom: 1.4rem; }
.info-card h3 { color: var(--white); margin-bottom: 1.2rem; }
.nap-line { display: flex; align-items: flex-start; gap: 0.8rem; margin-bottom: 1rem; }
.nap-line svg { width: 19px; height: 19px; color: var(--amber-400); flex: none; margin-top: 3px; }
.nap-line b { color: var(--white); display: block; font-family: var(--display); font-size: 0.94rem; }
.nap-line span { font-size: 0.92rem; color: var(--steel-300); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 0.6rem 0; border-bottom: 1px solid var(--line); font-size: 0.92rem; }
.hours-table td:first-child { color: var(--steel-300); }
.hours-table td:last-child { text-align: right; color: var(--white); font-family: var(--display); font-weight: 500; }
.hours-table tr.now td:last-child { color: var(--amber-400); }
.map-card { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-dark); box-shadow: var(--shadow-sm); background: var(--navy-900); }
.map-card svg { width: 100%; height: auto; display: block; }

/* ---------- Blog ---------- */
.featured-post { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; background: var(--white); border: 1px solid var(--line-dark); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 3.5rem; }
.featured-post .fp-media { position: relative; overflow: hidden; height: 100%; min-height: 320px; }
.featured-post .fp-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.featured-post:hover .fp-media img { transform: scale(1.06); }
.featured-post .fp-body { padding: clamp(1.6rem, 3vw, 2.6rem); }
.post-meta { display: flex; gap: 0.7rem; align-items: center; font-size: 0.8rem; color: var(--muted); margin-bottom: 1rem; font-family: var(--display); font-weight: 500; }
.post-cat { display: inline-flex; padding: 0.3rem 0.75rem; border-radius: 100px; background: rgba(232,163,23,0.14); color: var(--amber-600); font-weight: 600; letter-spacing: 0.04em; }
.featured-post .fp-body h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 0.9rem; }
.featured-post .fp-body p { color: var(--muted); margin-bottom: 1.4rem; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.post-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line-dark); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post-card .pc-media { position: relative; overflow: hidden; aspect-ratio: 16 / 10; background: linear-gradient(150deg, var(--navy-800), var(--navy-600)); }
.post-card .pc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.post-card:hover .pc-media img { transform: scale(1.07); }
.post-card .pc-svg { position: absolute; inset: 0; display: grid; place-items: center; }
.post-card .pc-svg svg { width: 64px; height: 64px; color: rgba(255,255,255,0.18); }
.post-card .pc-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post-card h3 { margin-bottom: 0.6rem; }
.post-card p { color: var(--muted); font-size: 0.92rem; flex: 1; }
.post-card .pc-read { margin-top: 1.1rem; display: inline-flex; align-items: center; gap: 0.4rem; font-family: var(--display); font-weight: 600; font-size: 0.84rem; color: var(--amber-600); }
.post-card .pc-read .arr { transition: transform 0.3s var(--ease); }
.post-card:hover .pc-read .arr { transform: translateX(4px); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.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; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 480px; margin: 0 auto; }
  .hero-frame { transform: none; }
  .svc-grid, .price-grid, .reviews-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step .line { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.open { flex-wrap: wrap; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch; width: 100%; order: 3;
    gap: 0.2rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line);
  }
  .nav.open .nav-links a { padding: 0.8rem 1rem; font-size: 1rem; }
  .nav.open .nav-cta { display: flex; flex-direction: column; align-items: stretch; width: 100%; order: 4; gap: 0.9rem; margin-top: 0.6rem; }
  .nav.open .nav-cta .btn { justify-content: center; }
  .split-head { grid-template-columns: 1fr; }
  .feature { grid-template-columns: 1fr; }
  .feature.flip .feature-media { order: 0; }
  .cta-band { grid-template-columns: 1fr; }
  .featured-post { grid-template-columns: 1fr; }
  .featured-post .fp-media { min-height: 240px; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .svc-grid, .price-grid, .reviews-grid, .blog-grid, .steps { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-rating { right: 0; }
  .hero-pill { left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html.smooth { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-frame, .zoom-frame img, .post-card .pc-media img, .featured-post .fp-media img { transition: none !important; }
  * { animation-duration: 0.001ms !important; }
}
