/* Tulsyan Motors Private Limited — tulsyanmotors.in
   Palette taken from the dealership itself: Maruti Suzuki ARENA navy and silver
   from the fascia, warm amber from the showroom ceiling lighting.
   Plain CSS, no build step. */

:root {
  --navy:       #102657;   /* ARENA fascia navy */
  --navy-deep:  #0A1838;
  --navy-lift:  #1B4B9E;   /* brighter Suzuki blue, used sparingly */
  --amber:      #C9963F;   /* showroom ceiling light */
  --amber-lit:  #E0B25C;
  --ink:        #15181D;
  --ink-soft:   #5D6673;
  --silver:     #EEF1F5;   /* ACP panel */
  --line:       #DDE3EA;
  --paper:      #FFFFFF;
  --radius:     4px;
  --wrap:       1180px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.68;
  font-size: 16.5px;
}

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  font-family: "Archivo Expanded", "Archivo", sans-serif;
  font-weight: 700; line-height: 1.1; letter-spacing: -.015em;
}
h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.12rem; }
p  { margin: 0 0 1.1em; }
a  { color: var(--navy-lift); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 26px; }
.section { padding: 82px 0; }
.section--silver { background: var(--silver); border-block: 1px solid var(--line); }
.lede { font-size: 1.12rem; color: var(--ink-soft); max-width: 60ch; }

/* letterspaced caps — echoes "MOTORS" in the logo */
.eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: .26em;
  text-transform: uppercase; color: var(--amber); margin-bottom: .9em;
}

/* ---------- header: white ACP panel, navy mark ---------- */
.site-header {
  background: var(--paper); border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; min-height: 82px;
}
.brand img { height: 40px; width: auto; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { color: var(--ink); font-size: .92rem; font-weight: 500; }
.nav a:hover { color: var(--navy-lift); text-decoration: none; }
.nav a.btn { color: #fff; }
.nav a.btn:hover { color: #fff; }

.btn {
  display: inline-block; padding: 12px 26px; border-radius: var(--radius);
  background: var(--navy); color: #fff; font-weight: 600; font-size: .92rem;
  border: 1.5px solid var(--navy); transition: background .16s ease, border-color .16s ease;
  letter-spacing: .01em;
}
.btn:hover { background: var(--navy-lift); border-color: var(--navy-lift); text-decoration: none; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--lg { padding: 15px 32px; font-size: 1rem; }

/* ---------- hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: var(--navy-deep) url("/img/exterior.jpg") center 60% / cover no-repeat;
  padding: 148px 0 104px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(10,24,56,.92) 0%, rgba(10,24,56,.66) 40%, rgba(10,24,56,.90) 100%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero h1 { color: #fff; max-width: 17ch; }
.hero-sub { margin-top: 22px; max-width: 46ch; font-size: 1.08rem; color: rgba(255,255,255,.82); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero .eyebrow { color: var(--amber-lit); }

/* ---------- services: editorial rows, not cards ---------- */
.rows { margin-top: 42px; }
.row {
  display: grid; grid-template-columns: 62px 1.05fr 1.35fr; gap: 32px;
  align-items: baseline; padding: 26px 0; border-top: 1px solid var(--line);
  transition: padding-left .22s ease;
}
.row:last-child { border-bottom: 1px solid var(--line); }
.row:hover { padding-left: 12px; }
.row .n {
  font-size: .74rem; font-weight: 700; letter-spacing: .16em; color: var(--amber);
}
.row h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); margin: 0; }
.row p { color: var(--ink-soft); font-size: .97rem; margin: 0; max-width: 48ch; }

/* ---------- photo band ---------- */
.band { margin: 0; position: relative; }
.band img { width: 100%; height: clamp(300px, 44vw, 540px); object-fit: cover; }
.band figcaption {
  background: var(--navy); color: rgba(255,255,255,.7);
  font-size: .84rem; letter-spacing: .04em; padding: 14px 22px; text-align: center;
}
.figpair { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.figpair figure { margin: 0; }
.figpair img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius); border: 1px solid var(--line);
}
.figpair figcaption { margin-top: 9px; font-size: .84rem; color: var(--ink-soft); }

/* ---------- panels / detail lists ---------- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.panel {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px;
}
.panel h3 { font-size: 1.05rem; margin-bottom: 1em; }
.dl { margin: 0; }
.dl div {
  display: flex; flex-wrap: wrap; gap: 6px 16px;
  padding: 12px 0; border-bottom: 1px solid var(--line);
}
.dl div:last-child { border-bottom: 0; }
.dl dt { font-weight: 600; min-width: 190px; margin: 0; font-size: .92rem; }
.dl dd { margin: 0; color: var(--ink-soft); font-size: .92rem; }
address { font-style: normal; }

/* ---------- legal pages ---------- */
.legal { max-width: 74ch; }
.legal h2 { margin-top: 2em; font-size: 1.3rem; }
.legal h3 { margin-top: 1.6em; font-size: 1.02rem; }
.legal ul { padding-left: 1.2em; color: var(--ink-soft); }
.legal li { margin-bottom: .5em; }
.legal .updated { color: var(--ink-soft); font-size: .88rem; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.62); padding: 66px 0 30px; font-size: .9rem; }
.site-footer img.flogo { height: 42px; margin-bottom: 16px; }
.site-footer a { color: rgba(255,255,255,.82); }
.site-footer a:hover { color: #fff; }
.site-footer h4 {
  color: #fff; font-size: .72rem; text-transform: uppercase;
  letter-spacing: .22em; margin-bottom: 1.2em; font-family: "Archivo", sans-serif; font-weight: 700;
}
.footer-grid { display: grid; gap: 36px; grid-template-columns: 1.6fr 1fr 1fr 1fr; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: .55em; }
.legal-strip {
  margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14);
  font-size: .78rem; line-height: 1.95; color: rgba(255,255,255,.45);
}
.legal-strip strong { color: rgba(255,255,255,.8); font-weight: 600; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav { gap: 20px; }
}
@media (max-width: 700px) {
  .section { padding: 56px 0; }
  .hero { padding: 96px 0 72px; }
  .site-header .wrap { min-height: 68px; }
  .brand img { height: 32px; }
  .nav a:not(.btn) { display: none; }
  .nav .btn { padding: 10px 18px; font-size: .88rem; }
  .row { grid-template-columns: 40px 1fr; gap: 14px; }
  .row p { grid-column: 2; margin-top: 6px; }
  .dl dt { min-width: 100%; }
  .panel { padding: 22px; }
  .figpair { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; text-align: center; }
}
