/* Namma Honda — landing page */

:root {
  --red: #E2231A;
  --red-deep: #B01116;
  --ink: #141210;
  --paper: #FFFFFF;
  --smoke: #F6F5F2;
  --slate: #59554F;
  --line: #E8E5E0;
  --shell: 1160px;
  --display: "Archivo Black", "Archivo", sans-serif;
  --body: "Archivo", sans-serif;
  --kannada: "Anek Kannada", "Archivo", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

.shell { max-width: var(--shell); margin: 0 auto; padding: 0 24px; }

a { color: inherit; }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- type ---------- */

h1, h2, h3 { line-height: 1.05; }

h2 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 18px;
}

.eyebrow-light { color: #FFD9D6; }

.section-lead {
  max-width: 560px;
  color: var(--slate);
  margin-top: 18px;
  font-size: 1.05rem;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  padding: 12px 22px;
  font-size: 0.95rem;
  transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.btn-lg { padding: 16px 30px; font-size: 1.05rem; }

.btn-solid { background: var(--red); color: #fff; }
.btn-solid:hover { background: var(--red-deep); }

.btn-ghost { border: 2px solid var(--ink); color: var(--ink); }
.btn-ghost:hover { border-color: var(--red); color: var(--red); }

.btn svg { width: 16px; height: 16px; fill: currentColor; }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 4px 24px rgba(20, 18, 16, 0.06);
}

.header-row {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 76px;
}

.brand img { width: 132px; height: auto; }

.site-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.site-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
}

.site-nav a:hover { color: var(--red); }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  color: var(--ink);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  white-space: nowrap;
  transition: border-color 0.18s ease, color 0.18s ease;
}

.lang-toggle:hover { border-color: var(--red); color: var(--red); }

/* ---------- hero ---------- */

.hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 32px;
  padding-top: 64px;
}

.hero h1 {
  font-size: clamp(3.4rem, 9vw, 7rem);
  text-transform: uppercase;
  margin: 8px 0 26px;
}

.hero h1 .kn {
  font-family: var(--kannada);
  font-weight: 800;
  color: var(--red);
  display: block;
  line-height: 1.15;
}

.hero h1 .latin {
  font-family: var(--display);
  display: block;
  letter-spacing: -0.015em;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--slate);
  max-width: 470px;
  margin-bottom: 34px;
}

.hero-sub em { font-style: normal; font-weight: 700; color: var(--ink); }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }

.hero-art {
  align-self: center;
  margin-right: -14%;
  padding-bottom: 40px;
}

.hero-art img { width: 100%; }

/* stats */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  padding: 30px 0 38px;
  gap: 24px;
}

.stats > div { border-left: 3px solid var(--red); padding-left: 18px; }

.stats dt {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--slate);
}

.stats dd {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-variant-numeric: tabular-nums;
  margin-top: 2px;
}

.stat-tel { font-size: clamp(1.2rem, 1.7vw, 1.5rem); white-space: nowrap; align-self: center; }

.stat-tel a { text-decoration: none; color: var(--ink); }
.stat-tel a:hover { color: var(--red); }

/* ---------- why ---------- */

.why { padding: 96px 0; background: var(--smoke); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.why-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 30px 28px;
}

.why-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card h3::before {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin-bottom: 16px;
}

.why-card p { color: var(--slate); font-size: 0.98rem; }

/* ---------- services ---------- */

.services { padding: 96px 0; }

.service-list {
  list-style: none;
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-list li {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 24px;
}

.service-list strong { display: block; font-size: 1.02rem; margin-bottom: 6px; }

.service-list span { color: var(--slate); font-size: 0.92rem; }

.service-note {
  margin-top: 32px;
  color: var(--slate);
}

.service-note a { color: var(--red); font-weight: 700; }

/* ---------- branches ---------- */

.branches { padding: 96px 0; background: var(--smoke); }

.branch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.branch-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px 24px;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.branch-card:hover { border-color: var(--red); transform: translateY(-2px); }

.branch-card h3 { font-size: 1.2rem; font-weight: 700; }

.branch-card p { color: var(--slate); font-size: 0.88rem; margin: 6px 0 18px; min-height: 2.6em; }

.branch-links { display: flex; gap: 18px; }

.branch-links a {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--red);
  text-decoration: none;
  border-bottom: 2px solid currentColor;
  padding-bottom: 1px;
}

.branch-links a:hover { color: var(--red-deep); }

/* ---------- reviews ---------- */

.reviews { background: var(--ink); color: #fff; padding: 88px 0; }

.reviews-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 56px;
}

.rating {
  font-family: var(--display);
  font-size: clamp(4.5rem, 10vw, 8rem);
  line-height: 1;
}

.rating .star { color: var(--red); }

.reviews-copy h2 { margin-bottom: 16px; }

.reviews-copy p { color: #B9B4AD; max-width: 520px; font-size: 1.05rem; }

/* ---------- contact ---------- */

.contact { background: var(--red); color: #fff; padding: 88px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.contact-sub { color: #FFD9D6; max-width: 440px; margin-top: 14px; }

.contact-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }

.contact-tel {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  text-decoration: none;
  color: #fff;
  line-height: 1.1;
  border-bottom: 4px solid rgba(255, 255, 255, 0.4);
  transition: border-color 0.18s ease;
}

.contact-tel:hover { border-color: #fff; }

.contact-mail { color: #FFD9D6; font-size: 1rem; }

/* ---------- footer ---------- */

.site-footer { background: #000; color: #B9B4AD; padding: 72px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: start;
  padding-bottom: 56px;
}

.footer-brand img { width: 210px; }

.footer-tagline { margin-top: 14px; font-size: 0.88rem; color: #8A857E; font-style: italic; }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 220px));
  gap: 40px;
  justify-content: end;
}

.footer-cols h4 {
  color: #fff;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
}

.footer-cols ul { list-style: none; }

.footer-cols li { font-size: 0.92rem; margin-bottom: 8px; }

.footer-cols a { color: #B9B4AD; text-decoration: none; }
.footer-cols a:hover { color: #fff; }

.footer-legal {
  border-top: 1px solid #1E1C1A;
  padding-top: 24px;
  padding-bottom: 28px;
}

.footer-legal p { font-size: 0.78rem; color: #6F6A63; max-width: 720px; }

/* ---------- WhatsApp float ---------- */

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.18s ease;
}

.wa-float:hover { transform: scale(1.06); }

.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- reveal motion ---------- */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .branch-card { transition: none; }
}

/* ---------- Kannada page (html lang="kn") ----------
   Kannada script needs taller line-height (conjuncts + vowel marks),
   no negative letter-spacing, and Anek Kannada instead of Archivo Black
   for headings (Archivo has no Kannada glyphs). */

html[lang="kn"] body { font-family: var(--kannada); line-height: 1.75; }

html[lang="kn"] h1, html[lang="kn"] h2, html[lang="kn"] h3 { line-height: 1.3; }

html[lang="kn"] h2 {
  font-family: var(--kannada);
  font-weight: 800;
  letter-spacing: 0;
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
}

html[lang="kn"] .eyebrow { letter-spacing: 0.05em; font-size: 0.88rem; }

html[lang="kn"] .stats dt,
html[lang="kn"] .footer-cols h4 { letter-spacing: 0.05em; font-size: 0.82rem; }

html[lang="kn"] .branch-card p { min-height: 3em; }

/* ---------- responsive ---------- */

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; padding-top: 48px; }
  .hero-art { order: -1; margin: 0 -30% -4% auto; width: 70%; max-width: 420px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .service-list { grid-template-columns: repeat(2, 1fr); }
  .branch-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { justify-content: start; }
}

@media (max-width: 640px) {
  .site-nav { display: none; }
  .header-row { height: 68px; }
  .stats { grid-template-columns: 1fr 1fr; gap: 20px 16px; }
  .footer-cols { grid-template-columns: 1fr; gap: 28px; }
  .brand img { width: 112px; }
  .lang-toggle { margin-left: auto; padding: 6px 12px; font-size: 0.78rem; }
  .header-call { padding: 10px 16px; font-size: 0.88rem; }
  .service-list { grid-template-columns: 1fr; }
  .branch-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(3rem, 16vw, 4.4rem); }
  .why, .services, .branches { padding: 72px 0; }
}
