/* ==========================================================================
   GaadiMela.in — Aradhya Car Bazar, Gwalior
   Hand-built static site · HTML + CSS + JS only
   Palette drawn from the Aradhya Car Bazar badge: deep navy + warm orange
   ========================================================================== */

:root {
  --ink: #182252;          /* deep navy from the logo badge */
  --ink-soft: #2a3775;
  --ink-faint: #4d569b;
  --paper: #f7f2ea;        /* warm off-white ground */
  --paper-deep: #efe7d9;
  --card: #fffdf8;
  --orange: #e2622b;       /* logo orange */
  --orange-deep: #c74e1d;
  --orange-soft: #f0a05a;
  --plate-yellow: #f7c948; /* commercial number-plate yellow */
  --line: #182252;
  --muted: #5a6285;
  --ok: #1e7d4f;
  --shadow-hard: 6px 6px 0 rgba(24, 34, 82, 0.16);
  --shadow-pop: 8px 8px 0 var(--ink);
  --radius: 16px;
  --radius-sm: 10px;
  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Manrope", "Segoe UI", -apple-system, sans-serif;
}

/* ---------- Reset & base ---------- */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--orange-deep); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

h1, h2, h3, h4 { margin: 0 0 0.4em; line-height: 1.05; }

p { margin: 0 0 1em; }

.container {
  width: min(1180px, 100% - 2.5rem);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 300;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

/* ---------- Typography helpers ---------- */

.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.section-head { margin-bottom: 2.4rem; max-width: 640px; }
.section-head h2 {
  font-size: clamp(2.3rem, 5vw, 3.4rem);
}
.section-head .lede { color: var(--muted); font-size: 1.05rem; margin: 0; }

.section-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  color: var(--muted);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.18rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.72rem 1.6rem 0.6rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--ink);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 4px 4px 0 var(--ink);
}
.btn-primary:hover {
  background: var(--orange-deep);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 4px 4px 0 rgba(24, 34, 82, 0.25);
}
.btn-dark:hover { background: var(--ink-soft); transform: translate(-2px, -2px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}
.btn-ghost:hover { background: var(--ink); color: #fff; }

.btn:active { transform: translate(1px, 1px); box-shadow: 2px 2px 0 var(--ink); }

/* ---------- Number-plate chip (signature motif) ---------- */

.plate {
  display: inline-flex;
  align-items: stretch;
  border: 2px solid var(--ink);
  border-radius: 7px;
  overflow: hidden;
  background: #fff;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  line-height: 1;
  box-shadow: 3px 3px 0 rgba(24, 34, 82, 0.18);
}
.plate .plate-band {
  background: var(--ink);
  color: #fff;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.28rem 0.34rem;
  gap: 2px;
}
.plate .plate-band::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--plate-yellow);
}
.plate .plate-text {
  padding: 0.5rem 0.75rem 0.38rem;
  font-size: 1.05rem;
  color: var(--ink);
  display: flex;
  align-items: center;
}
.plate--yellow .plate-text { background: var(--plate-yellow); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(247, 242, 234, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--ink);
  transition: box-shadow 0.25s ease;
}
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(24, 34, 82, 0.12); }

.nav-bar {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 0.65rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-right: auto;
}
.brand:hover { text-decoration: none; }
.brand img { width: 54px; height: auto; }
.brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  line-height: 0.9;
}
.brand .brand-tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { text-decoration: none; border-bottom-color: var(--orange); }
.nav-links a.is-active { border-bottom-color: var(--orange); color: var(--orange-deep); }

.nav-cta { display: flex; align-items: center; gap: 0.7rem; }
.nav-cta .btn { font-size: 0.98rem; padding: 0.5rem 1rem 0.42rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 0.45rem 0.55rem;
  cursor: pointer;
}
.nav-toggle .bar {
  display: block;
  width: 20px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle .bar + .bar { margin-top: 4.5px; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (editorial collage: photos, tape, stamp, scribbles) ---------- */

.hero {
  position: relative;
  padding: 4.2rem 0 4.6rem;
  overflow: hidden;
}
.hero::before {
  /* faint blueprint grid */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(24, 34, 82, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 34, 82, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, #000 65%, transparent);
  -webkit-mask-image: linear-gradient(180deg, #000 65%, transparent);
  pointer-events: none;
}

.hero-ghost {
  position: absolute;
  top: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(6rem, 16vw, 14rem);
  letter-spacing: 0.22em;
  line-height: 1;
  color: var(--ink);
  opacity: 0.05;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.fort {
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: clamp(150px, 24vw, 300px);
  color: var(--ink);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}
.fort .fort-dome { fill: var(--orange); }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 3.4rem;
  align-items: center;
  z-index: 1;
}
@media (min-width: 901px) {
  .hero-copy { order: 2; }
  .hero-photos { order: 1; }
}

.hero-h1 {
  font-size: clamp(3rem, 6.4vw, 5.1rem);
  line-height: 0.95;
  margin: 0.4rem 0 1.2rem;
}
.scribble { position: relative; display: inline-block; }
.scribble-line {
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -0.16em;
  width: 104%;
  height: 0.2em;
  color: var(--orange);
  pointer-events: none;
}

.hero .lede {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 48ch;
  margin-bottom: 1.7rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2.6rem;
  margin-top: 2.2rem;
  padding-top: 1.5rem;
  border-top: 2px dashed rgba(24, 34, 82, 0.25);
}
.hero-proof .proof b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  letter-spacing: 0.04em;
}
.hero-proof .proof span {
  font-family: "Kalam", "Comic Sans MS", cursive;
  font-size: 0.95rem;
  color: var(--muted);
}

/* --- the photo collage --- */

.hero-photos {
  position: relative;
  animation: settle 0.8s ease both;
}
@keyframes settle {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: none; opacity: 1; }
}

.photo {
  margin: 0;
  background: var(--card);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-hard);
}
.photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1.5px solid rgba(24, 34, 82, 0.3);
}

.photo-main {
  position: relative;
  width: 82%;
  margin-right: auto;
  padding: 12px 12px 10px;
  transform: rotate(-2.4deg);
  z-index: 2;
}
.photo-main figcaption {
  font-family: "Kalam", "Comic Sans MS", cursive;
  font-size: 1.02rem;
  color: var(--ink-soft);
  padding: 0.55rem 0.2rem 0.25rem;
  text-align: center;
}
/* masking tape on the top corners */
.photo-main::before,
.photo-main::after {
  content: "";
  position: absolute;
  width: 88px;
  height: 28px;
  background: rgba(235, 215, 165, 0.75);
  border: 1px solid rgba(24, 34, 82, 0.14);
  box-shadow: 0 1px 3px rgba(24, 34, 82, 0.12);
}
.photo-main::before { top: -13px; left: 14px; transform: rotate(-6deg); }
.photo-main::after { top: -11px; right: 20px; transform: rotate(5deg); }

.photo-back {
  position: absolute;
  right: -2%;
  bottom: -6%;
  width: 52%;
  padding: 9px;
  transform: rotate(5deg);
  z-index: 1;
}

.stamp {
  position: absolute;
  right: 4%;
  top: -34px;
  width: clamp(96px, 10vw, 138px);
  height: auto;
  color: var(--orange-deep);
  opacity: 0.92;
  transform: rotate(12deg);
  z-index: 3;
  filter: drop-shadow(-1px 2px 0 rgba(24, 34, 82, 0.14));
}

.hero-photos .hero-plate {
  position: absolute;
  left: 3%;
  bottom: -20px;
  transform: rotate(-3deg);
  z-index: 3;
}

/* ---------- Marquee ticker ---------- */

.ticker {
  background: var(--ink);
  border-block: 2px solid var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding: 0.55rem 0;
}
.ticker-track {
  display: flex;
  gap: 2.6rem;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track span {
  font-family: var(--font-display);
  font-size: 1.12rem;
  letter-spacing: 0.14em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 2.6rem;
}
.ticker-track span::after { content: "◆"; color: var(--orange); font-size: 0.7rem; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */

.section { padding: 5rem 0; }
.section-alt { background: var(--paper-deep); border-block: 2px solid var(--ink); }
.section-dark { background: var(--ink); color: var(--paper); }
.section-dark .section-head .lede { color: #aeb6dd; }
.section-dark .eyebrow { color: var(--orange-soft); }

/* ---------- Brand grid (sell page + home) ---------- */

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
}
.brand-tile {
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  padding: 1.1rem 0.8rem 0.9rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--ink);
}
.brand-tile img {
  height: 44px;
  width: auto;
  margin: 0 auto 0.6rem;
  object-fit: contain;
}
.brand-tile:hover,
.brand-tile:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
  text-decoration: none;
}
.brand-tile.is-selected {
  background: var(--ink);
  color: #fff;
  box-shadow: 5px 5px 0 var(--orange);
}
.brand-tile.brand-more {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  background: var(--plate-yellow);
}

/* ---------- Sell steps ---------- */

.step-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2.2rem;
}
.step-card {
  position: relative;
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem 1.4rem;
  box-shadow: var(--shadow-hard);
}
.step-card .step-no {
  position: absolute;
  top: -1.1rem;
  left: 1.2rem;
  background: var(--orange);
  color: #fff;
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  padding: 0.28rem 0.6rem 0.18rem;
}
.step-card img { height: 96px; width: auto; margin-bottom: 0.8rem; }
.step-card h3 { font-size: 1.15rem; }
.step-card p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* ---------- Assurance / why us ---------- */

.assure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.2rem;
}
.assure-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.3rem;
}
.assure-item .tick {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  border: 2px solid var(--paper);
}
.assure-item p { margin: 0; font-weight: 600; }
.assure-item small { color: #aeb6dd; font-weight: 500; }

/* ---------- Body-type tabs & car cards ---------- */

.type-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.2rem;
}
.type-tab {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--card);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 0.5rem 1.25rem 0.38rem;
  cursor: pointer;
  transition: all 0.15s ease;
}
.type-tab:hover { transform: translateY(-2px); box-shadow: 0 4px 0 var(--ink); }
.type-tab.is-active {
  background: var(--ink);
  color: var(--plate-yellow);
  box-shadow: 3px 3px 0 var(--orange);
}

.car-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: 1.5rem;
}

.car-card {
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.car-card:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-pop); }
.car-card .car-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  background: var(--paper-deep);
}
.car-card .car-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.car-card:hover .car-photo img { transform: scale(1.05); }
.car-card .car-body { padding: 1.1rem 1.15rem 1.2rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.car-card .car-type {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-deep);
}
.car-card h3 { font-size: 1.22rem; margin: 0; }
.car-card .car-price { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; }
.car-card .car-price .plate .plate-text { font-size: 0.98rem; }
.car-card .car-cta {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--ink);
  border-bottom: 2px solid var(--orange);
}
.car-card .car-cta:hover { text-decoration: none; color: var(--orange-deep); }

.car-card.is-hidden { display: none; }

/* ---------- FAQ accordion ---------- */

.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: 0.9rem; }

.faq-item {
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.faq-item.is-open { box-shadow: var(--shadow-hard); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  font: inherit;
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--ink);
  text-align: left;
  padding: 1.05rem 1.25rem;
  cursor: pointer;
}
.faq-q .faq-icon {
  flex: none;
  width: 30px;
  height: 30px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1;
  background: var(--plate-yellow);
  transition: transform 0.25s ease, background 0.25s ease;
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); background: var(--orange); color: #fff; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a-inner {
  padding: 0 1.25rem 1.2rem;
  color: var(--muted);
  border-top: 2px dashed rgba(24, 34, 82, 0.18);
  padding-top: 0.9rem;
  margin-inline: 1.25rem;
  padding-inline: 0;
}

/* ---------- Visit / contact strip ---------- */

.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.visit-card {
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-hard);
}
.visit-card h3 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
}
.visit-card h3 .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  border: 2px solid var(--ink);
}
.visit-card p { margin: 0 0 0.35rem; color: var(--muted); font-size: 0.98rem; }
.visit-card a { font-weight: 700; }

.map-frame {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hard);
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

/* ---------- Road divider ---------- */

.road-divider {
  position: relative;
  height: 46px;
  margin: 0;
  overflow: hidden;
}
.road-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 3px dashed rgba(24, 34, 82, 0.3);
}

/* ---------- CTA banner ---------- */

.cta-banner {
  background: var(--orange);
  border-block: 2px solid var(--ink);
  color: #fff;
  padding: 3.4rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 240px;
  height: 240px;
  border: 3px dashed rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}
.cta-banner .cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
}
.cta-banner h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin: 0; }
.cta-banner p { margin: 0.3rem 0 0; opacity: 0.92; }
.cta-banner .btn { border-color: var(--ink); }

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  padding: 4rem 0 3.2rem;
  border-bottom: 2px solid var(--ink);
  background:
    linear-gradient(rgba(24, 34, 82, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 34, 82, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
}
.page-hero h1 { font-size: clamp(2.8rem, 6vw, 4.4rem); }
.page-hero .lede { color: var(--muted); max-width: 60ch; font-size: 1.08rem; margin: 0; }
.breadcrumb {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb span { color: var(--orange-deep); }

/* ---------- About page ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.about-figure {
  position: relative;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-pop);
  background: #fff;
}
.about-figure img { width: 100%; }

.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.stat-card {
  text-align: center;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1rem 1.2rem;
  background: var(--card);
  box-shadow: var(--shadow-hard);
}
.stat-card b {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  letter-spacing: 0.03em;
  color: var(--orange-deep);
}
.stat-card span { font-size: 0.85rem; font-weight: 700; color: var(--muted); }

.value-list { display: grid; gap: 1rem; margin: 0; padding: 0; list-style: none; }
.value-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.value-list .val-num {
  flex: none;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  padding: 0.3rem 0.55rem 0.15rem;
}
.value-list b { display: block; }
.value-list p { margin: 0.1rem 0 0; color: var(--muted); font-size: 0.95rem; }

.about-grid h2.display,
.contact-grid h2.display {
  font-size: clamp(2rem, 4.2vw, 3rem);
}

/* ---------- Contact page ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.6rem;
  align-items: start;
}

.contact-form {
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-pop);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  font: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  transition: box-shadow 0.15s ease;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  box-shadow: 3px 3px 0 var(--orange);
}
.field textarea { resize: vertical; min-height: 130px; }

.form-note { font-size: 0.85rem; color: var(--muted); margin: 0.8rem 0 0; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: #cdd3ef;
  border-top: 2px solid var(--ink);
  margin-top: 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 2.4rem;
  padding: 3.6rem 0 2.6rem;
}
.footer-brand img { width: 84px; margin-bottom: 0.9rem; background: #fff; border-radius: 50%; padding: 6px; }
.footer-brand p { font-size: 0.95rem; color: #aeb6dd; max-width: 34ch; }
.site-footer h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  color: var(--plate-yellow);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.footer-links a { color: #cdd3ef; font-size: 0.95rem; }
.footer-links a:hover { color: var(--orange-soft); }
.footer-contact p { display: flex; gap: 0.6rem; font-size: 0.93rem; margin-bottom: 0.7rem; color: #aeb6dd; }
.footer-contact a { color: #fff; font-weight: 700; }
.footer-contact .ico { color: var(--orange-soft); font-style: normal; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 1.3rem 0;
}
.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.88rem;
}
.dev-credit {
  color: #cdd3ef;
}
.dev-credit a {
  color: var(--plate-yellow);
  font-weight: 800;
}
.dev-credit a:hover { color: var(--orange-soft); }

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-photos { animation: none; }
  .ticker-track { animation-duration: 90s; }
  html { scroll-behavior: auto; }
}

/* ---------- 404 ---------- */

.notfound {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 0;
}
.notfound .display { font-size: clamp(5rem, 16vw, 10rem); color: var(--orange); line-height: 1; }

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stat-band { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.6rem; }
  .hero-photos { max-width: 520px; margin-inline: auto; width: 100%; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .step-row { grid-template-columns: 1fr; gap: 1.8rem; }
  .visit-grid { grid-template-columns: 1fr; }

  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 2px solid var(--ink);
    padding: 0.6rem 1.25rem 1rem;
    display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { display: block; padding: 0.7rem 0.2rem; border-bottom: 1px solid rgba(24, 34, 82, 0.12); }
  .nav-cta .btn-call-label { display: none; }
}

@media (max-width: 560px) {
  body { font-size: 15.5px; }
  .hero-proof { gap: 1rem 1.8rem; }
  .hero-proof .proof b { font-size: 1.5rem; }
  .photo-main { width: 88%; }
  .photo-back { width: 56%; bottom: -8%; }
  .stamp { top: -26px; }
  .hero-photos .hero-plate .plate-text { font-size: 0.85rem; }
  .section { padding: 3.6rem 0; }
  .brand .brand-tag { display: none; }
  .brand img { width: 44px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer-bottom .container { justify-content: center; text-align: center; }
  .nav-cta .btn-dev { display: none; }
  .hero-actions .btn { flex: 1; }
}
