/* ============================================================
   Ultratech Automotive Pvt. Ltd. — Site Stylesheet
   Tokens: red/black/white brand, cream sand for warm sections
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root{
  --ink: #18130f;
  --ink-soft: #322a24;
  --paper: #ffffff;
  --sand: #f2e8d3;
  --sand-dark: #e7d9b8;
  --red: #c22f4a;
  --red-dark: #8e2038;
  --steel: #5c564c;
  --steel-light: #8a8378;
  --line: #e6ddc9;
  --line-dark: #2a231d;

  --font-head: 'Archivo', sans-serif;
  --font-body: 'Inter', sans-serif;

  --max-w: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
h1,h2,h3,h4{
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.5px;
}
p{ margin: 0 0 1em; max-width: 62ch; text-wrap: pretty; }
h1,h2,h3,h4{ text-wrap: balance; }
ul{ margin: 0; padding: 0; }
button{ font-family: inherit; }

:focus-visible{
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

.wrap{
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.eyebrow{
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  color: var(--red);
}

/* ---------- Road-stripe motif (from the logo mark) ---------- */
.stripes{
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 84px;
}
.stripes span{
  display: block;
  height: 7px;
  background: var(--ink);
}
.stripes span:last-child{ width: 68%; }
.stripes.center{ margin: 0 auto; align-items: center; }
.stripes.center span:last-child{ width: 68%; }
.stripes.on-dark span{ background: var(--paper); }

/* ---------- Header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img{
  height: 52px;
  width: auto;
}
.brand-name{
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.1;
  letter-spacing: 0.3px;
}
.brand-name small{
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 1.6px;
  color: var(--steel);
  text-transform: uppercase;
}

.main-nav{
  display: flex;
  align-items: center;
  gap: 40px;
}
.main-nav ul{
  display: flex;
  gap: 32px;
  list-style: none;
}
.main-nav a{
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.3px;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color .15s ease, color .15s ease;
}
.main-nav a:hover{ color: var(--red); }
.main-nav a[aria-current="page"]{
  color: var(--red);
  border-bottom-color: var(--red);
}
.nav-toggle{
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span{
  display: block;
  width: 26px;
  height: 3px;
  background: var(--ink);
  margin: 5px 0;
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
  padding: 14px 26px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover{ background: var(--red); border-color: var(--red); }
.btn.outline{
  background: transparent;
  color: var(--ink);
}
.btn.outline:hover{ background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn.on-dark{ border-color: var(--paper); color: var(--ink); background: var(--paper); }
.btn.on-dark:hover{ background: var(--red); color: var(--paper); border-color: var(--red); }
.btn.red{ background: var(--red); border-color: var(--red); }
.btn.red:hover{ background: var(--red-dark); border-color: var(--red-dark); }

/* ---------- Hero ---------- */
.hero{
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  color: var(--paper);
  overflow: hidden;
}
.hero img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15,11,8,.86) 0%, rgba(15,11,8,.35) 45%, rgba(15,11,8,.08) 70%);
  z-index: 1;
}
.hero-content{
  position: relative;
  z-index: 2;
  padding-bottom: 64px;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.hero-content .eyebrow{
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0,0,0,.7), 0 1px 2px rgba(0,0,0,.9);
}
.hero-content h1{
  font-size: clamp(2.6rem, 5.6vw, 4.4rem);
  margin: 10px 0 18px;
}
.hero-content p{
  font-size: 1.15rem;
  color: #efe9df;
  max-width: 54ch;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions{
  display: flex;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.page-hero{
  min-height: 46vh;
  align-items: center;
}
.page-hero .hero-content{ padding-bottom: 0; }
.page-hero h1{ font-size: clamp(2.4rem, 5vw, 3.6rem); }

/* ---------- Stat bar ---------- */
.statbar{
  background: var(--ink);
  color: var(--paper);
}
.statbar .wrap{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 34px 0;
}
.statbar .stat{
  text-align: center;
  border-left: 1px solid rgba(255,255,255,.15);
  padding: 0 12px;
}
.statbar .stat:first-child{ border-left: none; }
.statbar .stat strong{
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.statbar .stat span{
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  color: #d8d2c6;
}

/* ---------- Sections ---------- */
section{ padding: 88px 0; }
.section-tight{ padding: 64px 0; }
.section-head{
  max-width: 680px;
  margin-bottom: 42px;
}
.section-head h2{
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin-top: 10px;
}
.bg-sand{ background: var(--sand); }
.bg-ink{ background: var(--ink); color: var(--paper); }
.bg-ink p{ color: #cfc9bd; }
.bg-ink .eyebrow{ color: #ff8fa1; }

/* ---------- About / two-col feature ---------- */
.split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split.reverse .split-media{ order: 2; }
.split-media img{ width: 100%; height: 100%; object-fit: cover; }
.split-copy h2{ font-size: clamp(1.7rem, 3vw, 2.2rem); margin-bottom: 16px; }
.split-copy ul{ margin: 16px 0; list-style: none; }
.split-copy li{
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: var(--ink-soft);
}
.split-copy li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  background: var(--red);
}

/* ---------- Mission / vision ---------- */
.mv-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.mv-card{ text-align: left; }
.mv-icon{
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
}
.mv-card h3{
  font-size: 1.5rem;
  margin-bottom: 10px;
}

/* ---------- Services grid (category chips) ---------- */
.chip-row{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.chip{
  border: 1px solid var(--line);
  padding: 30px 24px;
  text-align: center;
}
.chip img{ height: 64px; margin: 0 auto 18px; }
.chip h3{ font-size: 1.25rem; }

/* ---------- Services scroll carousel ---------- */
.scroll-row{
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4px var(--gutter) 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--red) var(--sand-dark);
}
.scroll-row::-webkit-scrollbar{ height: 8px; }
.scroll-row::-webkit-scrollbar-track{ background: var(--sand-dark); }
.scroll-row::-webkit-scrollbar-thumb{ background: var(--red); }
.scroll-card{
  position: relative;
  flex: 0 0 auto;
  width: min(78vw, 400px);
  aspect-ratio: 4/3;
  overflow: hidden;
  scroll-snap-align: start;
}
.scroll-card img{ width: 100%; height: 100%; object-fit: cover; }
.scroll-card .tag{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: var(--red);
  color: var(--paper);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.2px;
  padding: 12px 16px;
}
.scroll-card p{
  position: absolute;
  top: 18px; left: 18px; right: 18px;
  margin: 0;
  color: var(--paper);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}

.category-row{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 12px;
}
.category-row a{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--line);
  padding: 26px 12px 22px;
  transition: border-color .15s ease, background .15s ease;
}
.category-row a:hover{ border-color: var(--red); background: var(--sand); }
.category-row .icon-wrap{
  height: 52px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 16px;
}
.category-row svg{ display: block; height: auto; width: auto; max-height: 52px; }
.category-row span{
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.3;
}

/* ---------- Services picker: main / sub / bus-type tabs ---------- */
.is-hidden{ display: none !important; }

.tab-row{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tab-btn{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 10px;
  border: none;
  border-top: 3px solid var(--line);
  background: var(--paper);
  padding: 34px 28px;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.tab-btn-title{
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
  transition: color .15s ease;
}
.tab-btn-sub{
  font-size: 0.94rem;
  line-height: 1.5;
  color: var(--steel);
  transition: color .15s ease;
}
.tab-btn:hover{ border-top-color: var(--red); }
.tab-btn.active{ border-top-color: var(--red); background: var(--red); }
.tab-btn.active .tab-btn-title{ color: var(--paper); }
.tab-btn.active .tab-btn-sub{ color: #ffd7dd; }

.picker-label{
  display: none;
}

.sub-tabs{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 40px 0 36px;
}
.subtab-btn{
  display: flex;
  align-items: center;
  border: 1.5px solid var(--line);
  background: var(--paper);
  padding: 12px 20px;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-soft);
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.subtab-btn:hover{ border-color: var(--red); }
.subtab-btn.active{ border-color: var(--red); background: var(--red); color: var(--paper); }

.bus-type-wrap{ max-width: var(--max-w); margin: 0 auto; }
.bus-type-row{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 32px var(--gutter) 28px;
}
.bustype-btn{
  flex: 0 0 auto;
  border: 1.5px solid var(--line);
  background: var(--paper);
  padding: 11px 20px;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.bustype-btn:hover{ border-color: var(--red); }
.bustype-btn.active{ border-color: var(--red); background: var(--ink); color: var(--paper); }

.cat-panel{ padding-top: 8px; }
.cat-panel .vehicle-block:first-of-type{ border-top: none; }

.mini-gallery{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0 var(--gutter) 40px;
}
.mini-gallery figure{ margin: 0; }
.mini-gallery img{ width: 100%; height: 220px; object-fit: cover; }
.mini-gallery figcaption{
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--steel);
}

.heritage-strip{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.heritage-strip figure{ margin: 0; position: relative; overflow: hidden; aspect-ratio: 4/3; }
.heritage-strip img{ width: 100%; height: 100%; object-fit: cover; }
.heritage-strip figcaption{
  position: absolute; left: 0; right: 0; bottom: 0;
  background: var(--red); color: var(--paper);
  padding: 9px 12px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.85rem;
}
.vehicle-block{
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  margin: 0 20px;
  border-top: 1px solid var(--line);
}
.vehicle-block:last-of-type{ border-bottom: 1px solid var(--line); }
.vehicle-block.reverse{ grid-template-columns: 1.1fr 1fr; }
.vehicle-block.reverse .vb-media{ order: 2; }
.vb-media{ overflow: hidden; }
.vb-media img{ width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.vb-copy{
  padding: 56px var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vb-copy .eyebrow{ margin-bottom: 8px; }
.vb-copy h3{ font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-bottom: 14px; }
.vb-copy ul{ list-style: none; margin: 14px 0 20px; }
.vb-copy li{
  position: relative;
  padding-left: 22px;
  margin-bottom: 9px;
  color: var(--ink-soft);
}
.vb-copy li::before{
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 9px; height: 9px;
  background: var(--red);
}

/* ---------- Gallery ---------- */
.gallery{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery figure{
  margin: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .3s ease;
}
.gallery figure:hover img{ transform: scale(1.05); }
.gallery figcaption{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: var(--red);
  color: var(--paper);
  padding: 10px 14px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
}
.gallery figure.wide{ grid-column: span 2; }

/* ---------- Testimonials ---------- */
.testi-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testi{
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 30px;
}
.stars{ color: var(--red); letter-spacing: 3px; margin-bottom: 16px; font-size: 1.05rem; }
.testi p{ font-style: italic; color: var(--ink-soft); }
.testi cite{
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ---------- Achievements ---------- */
.achieve-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.achieve{
  border: 1px solid var(--line-dark);
  padding: 30px 26px;
  background: var(--ink);
  color: var(--paper);
}
.achieve .yr{
  font-family: var(--font-head);
  color: var(--red);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  margin-bottom: 10px;
  display: block;
}
.achieve h3{ font-size: 1.25rem; margin-bottom: 10px; }
.achieve p{ color: #cfc9bd; font-size: 0.96rem; margin-bottom: 0; }

/* ---------- Founder ---------- */
.founder{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.founder img{ width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.founder h2{ font-size: clamp(1.8rem, 3vw, 2.4rem); }
.founder .role{
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--red);
  margin: 8px 0 20px;
  font-size: 1.05rem;
}

.affil-row{
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 18px;
}
.affil{
  display: flex;
  align-items: center;
  gap: 16px;
}
.affil-mark{
  width: 64px; height: 64px;
  border: 2px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  padding: 8px;
  flex-shrink: 0;
}
.affil-mark img{ width: 100%; height: 100%; object-fit: contain; }
.affil-text strong{ display: block; font-family: var(--font-head); font-size: 1.05rem; }
.affil-text span{ font-size: 0.88rem; color: var(--steel); }

/* ---------- History timeline photos ---------- */
.history-strip{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 40px 0;
}
.history-strip img{ width: 100%; height: 220px; object-fit: cover; }
.history-wide img{ width: 100%; height: 420px; object-fit: cover; margin: 40px 0; }

/* ---------- Contact ---------- */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.contact-card{
  border: 1px solid var(--line);
  padding: 26px;
  margin-bottom: 16px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-card .ic{
  width: 44px; height: 44px;
  background: var(--red);
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-head);
  font-weight: 700;
}
.contact-card h3{ font-size: 1.05rem; margin-bottom: 6px; }
.contact-card a, .contact-card span{ color: var(--steel); }
.contact-card a:hover{ color: var(--red); }
.map-frame{
  border: 1px solid var(--line);
  overflow: hidden;
  height: 100%;
  min-height: 420px;
}
.map-frame iframe{ width: 100%; height: 100%; border: 0; display: block; }

form.msg-form{ display: grid; gap: 16px; margin-top: 26px; }
.msg-form label{
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 6px;
  display: block;
}
.msg-form input, .msg-form textarea{
  width: 100%;
  border: 1px solid var(--line);
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--paper);
}
.msg-form input:focus, .msg-form textarea:focus{ border-color: var(--red); }
.msg-form textarea{ resize: vertical; min-height: 120px; }

/* ---------- CTA band ---------- */
.cta-band{
  background: var(--red);
  color: var(--paper);
  padding: 64px 0;
}
.cta-band .wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2{ font-size: clamp(1.7rem, 3vw, 2.3rem); max-width: 520px; }

/* ---------- Footer ---------- */
.site-footer{
  background: var(--ink);
  color: #cfc9bd;
  padding: 60px 0 26px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand{ display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img{ height: 44px; }
.footer-brand span{ font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--paper); }
.site-footer h4{
  font-family: var(--font-head);
  color: var(--paper);
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.site-footer ul{ list-style: none; }
.site-footer li{ margin-bottom: 10px; }
.site-footer a:hover{ color: var(--paper); }
.footer-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .main-nav{ position: fixed; inset: 84px 0 0 0; background: var(--paper); flex-direction: column; align-items: stretch; padding: 24px var(--gutter); gap: 24px; transform: translateX(100%); transition: transform .25s ease; overflow-y: auto; }
  .main-nav.open{ transform: translateX(0); }
  .main-nav ul{ flex-direction: column; gap: 18px; }
  .nav-toggle{ display: block; }
  .statbar .wrap{ grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .statbar .stat:nth-child(3){ border-left: none; }
  .split, .founder, .contact-grid, .mv-grid{ grid-template-columns: 1fr; }
  .split-media{ order: -1 !important; }
  .chip-row, .achieve-grid, .testi-grid{ grid-template-columns: 1fr; }
  .category-row{ grid-template-columns: repeat(2, 1fr); }
  .vehicle-block, .vehicle-block.reverse{ grid-template-columns: 1fr; }
  .vehicle-block .vb-media{ order: -1 !important; }
  .vb-media img{ min-height: 280px; }
  .gallery{ grid-template-columns: repeat(2, 1fr); }
  .gallery figure.wide{ grid-column: span 2; }
  .history-strip{ grid-template-columns: repeat(2, 1fr); }
  .footer-grid{ grid-template-columns: 1fr; gap: 32px; }
  .tab-row{ grid-template-columns: 1fr; }
  .tab-btn{ flex-direction: row; justify-content: flex-start; text-align: left; padding: 16px 18px; }
  .tab-btn .icon-wrap{ height: 32px; margin: 0; }
  .mini-gallery{ grid-template-columns: 1fr 1fr; }
  .heritage-strip{ grid-template-columns: 1fr 1fr; }

  /* Mobile-only: left-align standalone prose so stacked sections read
     consistently on phones. Desktop layout above this breakpoint is untouched. */
  .split-copy,
  .prose-block,
  .founder{
    text-align: left;
  }
  .centered-copy{
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Mobile-only: turn the two picker levels into clearly labeled,
     single-row scroll strips instead of an ambiguous wrapped grid.
     Desktop layout above this breakpoint is untouched. */
  .picker-label{
    display: block;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--steel);
    margin: 0 0 10px;
  }
  .sub-tabs{
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 calc(var(--gutter) * -1) 8px;
    padding: 0 var(--gutter) 6px;
  }
  .subtab-btn{ white-space: nowrap; }

  .bus-type-wrap{
    margin: 28px 0 0;
    padding: 14px 0 4px 16px;
    border-left: 3px solid var(--red);
  }
  .picker-label-nested{ margin-bottom: 8px; }
  .bus-type-row{
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: none;
    margin: 0 calc(var(--gutter) * -1) 0 0;
    padding: 0 var(--gutter) 10px 0;
  }
}
@media (max-width: 560px){
  .hero{ min-height: 78vh; }
  section{ padding: 60px 0; }
  .gallery{ grid-template-columns: 1fr 1fr; }
  .mini-gallery{ grid-template-columns: 1fr; }
  .heritage-strip{ grid-template-columns: 1fr; }
}
