/* ==========================================================================
   JC Security — Design Tokens
   ========================================================================== */
:root {
  --amber: #f5a623;
  --amber-dark: #dd9315;
  --amber-light: #ffc25c;
  --ink: #1a1a1a;
  --ink-soft: #2b2b2b;
  --red: #e2231a;
  --red-dark: #b91a13;
  --cream: #fbf7ef;
  --white: #ffffff;
  --gray-600: #5c5a54;
  --gray-200: #e9e4d8;

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1200px;
  --radius: 10px;
  --shadow-lg: 0 20px 50px rgba(26, 26, 26, 0.18);
  --shadow-sm: 0 6px 16px rgba(26, 26, 26, 0.1);
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; }
button { font: inherit; cursor: pointer; }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}
.section-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin: 10px 0 16px;
}
.section-lede {
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 620px;
  line-height: 1.6;
}
.section-head {
  margin-bottom: 48px;
}
.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head.center .section-lede { margin-left: auto; margin-right: auto; }

section { position: relative; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(226, 35, 26, 0.35);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(226, 35, 26, 0.42); }
.btn-dark {
  background: var(--ink);
  color: var(--amber);
}
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--amber); }
.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-block { width: 100%; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 26, 26, 0.92);
  backdrop-filter: blur(10px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(0,0,0,0.25); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
}
.brand img { height: 34px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.94rem;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px;
  width: 0;
  background: var(--amber);
  transition: width 0.2s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--amber); }
.nav-links a.active::after { width: 100%; background: var(--amber); }
.mobile-nav a.active { color: var(--amber); }
.header-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--amber);
  font-weight: 700;
  font-size: 0.95rem;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span::before { position: absolute; top: -8px; }
.nav-toggle span::after { position: absolute; top: 8px; }
.nav-toggle.active span { background: transparent; }
.nav-toggle.active span::before { transform: rotate(45deg) translate(-6px, -6px) translate(6px,6px); top: 0; transform: rotate(45deg); }
.nav-toggle.active span::after { transform: rotate(-45deg); top: 0; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: 168px 0 110px;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -18%;
  width: 62%;
  height: 130%;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  top: 8%;
  right: -6%;
  width: 30%;
  height: 60%;
  background: var(--red);
  clip-path: polygon(38% 0, 100% 0, 78% 100%, 0% 100%);
  opacity: 0.9;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero-copy .eyebrow { color: var(--amber); }
.hero-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 0.98;
  margin: 14px 0 22px;
  letter-spacing: 0.01em;
}
.hero-title .accent { color: var(--amber); }
.hero-title .accent-red { color: var(--red); }
.hero-sub {
  font-size: 1.12rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}
.hero-trust svg { flex-shrink: 0; color: var(--amber); }

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}
.hero-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--ink);
  transform: rotate(2deg);
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--white);
  color: var(--ink);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: rotate(-3deg);
  z-index: 3;
}
.hero-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--red);
  line-height: 1;
}
.hero-badge span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-600);
}

/* ==========================================================================
   Page banner (interior pages)
   ========================================================================== */
.page-banner {
  position: relative;
  background: var(--ink);
  color: var(--white);
  padding: 158px 0 64px;
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -12%;
  width: 46%;
  height: 220%;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
  opacity: 0.9;
}
.page-banner::after {
  content: "";
  position: absolute;
  top: -10%;
  right: -4%;
  width: 22%;
  height: 140%;
  background: var(--red);
  clip-path: polygon(38% 0, 100% 0, 78% 100%, 0% 100%);
  z-index: 0;
}
.page-banner-inner { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}
.breadcrumb a { color: rgba(255,255,255,0.75); transition: color 0.2s ease; }
.breadcrumb a:hover { color: var(--amber); }
.page-banner-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.02;
  max-width: 640px;
}
.page-banner-lede {
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-top: 16px;
  font-size: 1.05rem;
  line-height: 1.6;
}
@media (max-width: 640px) {
  .page-banner { padding: 130px 0 50px; }
}

/* ==========================================================================
   Trust strip
   ========================================================================== */
.trust-strip {
  background: var(--amber);
  color: var(--ink);
  padding: 18px 0;
}
.trust-strip .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-strip li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.trust-strip svg { flex-shrink: 0; }

/* ==========================================================================
   Services
   ========================================================================== */
.services { padding: 120px 0 100px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.25s ease;
}
.service-card:hover .service-icon { background: var(--red); color: var(--white); }
.service-card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.28rem;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}
.service-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 18px;
}
.service-link {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-link svg { transition: transform 0.2s ease; }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ==========================================================================
   Split row (alternating image/content — services & about pages)
   ========================================================================== */
.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 90px 0;
  border-bottom: 1px solid var(--gray-200);
}
.split-row:last-child { border-bottom: none; }
.split-row.reverse .split-media { order: -1; }
.split-media img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
}
.split-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.split-content p.section-lede { margin-bottom: 6px; }
.split-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 28px;
}
.split-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.split-list li svg { flex-shrink: 0; color: var(--red); margin-top: 3px; }
@media (max-width: 900px) {
  .split-row { grid-template-columns: 1fr; gap: 32px; padding: 60px 0; }
  .split-row.reverse .split-media { order: 0; }
}

/* ==========================================================================
   Why us / split banner
   ========================================================================== */
.why-us {
  background: var(--ink);
  color: var(--white);
  padding: 110px 0;
  overflow: hidden;
  position: relative;
}
.why-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.why-us .section-title { color: var(--white); }
.why-us .eyebrow { color: var(--amber); }
.why-list {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}
.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.why-item .num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--red);
  width: 46px;
  flex-shrink: 0;
}
.why-item h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.why-item p {
  color: rgba(255,255,255,0.68);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}
.why-visual {
  position: relative;
}
.why-banner {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why-banner img { width: 100%; display: block; }
.why-stripe {
  position: absolute;
  left: -40px;
  bottom: 40px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.6rem;
  padding: 10px 46px;
  transform: rotate(-4deg);
  box-shadow: var(--shadow-lg);
  z-index: 3;
}

/* ==========================================================================
   Gallery / marketing showcase
   ========================================================================== */
.gallery { padding: 120px 0; background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26,26,26,0.55) 0%, rgba(26,26,26,0) 45%);
}

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  position: relative;
  background: var(--red);
  color: var(--white);
  padding: 90px 0;
  text-align: center;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    115deg,
    rgba(255,255,255,0.06) 0 60px,
    transparent 60px 120px
  );
}
.cta-inner { position: relative; z-index: 1; }
.cta-banner .section-title {
  color: var(--amber);
  margin-bottom: 14px;
}
.cta-banner p {
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials { padding: 120px 0; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--gray-200);
  position: relative;
}
.testimonial-stars {
  color: var(--amber);
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.testimonial-card p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 22px;
}
.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
}
.testimonial-person strong { display: block; font-size: 0.92rem; }
.testimonial-person span { font-size: 0.8rem; color: var(--gray-600); }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact {
  background: var(--ink);
  color: var(--white);
  padding: 120px 0;
}
.contact-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}
.contact .eyebrow { color: var(--amber); }
.contact .section-title { color: var(--white); }
.contact-lede { color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 32px; max-width: 460px; }
.contact-details {
  display: grid;
  gap: 20px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-detail .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(245, 166, 35, 0.14);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail strong { display: block; font-size: 0.95rem; margin-bottom: 2px; }
.contact-detail span { color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.contact-detail small.placeholder-tag {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
  background: rgba(226,35,26,0.14);
  padding: 2px 8px;
  border-radius: 999px;
}
.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.contact-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.contact-social a:hover { background: var(--amber); border-color: var(--amber); color: var(--ink); }

.contact-form {
  background: var(--white);
  color: var(--ink);
  border-radius: 18px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  color: var(--gray-600);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 13px 14px;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(245,166,35,0.18);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-error {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 6px;
  display: none;
}
.field.invalid input,
.field.invalid select,
.field.invalid textarea { border-color: var(--red); }
.field.invalid .field-error { display: block; }
.form-note {
  font-size: 0.8rem;
  color: var(--gray-600);
  margin-top: 14px;
  text-align: center;
}
.form-success {
  display: none;
  background: rgba(34, 139, 87, 0.1);
  border: 1.5px solid #228b57;
  color: #1b6e46;
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.form-success.show { display: block; }
.form-success.error {
  background: rgba(226, 35, 26, 0.08);
  border-color: var(--red);
  color: var(--red-dark);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #121212;
  color: rgba(255,255,255,0.6);
  padding: 60px 0 26px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
.footer-brand img { height: 30px; width: auto; }
.footer-col h5 {
  color: var(--white);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: 0.9rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--amber); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a:hover { color: var(--amber); }

/* Reveal animation — only hides content once JS confirms it can reveal it again */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js .reveal.in { opacity: 1; transform: translateY(0); }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 90;
  border: none;
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .why-inner, .contact-inner { grid-template-columns: 1fr; }
  .why-visual { order: -1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .header-phone { display: none; }
  .hero-inner { grid-template-columns: 1fr; text-align: left; }
  .hero { padding: 140px 0 80px; }
  .hero::before, .hero::after { display: none; }
  .hero-visual { order: -1; max-width: 320px; margin: 0 auto 20px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .service-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .trust-strip .container { justify-content: center; text-align: center; }
  .cta-actions .btn, .hero-actions .btn { width: 100%; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .why-stripe { left: 0; font-size: 1.1rem; padding: 8px 24px; }
}

/* Mobile nav panel */
.mobile-nav {
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  background: var(--ink);
  z-index: 99;
  padding: 10px 24px 26px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 20px 30px rgba(0,0,0,0.3);
}
.mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-nav a {
  display: block;
  padding: 14px 0;
  color: var(--white);
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav .btn { margin-top: 16px; }
