/* ==========================================================================
   Lakshmi Safety Nets — Main Stylesheet
   Mobile-first. No framework. CSS variables drive the whole palette so
   every component stays on-brand and easy to retheme from one place.
   ========================================================================== */

:root {
  /* Brand palette (fixed) */
  --navy: #1E3A8A;
  --navy-dark: #152a63;
  --green: #22C55E;
  --green-dark: #16a34a;
  --orange: #EA580C;
  --orange-dark: #c2470a;
  --white: #FFFFFF;
  --alt-bg: #F8FAFC;
  --text: #1F2937;
  --text-muted: #5b6472;
  --border: #e2e8f0;

  /* Elevation & radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 20px 48px rgba(15, 23, 42, 0.16);

  /* Type */
  --font-display: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  /* Layout */
  --container: 1200px;
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; margin: 0 0 .5em; color: var(--navy); font-weight: 600; }
p { margin: 0 0 1em; color: var(--text-muted); }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section--alt { background: var(--alt-bg); }
.section--navy { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); color: #fff; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy p { color: rgba(255,255,255,.78); }
.section-head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--green-dark); background: rgba(34,197,94,.1); padding: 6px 14px; border-radius: 999px; margin-bottom: 14px; }
.section--navy .eyebrow { color: #bff7d3; background: rgba(255,255,255,.12); }
h2.section-title { font-size: clamp(26px, 4vw, 38px); }
.section-sub { font-size: 17px; }
.grid { display: grid; gap: 24px; }
@media (min-width: 640px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } .grid--4 { grid-template-columns: repeat(4, 1fr); } }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 15px; border: 2px solid transparent; transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease; white-space: nowrap; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--orange-dark); box-shadow: var(--shadow-md); }
.btn-outline { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-dark); }
.btn-ghost { border-color: var(--border); color: var(--navy); background: #fff; }
.btn-ghost:hover { border-color: var(--navy); }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 200; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.topbar { background: var(--navy); color: #fff; font-size: 13px; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; padding-top: 6px; padding-bottom: 6px; }
.topbar a { display: inline-flex; align-items: center; gap: 6px; }
.topbar-links { display: flex; gap: 18px; }
.topbar-left { display: none; }
@media (min-width: 720px) { .topbar-left { display: flex; gap: 18px; } }
.navbar { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 19px; }
.brand-mark { width: 42px; height: 42px; border-radius: 12px; background: linear-gradient(135deg, var(--navy), var(--green)); display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 11px; color: var(--text-muted); }
.nav-desktop { display: none; }
@media (min-width: 1000px) {
  .nav-desktop { display: flex; align-items: center; gap: 4px; }
  .nav-desktop > li { position: relative; }
  .nav-desktop > li > a { display: flex; align-items: center; gap: 4px; padding: 10px 14px; border-radius: 8px; font-weight: 600; font-size: 14.5px; color: var(--text); }
  .nav-desktop > li > a:hover { color: var(--navy); background: var(--alt-bg); }
  .dropdown { position: absolute; top: 100%; left: 0; min-width: 240px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: 10px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: .15s ease; max-height: 60vh; overflow-y: auto; }
  .nav-desktop > li:hover .dropdown, .nav-desktop > li:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
  .dropdown a { display: block; padding: 9px 12px; border-radius: 8px; font-size: 14px; font-weight: 500; }
  .dropdown a:hover { background: var(--alt-bg); color: var(--navy); }
  .dropdown .dd-heading { font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); padding: 8px 12px 4px; font-weight: 700; }
}
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-actions .btn { display: none; }
@media (min-width: 560px) { .nav-actions .btn { display: inline-flex; } }
.nav-toggle { display: inline-flex; background: none; border: 1px solid var(--border); border-radius: 10px; padding: 8px; color: var(--navy); }
@media (min-width: 1000px) { .nav-toggle { display: none; } }

/* Mobile nav panel */
.nav-mobile { position: fixed; inset: 0; background: #fff; z-index: 300; transform: translateX(100%); transition: transform .25s ease; overflow-y: auto; }
.nav-mobile.is-open { transform: translateX(0); }
.nav-mobile-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--border); }
.nav-mobile ul { padding: 10px 10px 30px; }
.nav-mobile > div > ul > li { border-bottom: 1px solid var(--border); }
.nav-mobile a { display: flex; align-items: center; justify-content: space-between; padding: 15px 10px; font-weight: 600; font-size: 16px; }
.nav-mobile .sub-list { display: none; padding-left: 14px; }
.nav-mobile .sub-list.is-open { display: block; }
.nav-mobile .sub-list a { font-weight: 500; font-size: 14.5px; padding: 12px 10px; }
.nav-mobile-cta { padding: 16px 20px; display: grid; gap: 10px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--navy) 0%, #1b3277 55%, var(--navy-dark) 100%); color: #fff; padding: 56px 0 70px; }
.hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 85% 20%, rgba(34,197,94,.35), transparent 45%), radial-gradient(circle at 10% 90%, rgba(234,88,12,.25), transparent 40%); pointer-events: none; }
.hero-grid { position: relative; display: grid; gap: 40px; align-items: center; }
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 56px; } }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); padding: 7px 13px; border-radius: 999px; font-size: 12.5px; font-weight: 600; }
.hero h1 { color: #fff; font-size: clamp(30px, 5vw, 50px); margin-bottom: 18px; }
.hero h1 .accent { color: var(--green); }
.hero p.lead { color: rgba(255,255,255,.82); font-size: 18px; max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 26px 0; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px; max-width: 480px; }
.hero-stat b { display: block; font-family: var(--font-display); font-size: clamp(20px, 3vw, 28px); color: #fff; }
.hero-stat span { font-size: 12.5px; color: rgba(255,255,255,.7); }
.hero-visual { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-visual .glass-card { position: absolute; bottom: 16px; left: 16px; right: 16px; background: rgba(255,255,255,.14); backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,.25); border-radius: var(--radius-md); padding: 14px 16px; display: flex; align-items: center; gap: 12px; }
.hero-visual .glass-card .ico { width: 40px; height: 40px; border-radius: 10px; background: var(--green); display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.hero-visual .glass-card b { display: block; color: #fff; font-size: 14px; }
.hero-visual .glass-card span { color: rgba(255,255,255,.75); font-size: 12.5px; }

/* ---------- Cards ---------- */
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 26px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card { display: flex; flex-direction: column; gap: 14px; }
.service-card .ico { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, var(--navy), var(--green)); color: #fff; display: flex; align-items: center; justify-content: center; }
.service-card h3 { font-size: 18px; margin-bottom: 2px; }
.service-card p { font-size: 14.5px; margin-bottom: 4px; }
.service-card .card-link { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--orange); font-size: 14px; }
.service-card .card-link svg { transition: transform .15s ease; }
.service-card:hover .card-link svg { transform: translateX(3px); }

.reason-card { text-align: left; }
.reason-card .ico { width: 46px; height: 46px; border-radius: 12px; background: rgba(34,197,94,.12); color: var(--green-dark); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }

/* ---------- Stats / counters ---------- */
.stat-strip { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; text-align: center; }
@media (min-width: 720px) { .stat-strip { grid-template-columns: repeat(4,1fr); } }
.stat-strip b { font-family: var(--font-display); font-size: clamp(26px, 4vw, 36px); color: var(--navy); display: block; }
.section--navy .stat-strip b { color: #fff; }
.stat-strip span { font-size: 13.5px; color: var(--text-muted); }
.section--navy .stat-strip span { color: rgba(255,255,255,.7); }

/* ---------- Process timeline ---------- */
.timeline { display: grid; gap: 22px; counter-reset: step; }
@media (min-width: 860px) { .timeline { grid-template-columns: repeat(4, 1fr); } }
.timeline-step { position: relative; padding-top: 8px; }
.timeline-step .num { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; margin-bottom: 14px; }
@media (min-width: 860px) {
  .timeline-step::after { content: ''; position: absolute; top: 20px; left: calc(50% + 30px); right: -22px; height: 2px; background: var(--border); }
  .timeline-step:last-child::after { display: none; }
}
.timeline-step h4 { font-size: 16.5px; }
.timeline-step p { font-size: 14px; }

/* ---------- Before / After ---------- */
.compare { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.compare-labels { display: flex; }
.compare-labels span { flex: 1; text-align: center; padding: 10px; font-weight: 700; font-size: 13px; letter-spacing: .03em; text-transform: uppercase; }
.compare-labels .before { background: #fee2e2; color: #b91c1c; }
.compare-labels .after { background: #dcfce7; color: #15803d; }
.compare-imgs { display: grid; grid-template-columns: 1fr 1fr; }
.compare-imgs > div { position: relative; }

/* ---------- Testimonials ---------- */
.testi-track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px; -webkit-overflow-scrolling: touch; }
.testi-track::-webkit-scrollbar { height: 6px; }
.testi-track::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }
.testi-card { flex: 0 0 88%; scroll-snap-align: start; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 26px; }
@media (min-width: 700px) { .testi-card { flex-basis: 46%; } }
@media (min-width: 1000px) { .testi-card { flex-basis: 31.5%; } }
.testi-stars { display: flex; gap: 3px; color: var(--orange); margin-bottom: 10px; }
.testi-card p.quote { color: var(--text); font-size: 15px; }
.testi-person { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-display); flex-shrink: 0; }
.testi-person b { display: block; font-size: 14.5px; color: var(--navy); }
.testi-person span { font-size: 12.5px; }
.slider-controls { display: flex; gap: 10px; justify-content: center; margin-top: 18px; }
.slider-controls button { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border); background: #fff; display: flex; align-items: center; justify-content: center; color: var(--navy); }
.slider-controls button:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); background: #fff; overflow: hidden; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 17px 20px; background: none; border: none; text-align: left; font-weight: 600; font-size: 15.5px; color: var(--navy); }
.faq-q svg { transition: transform .2s ease; flex-shrink: 0; }
.faq-item.is-open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a-inner { padding: 0 20px 18px; font-size: 14.5px; color: var(--text-muted); }
.faq-item.is-open .faq-a { max-height: 400px; }

/* ---------- Locations ---------- */
.loc-pill { display: inline-flex; align-items: center; gap: 6px; background: var(--alt-bg); border: 1px solid var(--border); padding: 9px 15px; border-radius: 999px; font-size: 13.5px; font-weight: 600; color: var(--navy); }
.loc-pill:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.loc-cloud { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------- Comparison table ---------- */
.compare-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); font-size: 14.5px; }
.compare-table th, .compare-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.compare-table thead th { background: var(--navy); color: #fff; font-family: var(--font-display); }
.compare-table td.yes { color: var(--green-dark); font-weight: 700; }
.compare-table td.no { color: #b91c1c; font-weight: 700; }
.table-scroll { overflow-x: auto; }

/* ---------- Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-md); }
.form-row { display: grid; gap: 16px; margin-bottom: 16px; }
@media (min-width: 640px) { .form-row.cols-2 { grid-template-columns: 1fr 1fr; } }
label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 6px; color: var(--navy); }
input, select, textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px; font-size: 14.5px; background: #fff; color: var(--text); }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--green); outline-offset: 1px; border-color: var(--green); }
textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 12.5px; color: var(--text-muted); margin-top: 10px; }
.alert { padding: 14px 16px; border-radius: 10px; font-size: 14.5px; margin-bottom: 18px; }
.alert-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

/* ---------- Floating contact buttons ---------- */
.float-cta { position: fixed; right: 18px; bottom: 18px; z-index: 250; display: flex; flex-direction: column; gap: 12px; }
.float-btn { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: var(--shadow-lg); transition: transform .15s ease; }
.float-btn:hover { transform: scale(1.08); }
.float-btn.wa { background: #25D366; }
.float-btn.call { background: var(--orange); }

/* Sticky mobile CTA bar */
.sticky-cta-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 240; display: grid; grid-template-columns: 1fr 1fr; background: #fff; border-top: 1px solid var(--border); box-shadow: 0 -6px 20px rgba(15,23,42,.08); }
.sticky-cta-bar a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 10px; font-weight: 700; font-size: 14.5px; }
.sticky-cta-bar a.call { background: var(--navy); color: #fff; }
.sticky-cta-bar a.wa { background: #25D366; color: #fff; }
@media (min-width: 860px) { .sticky-cta-bar { display: none; } }
body { padding-bottom: 62px; }
@media (min-width: 860px) { body { padding-bottom: 0; } }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { padding: 14px 0; font-size: 13px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.breadcrumbs li:not(:last-child)::after { content: '/'; margin-left: 6px; color: var(--text-muted); }
.breadcrumbs a { color: var(--text-muted); font-weight: 500; }
.breadcrumbs a:hover { color: var(--navy); }
.breadcrumbs [aria-current] { color: var(--navy); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.82); }
.footer-top { padding: 60px 0 40px; }
.footer-grid { display: grid; gap: 34px; }
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1.1fr; } }
.footer-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 18px; margin-bottom: 12px; }
.site-footer h4 { color: #fff; font-size: 14.5px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 16px; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a:hover { color: var(--green); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; font-size: 13px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; }
.footer-bottom a { color: rgba(255,255,255,.65); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Misc ---------- */
.trust-strip { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: center; opacity: .9; }
.trust-strip .item { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--text-muted); }
.badge-list { display: flex; flex-wrap: wrap; gap: 10px; }
.badge-list span { background: var(--alt-bg); border: 1px solid var(--border); padding: 6px 12px; border-radius: 999px; font-size: 12.5px; font-weight: 600; color: var(--navy); }
.two-col { display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) { .two-col { grid-template-columns: 1fr 1fr; } }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.check-list { display: grid; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text); }
.check-list li svg { color: var(--green-dark); flex-shrink: 0; margin-top: 3px; }
.cta-banner { background: linear-gradient(120deg, var(--orange), #f97316); border-radius: var(--radius-lg); padding: 40px; color: #fff; display: grid; gap: 22px; align-items: center; text-align: center; }
@media (min-width: 860px) { .cta-banner { grid-template-columns: 1fr auto; text-align: left; padding: 46px 50px; } }
.cta-banner h3 { color: #fff; font-size: 26px; }
.cta-banner p { color: rgba(255,255,255,.9); }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
@media (min-width: 860px) { .cta-actions { justify-content: flex-start; } }
.pill-nav { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.pill-nav a { padding: 9px 16px; border-radius: 999px; border: 1px solid var(--border); font-size: 13.5px; font-weight: 600; color: var(--text); }
.pill-nav a.active, .pill-nav a:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
@media (min-width: 720px) { .gallery-grid { grid-template-columns: repeat(3,1fr); } }
.gallery-item { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.error-page { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 60px 20px; }
.error-page .code { font-family: var(--font-display); font-size: 96px; font-weight: 800; color: var(--navy); line-height: 1; }
