/* ============================================================
   Veristic Survey & Inspections Pvt Ltd — Corporate Stylesheet
   Typography: Inter (body) + Montserrat (headings)
   ============================================================ */

:root {
  --brand-maroon:      #8B2B1B;
  --brand-maroon-dark: #6E1F13;
  --brand-gold:        #C9A227;
  --brand-gold-dark:   #A98714;
  --brand-cream:       #FAF7F2;
  --brand-cream-2:     #F3EDE3;
  --ink:               #111827;
  --ink-soft:          #4B5563;
  --ink-muted:         #6B7280;
  --line:              #E5DDD0;
  --white:             #ffffff;
  --shadow-sm: 0 2px 10px rgba(17,24,39,.05);
  --shadow-md: 0 12px 32px rgba(17,24,39,.10);
  --shadow-lg: 0 24px 60px rgba(17,24,39,.14);
  --radius: 14px;
  --radius-sm: 8px;
  --content: 1200px;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-head: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset & base -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--brand-cream);
  line-height: 1.7;
  font-size: 16.5px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--brand-maroon); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--brand-gold-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--ink);
  margin: 0 0 .6em;
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.5px;
}
h1 { font-size: clamp(2.2rem, 4vw + 1rem, 3.6rem); font-weight: 800; letter-spacing: -1px; }
h2 { font-size: clamp(1.75rem, 2.2vw + .8rem, 2.5rem); font-weight: 700; letter-spacing: -0.8px; }
h3 { font-size: 1.3rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 600; letter-spacing: -0.3px; }
p  { margin: 0 0 1em; color: var(--ink-soft); font-size: 1rem; }
strong { font-weight: 600; color: var(--ink); }
.container { max-width: var(--content); margin: 0 auto; padding: 0 24px; }

/* Buttons ------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .3px;
  transition: all .25s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  text-transform: none;
}
.btn-primary  { background: var(--brand-maroon); color: #fff; border-color: var(--brand-maroon); }
.btn-primary:hover { background: var(--brand-maroon-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary{ background: var(--brand-gold);   color: #14181f; border-color: var(--brand-gold); }
.btn-secondary:hover { background: var(--brand-gold-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline  { background: transparent; color: #fff; border-color: #fff; }
.btn-outline:hover  { background: #fff; color: var(--brand-maroon); transform: translateY(-2px); }

/* Header -------------------------------------------------------------- */
.site-header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; box-shadow: var(--shadow-sm); }
.topbar { background: var(--ink); color: #fff; font-size: .82rem; padding: 10px 0; font-weight: 400; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.topbar a { color: var(--brand-gold); font-weight: 500; }
.topbar a:hover { color: #fff; }
.topbar-info span { margin-right: 20px; }
.topbar-info i { margin-right: 6px; color: var(--brand-gold); }

.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.logo-link { display: flex; align-items: center; gap: 14px; }
.logo-link img { height: 58px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong { color: var(--brand-maroon); font-family: var(--font-head); font-size: 1.25rem; font-weight: 800; letter-spacing: -0.5px; }
.logo-text small { color: var(--brand-gold-dark); font-family: var(--font-head); font-size: .7rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; margin-top: 2px; }

.nav { display: flex; gap: 4px; align-items: center; }
.nav a {
  padding: 10px 18px;
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
  border-radius: 6px;
  transition: all .2s ease;
  letter-spacing: -0.2px;
}
.nav a:hover, .nav a.active { background: var(--brand-cream-2); color: var(--brand-maroon); }
.nav-cta { background: var(--brand-maroon) !important; color: #fff !important; padding: 11px 24px !important; border-radius: 50px !important; margin-left: 10px; font-weight: 600 !important; }
.nav-cta:hover { background: var(--brand-maroon-dark) !important; transform: translateY(-1px); }
.menu-toggle { display: none; background: none; border: none; font-size: 1.6rem; color: var(--brand-maroon); cursor: pointer; padding: 6px 10px; }

/* Hero Carousel (sliding banner) ------------------------------------- */
.hero-carousel {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: #fff;
  background: #14181f;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 1;
  pointer-events: none;
}
.hero-slide.is-active { opacity: 1; z-index: 2; pointer-events: auto; }
.hero-slide::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(17,24,39,.80) 0%, rgba(139,43,27,.60) 100%);
  z-index: 1;
}
.hero-slide .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.02);
  transition: transform 8s ease-out;
  z-index: 0;
}
.hero-slide.is-active .bg { transform: scale(1.12); }
.hero-slide .container {
  position: relative; z-index: 2;
  padding: 100px 24px;
  max-width: 1180px;
}
.hero-slide h1, .hero-slide h2 { color: #fff; max-width: 820px; margin-bottom: .4em; text-shadow: 0 2px 20px rgba(0,0,0,.35); font-size: clamp(2.2rem, 4vw + 1rem, 3.6rem); font-weight: 800; letter-spacing: -1px; line-height: 1.22; }
.hero-slide h1 span, .hero-slide h2 span { color: var(--brand-gold); }
.hero-slide .lede {
  font-size: 1.18rem;
  color: rgba(255,255,255,.92);
  max-width: 700px;
  margin-bottom: 2em;
  line-height: 1.65;
  font-weight: 400;
}
.hero-slide .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-tagline {
  display: inline-block;
  background: rgba(201,162,39,.18);
  border: 1px solid var(--brand-gold);
  color: var(--brand-gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5em;
  backdrop-filter: blur(8px);
}

/* Carousel controls */
.carousel-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 5;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.28);
  color: #fff;
  width: 54px; height: 54px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.05rem;
  transition: all .25s ease;
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
}
.carousel-nav:hover { background: var(--brand-gold); color: #14181f; border-color: var(--brand-gold); transform: translateY(-50%) scale(1.08); }
.carousel-prev { left: 26px; }
.carousel-next { right: 26px; }
.carousel-dots {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.carousel-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all .3s ease;
}
.carousel-dots button:hover { background: rgba(255,255,255,.4); }
.carousel-dots button.is-active { background: var(--brand-gold); border-color: var(--brand-gold); width: 32px; border-radius: 5px; }
.carousel-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px; width: 0;
  background: var(--brand-gold);
  z-index: 5;
  transition: width linear;
}

/* Page banner (inner pages) ------------------------------------------ */
.page-banner { position: relative; min-height: 280px; display: flex; align-items: center; color: #fff; text-align: center; }
.page-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(rgba(17,24,39,.78), rgba(139,43,27,.65)), url('../img/container-inspection.jpg') center/cover no-repeat;
  z-index: 0;
}
.page-banner .container { position: relative; z-index: 1; padding: 80px 24px; }
.page-banner h1 { color: #fff; margin-bottom: 12px; }
.breadcrumb { color: rgba(255,255,255,.88); font-size: .92rem; font-family: var(--font-head); font-weight: 500; letter-spacing: .5px; }
.breadcrumb a { color: var(--brand-gold); }

/* Sections ------------------------------------------------------------ */
section { padding: 100px 0; }
section.alt  { background: var(--white); }
section.dark { background: var(--ink); color: #fff; }
section.dark h2, section.dark h3, section.dark h4 { color: #fff; }
section.dark p { color: rgba(255,255,255,.78); }

.section-head { text-align: center; max-width: 780px; margin: 0 auto 60px; }
.section-head .eyebrow {
  display: inline-block;
  color: var(--brand-gold-dark);
  font-family: var(--font-head);
  font-size: .82rem; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-head h2::after {
  content: ""; display: block;
  width: 60px; height: 3px;
  background: var(--brand-gold);
  margin: 20px auto 0;
  border-radius: 2px;
}
.section-head p { font-size: 1.05rem; color: var(--ink-soft); }

/* Trust strip --------------------------------------------------------- */
.trust-strip { background: var(--brand-maroon); color: #fff; padding: 36px 0; }
.trust-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.trust-strip .stat { border-left: 2px solid rgba(255,255,255,.18); padding: 6px 10px; }
.trust-strip .stat:first-child { border-left: none; }
.trust-strip .stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--brand-gold);
  margin-bottom: 6px;
  letter-spacing: -1px;
}
.trust-strip .stat span {
  font-family: var(--font-head);
  font-size: .8rem;
  color: rgba(255,255,255,.88);
  letter-spacing: 2px;
  font-weight: 600;
}

/* About snippet (home) ------------------------------------------------ */
.about-snippet { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-snippet .media img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.about-snippet .content .eyebrow {
  color: var(--brand-gold-dark);
  font-family: var(--font-head);
  font-size: .82rem; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  display: block; margin-bottom: 12px;
}
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 28px 0 32px; }
.pillar { background: var(--brand-cream-2); padding: 20px; border-radius: var(--radius-sm); border-left: 3px solid var(--brand-gold); }
.pillar h4 { margin: 0 0 4px; color: var(--brand-maroon); font-size: 1rem; font-weight: 700; }
.pillar p { margin: 0; font-size: .92rem; }

/* Service grid -------------------------------------------------------- */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease; border: 1px solid var(--line); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card .thumb { aspect-ratio: 16 / 10; background-size: cover; background-position: center; position: relative; }
.service-card .thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.45) 100%); }
.service-card .body { padding: 24px 24px 28px; }
.service-card h3 { color: var(--brand-maroon); margin-bottom: 10px; font-size: 1.2rem; font-weight: 700; }
.service-card p { font-size: .95rem; margin-bottom: 16px; line-height: 1.6; }
.service-card .more { color: var(--brand-maroon); font-family: var(--font-head); font-weight: 600; font-size: .9rem; letter-spacing: .3px; }
.service-card .more::after { content: " →"; transition: transform .2s ease; display: inline-block; }
.service-card:hover .more::after { transform: translateX(4px); }

/* Split sections (services page) ------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 90px; }
.split:last-child { margin-bottom: 0; }
.split.reverse .media { order: 2; }
.split .media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split .content h2 { font-size: 1.85rem; color: var(--brand-maroon); }
.split .content .eyebrow {
  display: inline-block;
  background: var(--brand-cream-2);
  color: var(--brand-gold-dark);
  font-family: var(--font-head);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.feature-list { list-style: none; padding: 0; margin: 18px 0 0; }
.feature-list li { padding: 12px 0 12px 32px; position: relative; color: var(--ink-soft); border-bottom: 1px dashed var(--line); font-size: .97rem; }
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before { content: "✓"; position: absolute; left: 0; top: 12px; width: 22px; height: 22px; background: var(--brand-gold); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .78rem; font-weight: 700; }

/* Values (About page) ------------------------------------------------- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card { background: #fff; border-radius: var(--radius); padding: 40px 30px; text-align: center; box-shadow: var(--shadow-sm); border-top: 4px solid var(--brand-gold); transition: transform .3s ease, box-shadow .3s ease; }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-card .icon { width: 68px; height: 68px; background: var(--brand-cream-2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--brand-maroon); font-size: 1.7rem; }
.value-card h3 { color: var(--brand-maroon); margin-bottom: 10px; }

/* Why Veristic -------------------------------------------------------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-item { text-align: center; padding: 22px; }
.why-item .num { font-family: var(--font-head); font-size: 2.5rem; color: var(--brand-gold); font-weight: 800; line-height: 1; letter-spacing: -1px; }
.why-item h4 { color: #fff; margin: 12px 0 6px; font-size: 1.08rem; font-weight: 700; }
.why-item p { color: rgba(255,255,255,.78); font-size: .92rem; margin: 0; }

/* Clients ------------------------------------------------------------- */
.clients { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; align-items: center; }
.client-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px 14px; text-align: center; transition: all .3s ease; min-height: 96px; display: flex; align-items: center; justify-content: center; }
.client-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--brand-gold); }
.client-card img { max-height: 58px; width: auto; filter: grayscale(20%); opacity: .88; transition: filter .3s ease, opacity .3s ease; }
.client-card:hover img { filter: grayscale(0); opacity: 1; }

/* Seal feature -------------------------------------------------------- */
.seal-feature { background: var(--brand-cream-2); padding: 80px 0; }
.seal-feature .container { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.seal-feature .media img { border-radius: var(--radius); box-shadow: var(--shadow-md); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.seal-feature h2 { color: var(--brand-maroon); }

/* Contact ------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 52px; align-items: start; }
.contact-info { background: #fff; padding: 38px; border-radius: var(--radius); box-shadow: var(--shadow-sm); border-top: 4px solid var(--brand-maroon); }
.contact-info h3 { color: var(--brand-maroon); }
.contact-block { margin-bottom: 26px; }
.contact-row { display: flex; align-items: flex-start; margin-bottom: 22px; }
.contact-row .text { flex: 1; padding-top: 6px; }
.contact-row strong { display: block; color: var(--ink); margin-bottom: 4px; font-size: .95rem; font-family: var(--font-head); font-weight: 700; }
.contact-row a, .contact-row span { color: var(--ink-soft); font-size: .95rem; }
.contact-icon { width: 42px; height: 42px; background: var(--brand-cream-2); color: var(--brand-maroon); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; margin-right: 14px; font-size: 1rem; flex-shrink: 0; }

.contact-form { background: #fff; padding: 38px; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-family: var(--font-head); font-size: .86rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; letter-spacing: -0.2px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--radius-sm); font-size: .95rem; font-family: inherit; background: var(--brand-cream); transition: border-color .2s ease, box-shadow .2s ease; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--brand-gold); box-shadow: 0 0 0 3px rgba(201,162,39,.15); }
.form-group textarea { resize: vertical; min-height: 130px; }

.map-wrap { margin-top: 50px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.map-wrap iframe { width: 100%; height: 400px; border: 0; display: block; }

/* CTA band ------------------------------------------------------------ */
.cta-band { background: linear-gradient(135deg, var(--brand-maroon), var(--brand-maroon-dark)); color: #fff; text-align: center; padding: 80px 0; }
.cta-band h2 { color: #fff; }
.cta-band p  { color: rgba(255,255,255,.92); max-width: 640px; margin: 0 auto 30px; font-size: 1.05rem; }

/* Gallery ------------------------------------------------------------- */
.gallery-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.gallery-tabs button { background: #fff; border: 1px solid var(--line); padding: 11px 22px; font-family: var(--font-head); font-size: .88rem; font-weight: 600; color: var(--ink-soft); border-radius: 50px; cursor: pointer; transition: all .2s ease; }
.gallery-tabs button:hover { border-color: var(--brand-gold); color: var(--brand-maroon); }
.gallery-tabs button.is-active { background: var(--brand-maroon); border-color: var(--brand-maroon); color: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4 / 3; cursor: zoom-in; box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .cap { position: absolute; left: 0; right: 0; bottom: 0; background: linear-gradient(0deg, rgba(0,0,0,.8), rgba(0,0,0,0)); color: #fff; padding: 44px 18px 16px; font-family: var(--font-head); font-size: .9rem; font-weight: 500; transform: translateY(100%); transition: transform .3s ease; }
.gallery-item:hover .cap { transform: translateY(0); }

/* Lightbox */
.lb-overlay { position: fixed; inset: 0; background: rgba(15,18,25,.93); display: none; align-items: center; justify-content: center; z-index: 100; padding: 30px; opacity: 0; transition: opacity .2s ease; }
.lb-overlay.is-open { display: flex; opacity: 1; }
.lb-overlay img { max-width: 92vw; max-height: 84vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lb-close { position: absolute; top: 22px; right: 26px; background: transparent; border: 0; color: #fff; font-size: 2rem; cursor: pointer; line-height: 1; }
.lb-close:hover { color: var(--brand-gold); }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); color: #fff; width: 46px; height: 46px; border-radius: 50%; cursor: pointer; font-size: 1.1rem; }
.lb-nav:hover { background: var(--brand-gold); color: #14181f; }
.lb-prev { left: 22px; }
.lb-next { right: 22px; }
.lb-caption { position: absolute; bottom: 34px; left: 0; right: 0; text-align: center; color: #fff; font-size: .92rem; font-family: var(--font-head); padding: 10px; }

/* Footer -------------------------------------------------------------- */
.site-footer { background: #0F1218; color: rgba(255,255,255,.72); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 46px; margin-bottom: 46px; }
.footer-grid h4 { color: var(--brand-gold); font-family: var(--font-head); font-size: .88rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 20px; }
.footer-grid a { color: rgba(255,255,255,.75); display: block; padding: 4px 0; font-size: .94rem; }
.footer-grid a:hover { color: var(--brand-gold); }
.footer-grid p { color: rgba(255,255,255,.68); font-size: .94rem; line-height: 1.7; }
.footer-grid .logo-text strong { color: #fff; }
.footer-grid .logo-text small { color: var(--brand-gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; font-size: .86rem; text-align: center; color: rgba(255,255,255,.62); font-family: var(--font-head); }
.footer-bottom a { color: var(--brand-gold); }

/* Responsive ---------------------------------------------------------- */
@media (max-width: 960px) {
  .nav { position: fixed; top: 0; right: -100%; width: 80%; max-width: 340px; height: 100vh; background: #fff; flex-direction: column; padding: 80px 30px 30px; gap: 0; box-shadow: var(--shadow-md); transition: right .3s ease; z-index: 60; align-items: stretch; }
  .nav.open { right: 0; }
  .nav a { padding: 14px 10px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-cta { margin-left: 0 !important; margin-top: 14px !important; text-align: center; }
  .menu-toggle { display: block; }
  .service-grid, .values-grid, .why-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-snippet, .split, .seal-feature .container, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .media { order: 0; }
  .trust-strip .container { grid-template-columns: repeat(2, 1fr); }
  .trust-strip .stat { border-left: none; border-top: 1px solid rgba(255,255,255,.15); padding-top: 14px; }
  .trust-strip .stat:nth-child(-n+2) { border-top: none; padding-top: 6px; }
  .clients { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-carousel { min-height: 540px; }
  .hero-slide .container { padding: 80px 24px; }
}
@media (max-width: 640px) {
  section { padding: 70px 0; }
  .hero-carousel { min-height: 500px; }
  .carousel-prev { left: 10px; }
  .carousel-next { right: 10px; }
  .carousel-nav { width: 44px; height: 44px; font-size: .95rem; }
  .service-grid, .values-grid, .why-grid, .gallery-grid { grid-template-columns: 1fr; }
  .clients { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .logo-link img { height: 46px; }
  .logo-text strong { font-size: 1.1rem; }
  .topbar { font-size: .72rem; }
  .topbar .container { justify-content: center; }
  .topbar-info { text-align: center; }
  .hero-slide .lede { font-size: 1.02rem; }
  .hero-tagline { font-size: .72rem; letter-spacing: 2px; padding: 6px 14px; }
}
