@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

/* =================================================================
   IT Star — light theme, red primary
   ================================================================= */
:root {
  --bg: #faf7f5;
  --bg-2: #f4efec;
  --surface: #ffffff;
  --surface-2: #f6f1ee;
  --line: rgba(28, 22, 20, 0.10);
  --line-2: rgba(28, 22, 20, 0.18);

  --red: #e22b22;
  --red-deep: #b81d16;
  --red-bright: #f24237;
  --red-soft: #fdeae8;
  --red-tint: rgba(226, 43, 34, 0.08);
  --star: #f6a609;

  --ink: #1c1512;
  --ink-2: #6a605b;
  --ink-3: #9c918a;

  --shadow-sm: 0 2px 10px rgba(28, 22, 20, 0.06);
  --shadow: 0 14px 34px -14px rgba(28, 22, 20, 0.16);
  --shadow-red: 0 12px 26px -10px rgba(226, 43, 34, 0.45);

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  --r-sm: 10px;
  --r: 16px;
  --r-lg: 22px;
  --r-pill: 999px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --t: 0.26s var(--ease);
  --maxw: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--red);
  text-decoration: none;
  transition: color var(--t);
}

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

img,
svg {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

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

/* =================================================================
   type
   ================================================================= */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.eyebrow::before {
  content: '★';
  font-size: 0.85rem;
  color: var(--red);
}

.eyebrow.plain::before {
  display: none;
}

.h-xl {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
}

.h-lg {
  font-size: clamp(1.9rem, 4.4vw, 3rem);
}

.h-md {
  font-size: clamp(1.45rem, 3vw, 2.05rem);
}

.lead {
  color: var(--ink-2);
  font-size: 1.12rem;
  line-height: 1.65;
}

.muted {
  color: var(--ink-2);
}

.mark {
  color: var(--red);
}

.hl {
  background: linear-gradient(transparent 58%, rgba(246, 166, 9, 0.32) 58%);
  padding: 0 2px;
}

/* =================================================================
   layout
   ================================================================= */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 94px 0;
}

.section-sm {
  padding: 60px 0;
}

.sec-head {
  max-width: 640px;
  margin-bottom: 50px;
}

.sec-head.center {
  margin: 0 auto 50px;
  text-align: center;
}

.sec-head .eyebrow.center {
  justify-content: center;
}

.sec-head h2 {
  margin: 14px 0 14px;
}

.sec-head p {
  color: var(--ink-2);
  font-size: 1.05rem;
}

/* =================================================================
   buttons
   ================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.97rem;
  padding: 13px 24px;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--t), background var(--t), border-color var(--t), box-shadow var(--t), color var(--t);
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  background: var(--red-deep);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--surface);
  border-color: var(--line-2);
  color: var(--ink);
}

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

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

.btn-block {
  width: 100%;
}

.btn-light {
  background: #fff;
  color: var(--red);
}

.btn-light:hover {
  background: var(--ink);
  color: #fff;
}

/* =================================================================
   top accent + nav (solid light bar)
   ================================================================= */
.topbar-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--red-bright));
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 245, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--t), background var(--t);
}

.nav.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.92);
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  height: 74px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  flex-shrink: 0;
}

.brand:hover {
  color: var(--ink);
}

.brand .ac {
  color: var(--red);
}

.brand .star {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.brand .star path {
  fill: var(--red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  color: var(--ink-2);
  font-weight: 600;
  font-size: 0.93rem;
  padding: 9px 14px;
  border-radius: var(--r-pill);
  transition: color var(--t), background var(--t);
}

.nav-links a:hover {
  color: var(--ink);
  background: var(--surface-2);
}

.nav-links a.active {
  color: var(--red);
  background: var(--red-tint);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-phone {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
}

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

.nav-right .btn-primary {
  height: 48px;
}

.burger {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line-2);
  background: var(--surface);
  cursor: pointer;
  position: relative;
}

.burger span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}

.burger span:nth-child(1) {
  top: 16px;
}

.burger span:nth-child(2) {
  top: 21px;
}

.burger span:nth-child(3) {
  top: 26px;
}

.burger.open span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(82vw, 360px);
  background: var(--surface);
  border-left: 1px solid var(--line);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.34s var(--ease);
  padding: 90px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-panel.open {
  transform: translateX(0);
}

.mobile-panel a {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.mobile-panel a:hover {
  color: var(--red);
}

.mobile-panel .btn {
  margin-top: 18px;
}

.panel-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line-2);
  background: var(--surface);
  cursor: pointer;
}

.panel-close::before,
.panel-close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.panel-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.panel-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.panel-close:hover {
  border-color: var(--red);
}

.scrim {
  position: fixed;
  inset: 0;
  background: rgba(28, 22, 20, 0.4);
  backdrop-filter: blur(2px);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
}

.scrim.open {
  opacity: 1;
  pointer-events: auto;
}

/* =================================================================
   hero
   ================================================================= */
.hero {
  padding: 70px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.hero h1 {
  margin: 18px 0 20px;
}

.hero .lead {
  max-width: 30em;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0 24px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.rating-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 8px 16px;
  box-shadow: var(--shadow-sm);
}

.rating-chip .stars {
  color: var(--star);
  letter-spacing: 1px;
  font-size: 0.95rem;
}

.rating-chip b {
  font-family: var(--font-display);
}

.rating-chip span {
  color: var(--ink-2);
  font-size: 0.86rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  color: var(--ink-2);
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--surface);
}

.chip b {
  color: var(--ink);
}

/* signature: repair ticket / docket card */
.ticket {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.ticket-top {
  background: var(--ink);
  color: #fff;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ticket-top .tno {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ticket-top .tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--red);
  padding: 4px 10px;
  border-radius: var(--r-pill);
}

.perf {
  height: 18px;
  background:
    radial-gradient(circle at 9px 50%, transparent 0 7px, var(--surface) 7px) left / 18px 100% repeat-x;
  border-bottom: 1px dashed var(--line-2);
}

.ticket-body {
  padding: 8px 24px 24px;
}

.t-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}

.t-row .k {
  color: var(--ink-2);
}

.t-row .v {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
}

.t-row .v.done {
  color: #18794e;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.t-row .v.price {
  color: var(--red);
}

.ticket-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
}

.ticket-foot .stars {
  color: var(--star);
  letter-spacing: 2px;
}

.ticket-foot .by {
  font-size: 0.8rem;
  color: var(--ink-3);
}

/* =================================================================
   brands row
   ================================================================= */
.brands {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.brands span {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--ink-2);
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--surface);
  transition: color var(--t), border-color var(--t);
}

.brands span:hover {
  color: var(--red);
  border-color: var(--red);
}

/* =================================================================
   services grid
   ================================================================= */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.svc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.svc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}

.svc:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--line-2);
}

.svc:hover::before {
  transform: scaleX(1);
}

.svc .ic {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: var(--red-soft);
  display: grid;
  place-items: center;
  font-size: 1.55rem;
  margin-bottom: 20px;
}

.svc h3 {
  font-size: 1.18rem;
  margin-bottom: 9px;
}

.svc p {
  color: var(--ink-2);
  font-size: 0.93rem;
}

.svc .tag {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--red);
}

.svc.span2 {
  grid-column: span 2;
}

/* =================================================================
   steps
   ================================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step {
  text-align: left;
  position: relative;
  padding-top: 10px;
}

.step .num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 18px;
  box-shadow: var(--shadow-red);
}

.step h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.step p {
  color: var(--ink-2);
  font-size: 0.92rem;
}

/* =================================================================
   red stats band
   ================================================================= */
.statband {
  background: var(--red);
  border-radius: var(--r-lg);
  padding: 50px 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  box-shadow: var(--shadow-red);
}

.stat .n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: #fff;
  letter-spacing: -0.02em;
}

.stat .n small {
  font-size: 1rem;
  opacity: 0.85;
}

.stat .l {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  margin-top: 5px;
}

/* =================================================================
   products
   ================================================================= */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.prod {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}

.prod:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.prod .ph {
  aspect-ratio: 4/3;
  background: linear-gradient(150deg, var(--surface-2), var(--bg-2));
  display: grid;
  place-items: center;
  font-size: 3rem;
  border-bottom: 1px solid var(--line);
}

.prod .body {
  padding: 24px;
}

.prod h3 {
  font-size: 1.12rem;
  margin-bottom: 7px;
}

.prod p {
  color: var(--ink-2);
  font-size: 0.91rem;
}

/* =================================================================
   cta panel
   ================================================================= */
.cta {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::after {
  content: '★';
  position: absolute;
  right: -10px;
  top: -20px;
  font-size: 12rem;
  color: rgba(226, 43, 34, 0.16);
  line-height: 1;
}

.cta h2 {
  color: #fff;
  margin-bottom: 14px;
  position: relative;
}

.cta p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 42em;
  margin: 0 auto 28px;
  position: relative;
}

.cta .row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* =================================================================
   reviews
   ================================================================= */
.reviews-slot {
  max-width: 1000px;
  margin: 0 auto;
}

.rv-head {
  text-align: center;
  margin-bottom: 30px;
}

.rv-head .big {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3rem;
  color: var(--ink);
  line-height: 1;
}

.rv-head .stars {
  color: var(--star);
  font-size: 1.5rem;
  letter-spacing: 3px;
  margin: 8px 0;
}

.rv-head p {
  color: var(--ink-2);
}

.rv-placeholder {
  text-align: center;
  padding: 44px 30px;
  border: 1px dashed var(--line-2);
  border-radius: var(--r-lg);
  background: var(--surface);
}

.rv-placeholder p {
  color: var(--ink-2);
}

.rv-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* =================================================================
   contact
   ================================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.info-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}

.info-card .k {
  font-family: var(--font-display);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}

.info-card .v {
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.info-card .v a {
  color: var(--ink);
}

.info-card .v a:hover {
  color: var(--red);
}

.info-card.accent-card {
  background: var(--red);
  border-color: var(--red);
}

.info-card.accent-card .k {
  color: rgba(255, 255, 255, 0.8);
}

.info-card.accent-card .v,
.info-card.accent-card .v a,
.info-card.accent-card p {
  color: #fff;
}

.info-card p {
  color: var(--ink-2);
  font-size: 0.9rem;
}

.hours {
  width: 100%;
}

.hours .r {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--line);
}

.hours .r:last-child {
  border-bottom: 0;
}

.hours .d {
  color: var(--ink-2);
}

.hours .h {
  font-family: var(--font-display);
  font-size: 0.86rem;
  color: var(--ink);
}

.hours .r.today .d {
  color: var(--red);
  font-weight: 700;
}

.hours .r.today .h {
  color: var(--red);
}

.map-card {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-card iframe {
  width: 100%;
  height: 430px;
  border: 0;
  display: block;
}

/* =================================================================
   legal
   ================================================================= */
.legal {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 46px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 100px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.legal-toc h4 {
  font-family: var(--font-display);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 14px;
}

.legal-toc a {
  display: block;
  color: var(--ink-2);
  font-size: 0.86rem;
  padding: 7px 10px;
  border-radius: 8px;
}

.legal-toc a:hover {
  color: var(--red);
  background: var(--red-tint);
}

.legal-body h2 {
  font-size: 1.32rem;
  margin: 40px 0 14px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.legal-body h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.legal-body p {
  color: var(--ink-2);
  margin-bottom: 14px;
  line-height: 1.75;
}

.legal-body strong {
  color: var(--ink);
}

.legal-body ul {
  margin: 0 0 16px;
}

.legal-body li {
  color: var(--ink-2);
  padding: 6px 0 6px 22px;
  position: relative;
}

.legal-body li::before {
  content: '★';
  position: absolute;
  left: 2px;
  top: 6px;
  font-size: 0.7rem;
  color: var(--red);
}

.pill-note {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.76rem;
  color: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  margin-bottom: 22px;
}

/* =================================================================
   coming soon
   ================================================================= */
.soon {
  min-height: 74vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.soon-inner {
  max-width: 600px;
  padding: 30px;
}

.soon .badge-ic {
  width: 86px;
  height: 86px;
  border-radius: 24px;
  background: var(--red-soft);
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  margin: 0 auto 26px;
}

.soon h1 {
  margin-bottom: 16px;
}

.soon p {
  color: var(--ink-2);
  margin-bottom: 28px;
}

.soon .row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =================================================================
   footer (dark)
   ================================================================= */
.ft {
  background: var(--ink);
  color: #fff;
  padding: 68px 0 34px;
  margin-top: 20px;
}

.ft-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 46px;
}

.ft .brand {
  color: #fff;
}

.ft .brand .ac {
  color: var(--red-bright);
}

.ft-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  margin: 16px 0;
  max-width: 32ch;
}

.ft-col h5 {
  font-family: var(--font-display);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 15px;
}

.ft-col a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  padding: 6px 0;
}

.ft-col a:hover {
  color: #fff;
}

.ft-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.ft-bottom p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
}

/* mobile call bar */
.callbar {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 15px;
  border-radius: var(--r-pill);
  font-weight: 700;
  box-shadow: var(--shadow-red);
}

.callbar:hover {
  color: #fff;
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal.d1 {
  transition-delay: 0.07s;
}

.reveal.d2 {
  transition-delay: 0.14s;
}

.reveal.d3 {
  transition-delay: 0.21s;
}

/* =================================================================
   responsive
   ================================================================= */
@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ticket {
    max-width: 460px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .statband {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .legal {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }

  .svc.span2 {
    grid-column: span 3;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 66px 0;
  }

  .nav-links,
  .nav-phone,
  .nav-right {
    display: none;
  }

  .burger {
    display: block;
  }

  .svc-grid {
    grid-template-columns: 1fr 1fr;
  }

  .svc.span2 {
    grid-column: span 2;
  }

  .prod-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ft-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .cta {
    padding: 44px 26px;
  }

  .callbar {
    display: block;
  }

  body {
    padding-bottom: 84px;
  }
}

@media (max-width: 480px) {

  .svc-grid,
  .prod-grid {
    grid-template-columns: 1fr;
  }

  .svc.span2 {
    grid-column: auto;
  }

  .steps,
  .statband {
    grid-template-columns: 1fr 1fr;
  }

  .ft-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* ===== BOOK A REPAIR FORM ===== */
.book-section {
  scroll-margin-top: 90px;
}

.book-card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 46px;
  box-shadow: var(--shadow);
}

.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.book-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.book-field.full {
  grid-column: 1 / -1;
}

.book-field label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
}

.book-field label .req {
  color: var(--red);
}

.book-field input,
.book-field select,
.book-field textarea {
  width: 100%;
  padding: 13px 16px;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--surface-2);
  border: 1.5px solid transparent;
  border-radius: var(--r);
  outline: none;
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
}

.book-field textarea {
  min-height: 130px;
  resize: vertical;
}

.book-field input::placeholder,
.book-field textarea::placeholder {
  color: var(--ink-3);
}

.book-field input:focus,
.book-field select:focus,
.book-field textarea:focus {
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 3px var(--red-tint);
}

.book-field select {
  cursor: pointer;
}

.book-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.book-note {
  font-size: 0.85rem;
  color: var(--ink-2);
}

.book-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

@media (max-width: 760px) {
  .book-card {
    padding: 30px 22px;
  }

  .book-grid {
    grid-template-columns: 1fr;
  }

  .book-actions {
    flex-direction: column;
    align-items: stretch;
  }
}