/* ============================================================
   Sevak Auto Garage, Nashik — shared stylesheet
   Palette pulled from the workshop logo: signal red, graphite
   charcoal, white / warm off-white, brushed-steel gray.
   ============================================================ */

:root {
  --red: #e1261c;
  --red-l: #e8342a;
  --red-d: #c11d14;
  --red-soft: rgba(225, 38, 28, .08);
  --charcoal: #3a3a3c;
  --ink: #1c1c1e;
  --ink-2: #26262a;
  --gray: #8e8e93;
  --gray-l: #a9a9ae;
  --line: #e6e6e9;
  --line-d: rgba(255, 255, 255, .12);
  --paper: #ffffff;
  --paper-2: #f6f6f7;
  --text: #2c2c2e;
  --shadow-sm: 0 2px 10px rgba(28, 28, 30, .05);
  --shadow: 0 10px 30px -14px rgba(28, 28, 30, .26);
  --shadow-lg: 0 22px 48px -20px rgba(28, 28, 30, .34);
  --radius: 10px;
  --radius-lg: 16px;
  --wrap: 1180px;
  --head-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: Inter, "Segoe UI", Roboto, system-ui, -apple-system, sans-serif;
  font-size: 16.5px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: Poppins, "Segoe UI", sans-serif;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.1rem, 5.4vw, 3.5rem); }
h2 { font-size: clamp(1.65rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 1.9vw, 1.3rem); font-weight: 700; }
p { margin: 0 0 1rem; }

.wrap { width: min(100% - 2.4rem, var(--wrap)); margin-inline: auto; }
.section { padding-block: clamp(3.4rem, 7vw, 5.8rem); position: relative; }
.section--tint { background: var(--paper-2); }
.section--dark { background: var(--ink); color: #e9e9ec; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .lead { color: #b3b3b8; }

/* diagonal section breaks, echoing the car silhouette's cut lines */
.section--slant-top { clip-path: polygon(0 2.6vw, 100% 0, 100% 100%, 0 100%); margin-top: -2.4vw; }
.section--slant-bottom { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2.6vw), 0 100%); }
@media (max-width: 700px) {
  .section--slant-top { clip-path: polygon(0 4.4vw, 100% 0, 100% 100%, 0 100%); margin-top: -4vw; }
  .section--slant-bottom { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4.4vw), 0 100%); }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: Poppins, sans-serif; font-size: .78rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--red);
  margin-bottom: .85rem;
}
.eyebrow::before { content: ""; width: 24px; height: 3px; border-radius: 2px; background: var(--red); display: block; }

.lead { font-size: 1.06rem; color: #5d5d63; max-width: 62ch; }
.muted { color: var(--gray); }
.section--dark .muted { color: var(--gray-l); }
.head-block { max-width: 64ch; margin-bottom: 2.4rem; position: relative; }
.head-block--center { margin-inline: auto; text-align: center; }
.head-block--center .eyebrow { justify-content: center; }
.head-block--center .lead { margin-inline: auto; }
.rule { width: 62px; height: 4px; border-radius: 2px; background: var(--red); margin: 1.1rem 0 0; }
.head-block--center .rule { margin-inline: auto; }

/* faint wrench / car watermark behind headings */
.watermark {
  position: absolute; pointer-events: none; opacity: .045; color: var(--ink);
  width: 220px; right: -10px; top: -46px; z-index: 0;
}
.section--dark .watermark { opacity: .07; color: #fff; }
@media (max-width: 800px) { .watermark { display: none; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.55rem; border-radius: var(--radius); border: 2px solid transparent;
  font-family: Poppins, sans-serif; font-size: .93rem; font-weight: 600; letter-spacing: .01em;
  cursor: pointer; white-space: nowrap;
  transition: transform .18s ease, background-color .18s ease, color .18s ease,
              border-color .18s ease, box-shadow .18s ease;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 10px 22px -12px rgba(225, 38, 28, .85); }
.btn--primary:hover { background: var(--red-d); box-shadow: 0 16px 30px -12px rgba(225, 38, 28, .9); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; }
.btn--wa { background: #25d366; color: #05331a; }
.btn--wa:hover { background: #1fbb59; color: #fff; }
.btn--ghost { border-color: var(--line); color: var(--ink); background: #fff; }
.btn--ghost:hover { border-color: var(--red); color: var(--red); }
.section--dark .btn--ghost, .hero .btn--ghost, .cta-band .btn--ghost {
  background: transparent; border-color: rgba(255, 255, 255, .4); color: #fff;
}
.section--dark .btn--ghost:hover, .hero .btn--ghost:hover { background: #fff; border-color: #fff; color: var(--ink); }
.cta-band .btn--ghost:hover { background: #fff; border-color: #fff; color: var(--red); }
.btn--sm { padding: .62rem 1.05rem; font-size: .85rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.btn-row--center { justify-content: center; }

/* ---------- logo ---------- */
/* the workshop's own lockup: colour artwork on light surfaces,
   reversed (white wordmark) artwork on charcoal */
.logo { display: inline-flex; align-items: center; }
.logo__mark { height: 56px; width: auto; flex: none; }
.site-foot .logo__mark { height: 54px; }
.logo--lg .logo__mark { height: clamp(68px, 9vw, 96px); }

/* ---------- header ---------- */
.utility {
  background: var(--ink); color: #c9c9ce; font-size: .82rem;
}
.utility .wrap { display: flex; flex-wrap: wrap; gap: .3rem 1.4rem; align-items: center; padding-block: .5rem; }
.utility b { color: #fff; font-weight: 600; }
.utility .u-since { color: var(--red-l); font-weight: 600; letter-spacing: .04em; }
.utility a:hover { color: #fff; }
.utility .u-right { margin-left: auto; display: flex; gap: 1.2rem; }
@media (max-width: 760px) { .utility .u-right { display: none; } }

.site-head {
  position: sticky; top: 0; z-index: 60;
  background: #fff; border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(28, 28, 30, .02);
}
.head-inner { display: flex; align-items: center; gap: 1.1rem; min-height: var(--head-h); }
.brand { margin-right: auto; }

.nav { display: flex; align-items: center; gap: .15rem; }
.nav a {
  padding: .55rem .8rem; font-family: Poppins, sans-serif; font-size: .92rem; font-weight: 600;
  color: var(--charcoal); border-radius: var(--radius); position: relative;
  transition: color .15s ease, background-color .15s ease;
}
.nav a:hover { color: var(--red); background: var(--red-soft); }
.nav a.is-active { color: var(--red); }
.nav a.is-active::after {
  content: ""; position: absolute; left: .8rem; right: .8rem; bottom: .05rem;
  height: 3px; border-radius: 2px; background: var(--red);
}

.head-cta { display: flex; align-items: center; gap: .55rem; }
.head-phone {
  display: inline-flex; align-items: center; gap: .45rem; font-family: Poppins, sans-serif;
  font-weight: 700; font-size: .98rem; color: var(--ink); padding-inline: .3rem; white-space: nowrap;
}
.head-phone svg { width: 17px; height: 17px; color: var(--red); }
.head-phone:hover { color: var(--red); }

.burger {
  display: none; width: 46px; height: 42px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); cursor: pointer;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.burger span { width: 20px; height: 2px; background: var(--ink); display: block; transition: transform .2s ease, opacity .2s ease; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1060px) {
  .head-phone span { display: none; }
  .nav a { padding-inline: .55rem; font-size: .88rem; }
}
@media (max-width: 920px) {
  .burger { display: flex; }
  .nav {
    position: fixed; inset: auto 0 auto 0; top: var(--head-h); flex-direction: column;
    align-items: stretch; gap: 0; background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); padding: .4rem 1.2rem 1.3rem;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
    max-height: calc(100vh - var(--head-h)); overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { padding: .9rem .4rem; border-bottom: 1px solid var(--line); border-radius: 0; font-size: 1rem; }
  .nav a.is-active::after { left: .4rem; right: auto; width: 26px; bottom: .35rem; }
}
@media (max-width: 560px) {
  .head-inner { gap: .5rem; }
  .head-cta { gap: .4rem; }
  .head-cta .btn span { display: none; }
  .head-cta .btn { padding: .6rem .72rem; }
  .head-phone { display: none; }
  .logo__mark { height: 40px; }
}
@media (max-width: 400px) {
  .logo__mark { height: 34px; }
}

/* ---------- hero ---------- */
.hero { position: relative; background: var(--ink); overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(18, 18, 20, .92) 2%, rgba(20, 20, 22, .72) 34%, rgba(22, 22, 24, .18) 100%),
    linear-gradient(180deg, rgba(18, 18, 20, .5) 0%, transparent 30%);
}
/* on narrow screens the side-to-side gradient hides the photo, so go vertical */
@media (max-width: 900px) {
  .hero__media::after {
    background: linear-gradient(180deg, rgba(18, 18, 20, .5) 0%, rgba(20, 20, 22, .74) 40%, rgba(20, 20, 22, .93) 78%);
  }
  .page-hero__media::after {
    background: linear-gradient(180deg, rgba(18, 18, 20, .62) 0%, rgba(20, 20, 22, .86) 55%, rgba(20, 20, 22, .95) 100%);
  }
}
.hero__inner {
  position: relative; width: min(100% - 2.4rem, var(--wrap)); margin-inline: auto;
  padding-block: clamp(3.4rem, 8vw, 6.4rem);
  min-height: clamp(520px, 74vh, 720px); display: flex; align-items: center;
}
.hero__content { max-width: 44rem; }
.hero h1 { color: #fff; margin-bottom: .5rem; }
.hero h1 em { font-style: normal; color: var(--red-l); }
.hero__rule { width: 76px; height: 5px; border-radius: 3px; background: var(--red); margin: 1.1rem 0 1.4rem; }
.hero__sub { font-size: clamp(1rem, 1.5vw, 1.14rem); color: #d2d2d7; max-width: 52ch; margin-bottom: 1.9rem; }
.hero__badges { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.8rem; }

.pill {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .42rem .9rem; border-radius: 100px; font-size: .84rem; font-weight: 600;
  font-family: Poppins, sans-serif; background: #fff; color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.pill svg { width: 15px; height: 15px; color: var(--red); }
.pill--red { background: var(--red); color: #fff; }
.pill--red svg { color: #fff; }
.pill--outline { background: rgba(255, 255, 255, .1); color: #fff; box-shadow: none; border: 1px solid rgba(255, 255, 255, .28); }
.pill--outline svg { color: var(--red-l); }
.pill--tint { background: var(--red-soft); color: var(--red); box-shadow: none; }
.pill--tint svg { color: var(--red); }

.page-hero {
  position: relative; background: var(--ink); color: #fff; overflow: hidden;
  padding-block: clamp(2.8rem, 6vw, 4.4rem);
}
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(18, 18, 20, .9) 6%, rgba(20, 20, 22, .68) 48%, rgba(22, 22, 24, .3) 100%);
}
.page-hero .wrap { position: relative; }
.page-hero h1 { color: #fff; }
.page-hero .lead { color: #cfcfd4; }
.crumbs { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-l); margin-bottom: .9rem; }
.crumbs a:hover { color: var(--red-l); }

/* ---------- trust bar ---------- */
.trustbar { position: relative; z-index: 2; margin-top: -2.6rem; }
.trustbar__grid {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden;
}
.trustbar__item { padding: 1.4rem 1.3rem; display: flex; align-items: center; gap: .85rem; border-right: 1px solid var(--line); }
.trustbar__item:last-child { border-right: 0; }
.trustbar__icon {
  width: 42px; height: 42px; flex: none; border-radius: 50%; display: grid; place-items: center;
  background: var(--red-soft); color: var(--red);
}
.trustbar__icon svg { width: 21px; height: 21px; }
.trustbar__item b { display: block; font-family: Poppins, sans-serif; font-weight: 800; font-size: 1.12rem; color: var(--ink); line-height: 1.2; }
.trustbar__item span { font-size: .84rem; color: var(--gray); }
@media (max-width: 880px) {
  .trustbar { margin-top: -1.6rem; }
  .trustbar__grid { grid-template-columns: repeat(2, 1fr); }
  .trustbar__item:nth-child(2) { border-right: 0; }
  .trustbar__item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 460px) {
  .trustbar__grid { grid-template-columns: 1fr; }
  .trustbar__item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trustbar__item:last-child { border-bottom: 0; }
}

/* ---------- grids & cards ---------- */
.grid { display: grid; gap: 1.3rem; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(232px, 1fr)); }

.card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.7rem 1.55rem; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform .28s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(225, 38, 28, .3); }
.card:hover::before { transform: scaleX(1); }
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .95rem; color: #5d5d63; margin-bottom: 0; }
.card__icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: var(--red-soft); color: var(--red); margin-bottom: 1.15rem;
  transition: background-color .22s ease, color .22s ease;
}
.card__icon svg { width: 27px; height: 27px; }
.card:hover .card__icon { background: var(--red); color: #fff; }
.card__num {
  position: absolute; right: 1.1rem; top: .7rem;
  font-family: Poppins, sans-serif; font-weight: 800; font-size: 2.6rem;
  color: rgba(28, 28, 30, .05); line-height: 1;
}
.card__media { margin: -1.7rem -1.55rem 1.3rem; }
.card__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.section--dark .card { background: var(--ink-2); border-color: rgba(255, 255, 255, .1); }
.section--dark .card p { color: #b3b3b8; }

.svc-card { display: flex; flex-direction: column; }
.svc-card ul { margin: .95rem 0 0; padding-left: 1.1rem; font-size: .9rem; color: #5d5d63; }
.svc-card li { margin-bottom: .22rem; }
.svc-card .card__foot { margin-top: auto; padding-top: 1.35rem; }

.feature { display: flex; gap: 1rem; padding: 1.15rem 0; border-bottom: 1px solid var(--line); }
.feature:last-child { border-bottom: 0; }
.feature__icon {
  width: 46px; height: 46px; flex: none; display: grid; place-items: center;
  background: var(--red-soft); color: var(--red); border-radius: 12px;
}
.feature__icon svg { width: 23px; height: 23px; }
.feature h3 { font-size: 1.08rem; margin-bottom: .2rem; }
.feature p { font-size: .94rem; color: #5d5d63; margin: 0; }
.section--dark .feature { border-color: rgba(255, 255, 255, .1); }
.section--dark .feature p { color: #b3b3b8; }

.split { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(1.8rem, 4vw, 3.6rem); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.frame--tall img { aspect-ratio: 3 / 4; }
.frame__badge {
  position: absolute; left: 1rem; bottom: 1rem; background: #fff; color: var(--ink);
  padding: .7rem 1.1rem; border-radius: var(--radius); box-shadow: var(--shadow);
  font-family: Poppins, sans-serif; line-height: 1.2;
}
.frame__badge b { display: block; font-weight: 800; font-size: 1.3rem; color: var(--red); }
.frame__badge span { font-size: .74rem; color: var(--gray); font-weight: 600; letter-spacing: .04em; }
.frame-duo { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.frame-duo .frame:first-child { margin-top: 1.8rem; }

/* ---------- stars & reviews ---------- */
.stars { display: inline-flex; gap: 2px; color: #f5a623; }
.stars svg { width: 17px; height: 17px; }
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem; display: flex; flex-direction: column; gap: .85rem; height: 100%;
  box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease;
}
.quote:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.quote p { font-size: .97rem; margin: 0; color: #46464a; }
.quote__mark { font-family: Poppins, sans-serif; font-weight: 800; font-size: 2.4rem; line-height: .6; color: var(--red-soft); }
.quote__who { display: flex; align-items: center; gap: .8rem; margin-top: auto; padding-top: .3rem; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: var(--ink); color: #fff; font-family: Poppins, sans-serif; font-weight: 700; font-size: 1.05rem;
}
.quote__who b { display: block; font-size: .95rem; line-height: 1.3; color: var(--ink); }
.quote__who span { font-size: .82rem; color: var(--gray); }
.tag {
  align-self: flex-start; font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: .26rem .65rem; border-radius: 100px; background: var(--paper-2); color: var(--gray);
}

.carousel__track {
  display: flex; gap: 1.3rem; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: .4rem .2rem 1.1rem; scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track > * { flex: 0 0 min(100%, 370px); scroll-snap-align: start; }
.carousel__nav { display: flex; gap: .5rem; justify-content: flex-end; }
.carousel__btn {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; display: grid; place-items: center; cursor: pointer; color: var(--ink);
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.carousel__btn:hover { background: var(--red); color: #fff; border-color: var(--red); }
.carousel__btn svg { width: 19px; height: 19px; }

.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.9rem; }
.filter {
  padding: .5rem 1.05rem; border-radius: 100px; border: 1px solid var(--line); background: #fff;
  font-size: .86rem; font-weight: 500; cursor: pointer; color: var(--charcoal);
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.filter:hover { border-color: var(--red); color: var(--red); }
.filter.is-active { background: var(--red); border-color: var(--red); color: #fff; }

/* ---------- gallery ---------- */
.gal { display: grid; grid-template-columns: repeat(auto-fill, minmax(258px, 1fr)); gap: 1rem; }
.gal__item {
  position: relative; border: 0; padding: 0; background: var(--paper-2); cursor: zoom-in;
  border-radius: var(--radius-lg); overflow: hidden; display: block; box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.gal__item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.gal__item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .4s ease; }
.gal__item:nth-child(6n + 1) img, .gal__item:nth-child(6n + 4) img { aspect-ratio: 4 / 5; }
.gal__item:hover img { transform: scale(1.06); }
.gal__cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.8rem .95rem .85rem; text-align: left;
  background: linear-gradient(transparent, rgba(20, 20, 22, .88)); font-size: .88rem; font-weight: 500; color: #fff;
}
.gal__item:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }

.lightbox {
  position: fixed; inset: 0; z-index: 90; background: rgba(18, 18, 20, .95);
  display: grid; place-items: center; padding: 1.2rem;
  opacity: 0; pointer-events: none; transition: opacity .2s ease;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: min(96vw, 1100px); max-height: 82vh; object-fit: contain; border-radius: var(--radius); }
.lightbox__cap { text-align: center; margin-top: .9rem; color: #c9c9ce; font-size: .9rem; }
.lightbox__x, .lightbox__prev, .lightbox__next {
  position: absolute; background: rgba(255, 255, 255, .12); border: 0; color: #fff;
  width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: grid; place-items: center;
  transition: background-color .15s ease;
}
.lightbox__x:hover, .lightbox__prev:hover, .lightbox__next:hover { background: var(--red); }
.lightbox__x { top: 1rem; right: 1rem; }
.lightbox__prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox svg { width: 22px; height: 22px; }

/* ---------- info, map, hours ---------- */
.map-frame {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  background: var(--paper-2); aspect-ratio: 16 / 10; min-height: 320px; box-shadow: var(--shadow);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li { display: flex; gap: .9rem; padding: .95rem 0; border-bottom: 1px solid var(--line); }
.info-list li:last-child { border-bottom: 0; }
.info-list svg { width: 21px; height: 21px; color: var(--red); flex: none; margin-top: 4px; }
.info-list b { display: block; font-family: Poppins, sans-serif; font-weight: 700; font-size: .92rem; color: var(--ink); }
.info-list span, .info-list a { font-size: .95rem; color: #5d5d63; }
.info-list a:hover { color: var(--red); }
.section--dark .info-list li { border-color: rgba(255, 255, 255, .12); }
.section--dark .info-list b { color: #fff; }
.section--dark .info-list span, .section--dark .info-list a { color: #b3b3b8; }

.hours { width: 100%; border-collapse: collapse; font-size: .95rem; }
.hours th, .hours td { text-align: left; padding: .62rem .2rem; border-bottom: 1px solid var(--line); }
.hours th { font-family: Poppins, sans-serif; font-weight: 600; color: var(--ink); }
.hours td { text-align: right; color: #5d5d63; }
.hours tr.is-closed td { color: var(--red); font-weight: 600; }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }

/* ---------- forms ---------- */
.form { display: grid; gap: 1rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 620px) { .form__row { grid-template-columns: 1fr; } }
.field label {
  display: block; font-family: Poppins, sans-serif; font-weight: 600; font-size: .85rem;
  color: var(--ink); margin-bottom: .4rem;
}
.field input, .field select, .field textarea {
  width: 100%; padding: .82rem .95rem; border-radius: var(--radius);
  border: 1px solid var(--line); background: #fff; color: var(--text);
  font: inherit; font-size: .97rem; transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 128px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--red); box-shadow: 0 0 0 3px rgba(225, 38, 28, .14);
}
.field small { display: block; margin-top: .35rem; font-size: .8rem; color: var(--gray); }
.form__note { font-size: .86rem; color: var(--gray); }

.toast {
  position: fixed; left: 50%; bottom: 1.6rem; transform: translate(-50%, 130%);
  background: #fff; color: var(--ink); border: 1px solid var(--line); border-left: 4px solid #25d366;
  padding: .95rem 1.2rem; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  z-index: 95; max-width: min(92vw, 420px);
  display: flex; gap: .7rem; align-items: flex-start;
  transition: transform .25s ease, opacity .25s ease; opacity: 0; pointer-events: none;
}
.toast.is-on { transform: translate(-50%, 0); opacity: 1; }
.toast svg { width: 21px; height: 21px; color: #25d366; flex: none; margin-top: 2px; }
.toast b { display: block; font-family: Poppins, sans-serif; font-weight: 700; }
.toast p { margin: 0; font-size: .88rem; color: #5d5d63; }

/* ---------- team & badges ---------- */
.team-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.team-card__body { padding: 1.15rem 1.25rem 1.4rem; }
.team-card b { display: block; font-family: Poppins, sans-serif; font-weight: 700; font-size: 1.08rem; color: var(--ink); }
.team-card .role { font-size: .84rem; color: var(--red); font-weight: 600; }
.team-card p { font-size: .9rem; margin: .5rem 0 0; color: #5d5d63; }

.badges { display: flex; flex-wrap: wrap; gap: .65rem; }
.badge {
  border: 1px solid var(--line); border-radius: var(--radius); padding: .68rem 1.1rem;
  font-family: Poppins, sans-serif; font-weight: 600; font-size: .86rem; color: var(--charcoal);
  background: #fff; transition: border-color .18s ease, color .18s ease, transform .18s ease;
}
.badge:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }
.section--dark .badge { background: var(--ink-2); border-color: rgba(255, 255, 255, .12); color: #d2d2d7; }

.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1.2rem; }
.stat b {
  display: block; font-family: Poppins, sans-serif; font-weight: 800; color: var(--red);
  font-size: clamp(1.9rem, 4vw, 2.6rem); line-height: 1;
}
.stat span { font-size: .88rem; color: var(--gray); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--red); color: #fff; position: relative; overflow: hidden; }
.cta-band::after {
  content: ""; position: absolute; right: -60px; top: -40px; width: 320px; height: 320px;
  border-radius: 50%; background: rgba(255, 255, 255, .07);
}
.cta-band .wrap {
  position: relative; display: flex; flex-wrap: wrap; gap: 1.4rem; align-items: center;
  justify-content: space-between; padding-block: clamp(2.2rem, 4vw, 3.2rem);
}
.cta-band h2 { color: #fff; margin-bottom: .3rem; }
.cta-band p { margin: 0; font-size: 1rem; color: rgba(255, 255, 255, .88); }
.cta-band .btn--dark:hover { background: #fff; color: var(--red); }

/* ---------- footer ---------- */
.site-foot { background: var(--ink); color: #b3b3b8; padding-block: 3.4rem 1.6rem; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.25fr; gap: 2.2rem; }
@media (max-width: 920px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .foot-grid { grid-template-columns: 1fr; } }
.site-foot h4 {
  font-family: Poppins, sans-serif; font-weight: 700; font-size: 1rem; color: #fff;
  margin: 0 0 1.05rem; position: relative; padding-bottom: .6rem;
}
.site-foot h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 28px; height: 3px; border-radius: 2px; background: var(--red); }
.site-foot p, .site-foot li, .site-foot a { font-size: .93rem; }
.site-foot a:hover { color: var(--red-l); }
.foot-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.socials { display: flex; gap: .55rem; margin-top: 1.1rem; }
.socials a {
  width: 40px; height: 40px; border-radius: 10px; border: 1px solid rgba(255, 255, 255, .14);
  display: grid; place-items: center; transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.socials a:hover { background: var(--red); color: #fff; border-color: var(--red); }
.socials svg { width: 18px; height: 18px; }
.foot-bottom {
  margin-top: 2.8rem; padding-top: 1.3rem; border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; justify-content: space-between; font-size: .85rem; color: #85858b;
}

/* ---------- floating widgets ---------- */
.fab-wa {
  position: fixed; left: 18px; bottom: 18px; z-index: 70;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 12px 26px -10px rgba(37, 211, 102, .85);
  transition: transform .18s ease;
}
.fab-wa svg { width: 31px; height: 31px; }
.fab-wa:hover { transform: scale(1.07); }
.fab-wa::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25d366;
  animation: pulse 2.4s ease-out infinite; pointer-events: none;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .6; }
  70%, 100% { transform: scale(1.5); opacity: 0; }
}
.fab-wa__tip {
  position: absolute; left: 70px; top: 50%; transform: translateY(-50%) translateX(-6px);
  background: var(--ink); color: #fff; font-size: .82rem; white-space: nowrap;
  padding: .45rem .75rem; border-radius: var(--radius); opacity: 0; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease; box-shadow: var(--shadow); font-weight: 500;
}
.fab-wa:hover .fab-wa__tip { opacity: 1; transform: translateY(-50%) translateX(0); }
@media (max-width: 620px) { .fab-wa__tip { display: none; } }

.fab-bot {
  position: fixed; right: 18px; bottom: 18px; z-index: 70;
  width: 58px; height: 58px; border-radius: 50%; background: var(--red); color: #fff;
  border: 0; cursor: pointer; display: grid; place-items: center;
  box-shadow: 0 12px 26px -10px rgba(225, 38, 28, .85); transition: transform .18s ease;
}
.fab-bot:hover { transform: scale(1.07); }
.fab-bot svg { width: 29px; height: 29px; }
.fab-bot__dot {
  position: absolute; top: 1px; right: 1px; width: 14px; height: 14px; border-radius: 50%;
  background: #25d366; border: 2px solid #fff;
}
.fab-bot.is-open .fab-bot__dot { display: none; }

.bot {
  position: fixed; right: 18px; bottom: 88px; z-index: 75;
  width: min(360px, calc(100vw - 36px)); height: min(508px, calc(100vh - 124px));
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: 0 28px 60px -22px rgba(28, 28, 30, .45);
  display: flex; flex-direction: column; overflow: hidden;
  opacity: 0; transform: translateY(14px) scale(.97); transform-origin: bottom right;
  pointer-events: none; transition: opacity .18s ease, transform .18s ease;
}
.bot.is-open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.bot__head { background: var(--ink); color: #fff; padding: .9rem 1rem; display: flex; align-items: center; gap: .7rem; }
.bot__avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--red); color: #fff; display: grid; place-items: center; flex: none; }
.bot__avatar svg { width: 21px; height: 21px; }
.bot__head b { font-family: Poppins, sans-serif; font-weight: 700; font-size: .98rem; display: block; line-height: 1.25; }
.bot__head span { font-size: .76rem; color: #9ee6b8; display: flex; align-items: center; gap: .35rem; }
.bot__head span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #25d366; }
.bot__x { margin-left: auto; background: transparent; border: 0; cursor: pointer; color: #b3b3b8; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 8px; }
.bot__x:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.bot__x svg { width: 18px; height: 18px; }
.bot__log { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: .6rem; scroll-behavior: smooth; background: var(--paper-2); }
.bot__log::-webkit-scrollbar { width: 6px; }
.bot__log::-webkit-scrollbar-thumb { background: #d4d4d8; border-radius: 3px; }
.msg { max-width: 88%; display: flex; flex-direction: column; gap: .2rem; animation: msgIn .22s ease both; }
@keyframes msgIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.msg__b { padding: .68rem .9rem; border-radius: 14px; font-size: .92rem; line-height: 1.55; }
.msg--bot { align-self: flex-start; }
.msg--bot .msg__b { background: #fff; color: var(--text); border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.msg--me { align-self: flex-end; align-items: flex-end; }
.msg--me .msg__b { background: var(--red); color: #fff; border-bottom-right-radius: 4px; }
.msg__t { font-size: .68rem; color: var(--gray); padding-inline: .3rem; }
.msg__b a.btn { margin-top: .65rem; }
.msg__b strong { color: var(--red); }
.msg--me .msg__b strong { color: inherit; }
.typing { display: flex; gap: 4px; padding: .85rem .9rem; background: #fff; border: 1px solid var(--line); border-radius: 14px; border-bottom-left-radius: 4px; width: fit-content; }
.typing i { width: 7px; height: 7px; border-radius: 50%; background: var(--gray-l); animation: blink 1.2s infinite; }
.typing i:nth-child(2) { animation-delay: .18s; }
.typing i:nth-child(3) { animation-delay: .36s; }
@keyframes blink { 0%, 60%, 100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
.bot__quick { padding: .7rem .8rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: .4rem; background: #fff; }
.chip {
  border: 1px solid rgba(225, 38, 28, .35); background: var(--red-soft); color: var(--red);
  padding: .42rem .78rem; border-radius: 100px; font-size: .82rem; font-weight: 500; cursor: pointer;
  transition: background-color .15s ease, color .15s ease;
}
.chip:hover { background: var(--red); color: #fff; }
@media (max-width: 420px) { .bot { bottom: 84px; height: min(455px, calc(100vh - 116px)); } }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .4s ease, transform .4s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- 404 ---------- */
.err { min-height: 66vh; display: grid; place-items: center; text-align: center; padding-block: 4rem; }
.err__code { font-family: Poppins, sans-serif; font-weight: 800; font-size: clamp(5rem, 19vw, 10rem); line-height: .9; color: var(--red); }

.skip {
  position: absolute; left: -999px; top: 0; background: var(--red); color: #fff;
  padding: .7rem 1.1rem; z-index: 100; border-radius: 0 0 var(--radius) 0;
}
.skip:focus { left: 0; }
