/* ============================================================
   TyreHub — Tyre & Alloy Wheel Specialist
   Bold · Industrial · Hazard-Yellow · Condensed Display
   ============================================================ */

:root {
  /* Palette */
  --ink: #0c0d10;
  --ink-2: #141519;
  --ink-3: #1c1e24;
  --panel: #181a20;
  --line: #2a2d36;
  --steel: #9aa0ac;
  --steel-soft: #6e7480;
  --white: #f4f5f7;
  --bone: #e9eaee;

  /* Hazard accent */
  --yellow: #ffd400;
  --yellow-deep: #f5b800;
  --yellow-glow: rgba(255, 212, 0, 0.25);
  --red: #ff3b2f;

  /* Type */
  --display: "Oswald", "Arial Narrow", sans-serif;
  --body: "Sora", system-ui, sans-serif;

  /* Spacing / shape */
  --wrap: 1240px;
  --radius: 4px;
  --radius-lg: 8px;
  --speed: 0.45s cubic-bezier(0.16, 1, 0.3, 1);

  --shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.8);
  --shadow-yellow: 0 20px 50px -20px var(--yellow-glow);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 1.5rem; }

/* ---------- Type scale ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
}
h1 { font-size: clamp(3rem, 8vw, 6.6rem); }
h2 { font-size: clamp(2.2rem, 5.2vw, 4rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.8rem); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--yellow);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 3px;
  background: var(--yellow);
  transform: skewX(-20deg);
}
.eyebrow.center { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  --pad: 0.95rem 1.7rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: var(--pad);
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform var(--speed), background var(--speed), color var(--speed), box-shadow var(--speed);
  clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}
.btn .arr { transition: transform var(--speed); }
.btn:hover .arr { transform: translateX(5px); }
.btn-solid { background: var(--yellow); color: var(--ink); box-shadow: var(--shadow-yellow); }
.btn-solid:hover { background: #fff; transform: translateY(-3px); }
.btn-ghost { border: 2px solid var(--line); color: var(--white); border-radius: var(--radius); clip-path: none; }
.btn-ghost:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-3px); }
.btn-dark { background: var(--ink); color: var(--white); border: 2px solid var(--ink); clip-path: none; border-radius: var(--radius); }
.btn-dark:hover { background: transparent; color: var(--ink); transform: translateY(-3px); }
.btn-lg { --pad: 1.15rem 2.2rem; font-size: 1.05rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 13, 16, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: padding var(--speed), background var(--speed);
}
.site-header.shrink { background: rgba(12, 13, 16, 0.96); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.15rem;
  transition: padding var(--speed);
}
.site-header.shrink .nav { padding-block: 0.65rem; }

.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-mark {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
}
.brand-mark .hub {
  background: var(--yellow);
  color: var(--ink);
  padding: 0 0.32em;
  margin-left: 0.12em;
  clip-path: polygon(0 0, 100% 0, calc(100% - 7px) 100%, 0 100%);
}
.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--steel-soft);
  margin-top: 0.3rem;
  font-family: var(--display);
  font-weight: 500;
}

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  position: relative;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--steel);
  padding-block: 0.3rem;
  transition: color var(--speed);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width var(--speed);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 1.4rem; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: var(--white);
}
.nav-phone svg { width: 18px; height: 18px; color: var(--yellow); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 3px;
  background: var(--white);
  transition: transform var(--speed), opacity var(--speed);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(255, 212, 0, 0.1), transparent 60%),
    linear-gradient(180deg, var(--ink-2), var(--ink));
  overflow: hidden;
  padding-block: clamp(3.5rem, 7vw, 6rem) clamp(4rem, 8vw, 7rem);
}
.speed-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -22deg,
    transparent 0 38px,
    rgba(255, 255, 255, 0.022) 38px 40px
  );
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}
.hero-copy { max-width: 600px; }
.hero h1 { margin: 1.3rem 0 1.4rem; }
.hero h1 .stroke {
  color: transparent;
  -webkit-text-stroke: 2px var(--yellow);
  display: block;
}
.hero h1 .hl { color: var(--yellow); }
.hero-tag {
  font-size: 1.12rem;
  color: var(--steel);
  max-width: 480px;
  margin-bottom: 2.1rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2.2rem;
  font-size: 0.95rem;
  color: var(--steel);
}
.hero-trust .stars { color: var(--yellow); letter-spacing: 0.12em; font-size: 1.05rem; }
.hero-trust b { color: var(--white); }

/* Hero media */
.hero-media { position: relative; }
.hero-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 4/4.4;
  will-change: transform;
}
.hero-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 40%, rgba(12, 13, 16, 0.55));
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-tape {
  position: absolute;
  top: 26px; left: -40px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.8rem;
  padding: 0.5rem 3rem;
  transform: rotate(-7deg);
  box-shadow: var(--shadow);
  z-index: 3;
}
.hero-badge {
  position: absolute;
  right: -18px; bottom: 40px;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-left: 4px solid var(--yellow);
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 3;
}
.hero-badge .n {
  font-family: var(--display);
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--yellow);
  line-height: 1;
}
.hero-badge .l {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 0.3rem;
}

/* Marquee strip */
.marquee {
  background: var(--yellow);
  color: var(--ink);
  overflow: hidden;
  border-block: 3px solid var(--ink);
  padding-block: 0.7rem;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: scrollx 28s linear infinite;
  white-space: nowrap;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}
.marquee span::after {
  content: "◆";
  font-size: 0.7rem;
}
@keyframes scrollx { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ============================================================
   SECTIONS / GENERIC
   ============================================================ */
.section { padding-block: clamp(4rem, 8vw, 7rem); position: relative; }
.section.panel { background: var(--ink-2); border-block: 1px solid var(--line); }
.sec-head { margin-bottom: 3rem; }
.sec-head.center { text-align: center; max-width: 720px; margin-inline: auto; }
.sec-head h2 { margin-top: 1rem; }
.split-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: end;
}
.split-head p { color: var(--steel); }

/* ---------- Stats ---------- */
.stats { background: var(--ink); border-bottom: 1px solid var(--line); }
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink-2);
}
.stat {
  padding: 2.4rem 1.6rem;
  text-align: center;
  border-right: 1px solid var(--line);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat .n {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  color: var(--white);
  line-height: 1;
}
.stat .n .suf { color: var(--yellow); }
.stat .l {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel-soft);
  font-family: var(--display);
  font-weight: 500;
}

/* ---------- Services grid (home preview) ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.svc-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem 2.2rem;
  overflow: hidden;
  transition: transform var(--speed), border-color var(--speed);
}
.svc-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--speed);
}
.svc-card:hover { transform: translateY(-6px); border-color: var(--steel-soft); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-ico {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 1.3rem;
  color: var(--yellow);
}
.svc-ico svg { width: 28px; height: 28px; }
.svc-card h3 { margin-bottom: 0.6rem; }
.svc-card p { color: var(--steel); font-size: 0.98rem; }
.svc-card .from {
  display: inline-block;
  margin-top: 1.2rem;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  font-size: 0.92rem;
}

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.split.flip .split-media { order: 2; }
.split-media { position: relative; }
.split-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 4/4.6;
}
.split-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1); }
.zoom:hover img { transform: scale(1.07); }
.split-tab {
  position: absolute;
  left: -18px; bottom: 30px;
  display: flex; align-items: center; gap: 0.9rem;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-left: 4px solid var(--yellow);
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.split-tab svg { width: 26px; height: 26px; color: var(--yellow); flex-shrink: 0; }
.split-tab b { display: block; font-family: var(--display); font-size: 1.05rem; color: var(--white); }
.split-tab span { font-size: 0.78rem; color: var(--steel); }
.split-copy .lead { font-size: 1.12rem; color: var(--steel); margin: 1.2rem 0 1.6rem; }
.split-copy h2 { margin-top: 1rem; }

.feature-list { list-style: none; display: grid; gap: 1.3rem; margin-top: 1.6rem; }
.feature-list li { display: flex; gap: 1rem; }
.feature-list .ico {
  flex-shrink: 0;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--yellow);
}
.feature-list .ico svg { width: 22px; height: 22px; }
.feature-list h4 { font-size: 1.15rem; margin-bottom: 0.2rem; }
.feature-list p { color: var(--steel); font-size: 0.96rem; }

/* ---------- Brands strip ---------- */
.brands { background: var(--ink-2); border-block: 1px solid var(--line); padding-block: 3rem; }
.brands-head {
  text-align: center;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel-soft);
  font-size: 0.82rem;
  margin-bottom: 1.8rem;
}
.brands-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 0.9rem;
}
.brand-chip {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--steel);
  padding: 0.5rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: 40px;
  transition: color var(--speed), border-color var(--speed), background var(--speed);
}
.brand-chip:hover { color: var(--ink); background: var(--yellow); border-color: var(--yellow); }

/* ---------- Process steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: step; }
.step {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.6rem;
}
.step .num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 3rem;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--yellow-deep);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}
.step h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.step p { color: var(--steel); font-size: 0.95rem; }

/* ---------- Wheel showcase / CTA mid ---------- */
.showcase {
  position: relative;
  background:
    radial-gradient(700px 400px at 20% 20%, rgba(255,212,0,0.08), transparent 60%),
    var(--ink-2);
  border-block: 1px solid var(--line);
  overflow: hidden;
}
.showcase-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3.5rem; align-items: center; }
.showcase-media { position: relative; }
.showcase-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 4/4.7;
}
.showcase-frame img { width: 100%; height: 100%; object-fit: cover; }
.spec-list { list-style: none; display: grid; gap: 0.9rem; margin: 1.6rem 0 2rem; }
.spec-list li {
  display: flex; align-items: center; gap: 0.8rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
  color: var(--bone);
}
.spec-list li svg { width: 20px; height: 20px; color: var(--yellow); flex-shrink: 0; }
.spec-list b { color: var(--white); font-family: var(--display); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quotes { background: var(--ink); }
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.qcard {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  position: relative;
}
.qcard .mark {
  font-family: var(--display);
  font-size: 4rem;
  color: var(--yellow);
  line-height: 0.5;
  opacity: 0.35;
}
.qcard blockquote { color: var(--bone); font-size: 1.02rem; margin: 0.8rem 0 1.4rem; }
.qcard .stars { color: var(--yellow); letter-spacing: 0.1em; margin-bottom: 0.4rem; }
.qmeta { display: flex; align-items: center; gap: 0.8rem; }
.qmeta .av {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  border-radius: 50%;
}
.qmeta b { display: block; font-family: var(--display); color: var(--white); }
.qmeta span { font-size: 0.82rem; color: var(--steel-soft); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  background:
    repeating-linear-gradient(-22deg, transparent 0 60px, rgba(0,0,0,0.06) 60px 62px),
    linear-gradient(120deg, var(--yellow), var(--yellow-deep));
  color: var(--ink);
  text-align: center;
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  overflow: hidden;
}
.cta-band h2 { color: var(--ink); margin: 0.8rem auto 1rem; max-width: 850px; }
.cta-band .eyebrow { color: var(--ink); }
.cta-band .eyebrow::before { background: var(--ink); }
.cta-band p { max-width: 560px; margin: 0 auto 2rem; color: rgba(12,13,16,0.78); font-size: 1.08rem; }
.cta-band .hero-actions { justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink-2); border-top: 1px solid var(--line); padding-top: 4rem; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}
.footer-brand p { color: var(--steel); margin: 1rem 0 1.4rem; max-width: 320px; font-size: 0.95rem; }
.footer-social { display: flex; gap: 0.7rem; }
.footer-social a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--steel);
  transition: all var(--speed);
}
.footer-social a:hover { background: var(--yellow); color: var(--ink); border-color: var(--yellow); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 {
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  color: var(--yellow);
  margin-bottom: 1.1rem;
}
.footer-col a { display: block; color: var(--steel); padding-block: 0.4rem; transition: color var(--speed); }
.footer-col a:hover { color: var(--white); }
.footer-nap { font-style: normal; color: var(--steel); line-height: 1.9; }
.footer-nap a { color: var(--steel); }
.footer-nap a:hover { color: var(--yellow); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-block: 1.6rem;
  color: var(--steel-soft);
  font-size: 0.85rem;
}
.footer-disclaimer {
  background: var(--ink);
  color: var(--steel-soft);
  text-align: center;
  font-size: 0.78rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--line);
}

/* ============================================================
   PAGE HEADERS (interior pages)
   ============================================================ */
.page-head {
  position: relative;
  background:
    radial-gradient(800px 400px at 80% -20%, rgba(255,212,0,0.1), transparent 60%),
    var(--ink-2);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.page-head .crumbs {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--steel-soft);
  margin-bottom: 1rem;
}
.page-head .crumbs a:hover { color: var(--yellow); }
.page-head h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
.page-head p { color: var(--steel); max-width: 560px; margin-top: 1rem; font-size: 1.08rem; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 40px;
  color: var(--steel);
  transition: all var(--speed);
}
.filter-btn:hover { color: var(--white); border-color: var(--steel-soft); }
.filter-btn.active { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.price-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.7rem;
  display: flex;
  flex-direction: column;
  transition: transform var(--speed), border-color var(--speed);
}
.price-card.hidden { display: none; }
.price-card:hover { transform: translateY(-5px); border-color: var(--steel-soft); }
.price-card .tag {
  align-self: flex-start;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 30px;
  background: var(--ink);
  color: var(--steel);
  border: 1px solid var(--line);
  margin-bottom: 1rem;
}
.price-card.featured { border-color: var(--yellow); box-shadow: var(--shadow-yellow); }
.price-card.featured .tag { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.price-card h3 { margin-bottom: 0.5rem; }
.price-card .desc { color: var(--steel); font-size: 0.95rem; margin-bottom: 1.3rem; flex-grow: 1; }
.price-card .price {
  font-family: var(--display);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--white);
  line-height: 1;
}
.price-card .price small { font-size: 0.9rem; color: var(--steel-soft); font-weight: 500; }
.price-card .from-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  font-family: var(--display);
  margin-bottom: 0.3rem;
}
.price-card ul { list-style: none; margin: 1.3rem 0; display: grid; gap: 0.65rem; }
.price-card ul li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.92rem; color: var(--bone);
}
.price-card ul li svg { width: 16px; height: 16px; color: var(--yellow); flex-shrink: 0; }

/* size table */
.size-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.size-table th, .size-table td {
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.size-table thead {
  background: var(--ink);
}
.size-table th {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--yellow);
}
.size-table tbody tr { transition: background var(--speed); }
.size-table tbody tr:hover { background: var(--ink); }
.size-table tbody tr:last-child td { border-bottom: none; }
.size-table .pr { font-family: var(--display); font-weight: 700; color: var(--white); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: start; }
.form-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
}
.field { margin-bottom: 1.3rem; }
.field label {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.5rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--body);
  font-size: 0.98rem;
  transition: border-color var(--speed), box-shadow var(--speed);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px var(--yellow-glow);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
[data-form-note] {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: var(--yellow);
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.04em;
  min-height: 1.2rem;
}

.info-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.4rem;
}
.info-card h3 { margin-bottom: 1.2rem; }
.info-item { display: flex; gap: 0.9rem; margin-bottom: 1.1rem; }
.info-item:last-child { margin-bottom: 0; }
.info-item .ico {
  flex-shrink: 0;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--yellow);
}
.info-item .ico svg { width: 20px; height: 20px; }
.info-item b { font-family: var(--display); color: var(--white); display: block; }
.info-item span, .info-item a { color: var(--steel); font-size: 0.95rem; }
.info-item a:hover { color: var(--yellow); }

.hours-list { list-style: none; }
.hours-list li {
  display: flex; justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { color: var(--steel); font-family: var(--display); font-weight: 600; letter-spacing: 0.04em; }
.hours-list .time { color: var(--white); }
.hours-list .closed { color: var(--red); }
.hours-list .open-now { color: var(--yellow); }

.map-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
}
.map-card svg { display: block; width: 100%; height: auto; }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.featured-post {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 3rem;
}
.featured-post .fp-media { position: relative; overflow: hidden; min-height: 340px; }
.featured-post .fp-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s cubic-bezier(0.16,1,0.3,1); }
.featured-post:hover .fp-media img { transform: scale(1.06); }
.fp-tape {
  position: absolute; top: 22px; left: 22px;
  background: var(--yellow); color: var(--ink);
  font-family: var(--display); font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  font-size: 0.78rem; padding: 0.4rem 1rem;
  border-radius: var(--radius);
}
.fp-body { padding: 2.6rem; display: flex; flex-direction: column; justify-content: center; }
.fp-body .meta, .post .meta {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--display); font-weight: 500;
  font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--steel-soft); margin-bottom: 1rem;
}
.meta .type { color: var(--yellow); }
.meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--steel-soft); }
.fp-body h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
.fp-body p { color: var(--steel); margin-bottom: 1.6rem; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.post {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--speed), border-color var(--speed);
}
.post:hover { transform: translateY(-6px); border-color: var(--steel-soft); }
.post-media { aspect-ratio: 16/10; overflow: hidden; background: var(--ink-3); position: relative; }
.post-media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--speed); }
.post:hover .post-media img { transform: scale(1.06); }
.post-media.grad-1 { background: linear-gradient(135deg, #1c1e24, #2a2d36); }
.post-media.grad-2 { background: linear-gradient(135deg, #201a05, #2a2d36); }
.post-media.grad-3 { background: linear-gradient(135deg, #241010, #1c1e24); }
.post-grad-mark {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: rgba(255,212,0,0.18);
}
.post-grad-mark svg { width: 90px; height: 90px; }
.post-body { padding: 1.6rem; display: flex; flex-direction: column; flex-grow: 1; }
.post-body h3 { font-size: 1.3rem; margin-bottom: 0.6rem; line-height: 1.05; }
.post-body h3 a:hover { color: var(--yellow); }
.post-body p { color: var(--steel); font-size: 0.94rem; flex-grow: 1; }
.post .more {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1.2rem;
  font-family: var(--display); font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  font-size: 0.85rem; color: var(--yellow);
}
.post .more svg { width: 14px; height: 14px; transition: transform var(--speed); }
.post:hover .more svg { transform: translateX(4px); }

/* newsletter */
.news-band {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.6rem;
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.news-band h3 { margin-bottom: 0.4rem; }
.news-band p { color: var(--steel); }
.news-form { display: flex; gap: 0.7rem; }
.news-form input {
  padding: 0.9rem 1.1rem;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--white);
  min-width: 240px;
  font-family: var(--body);
}
.news-form input:focus { outline: none; border-color: var(--yellow); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-media { max-width: 520px; }
  .split-head { grid-template-columns: 1fr; }
  .svc-grid, .price-grid, .quotes-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid, .split, .featured-post, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.flip .split-media { order: 0; }
  .featured-post .fp-media { min-height: 280px; }
}

@media (max-width: 760px) {
  .nav-links, .nav-cta {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(80vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background: var(--ink-2);
    border-left: 1px solid var(--line);
    padding: 6rem 2rem 2rem;
    transform: translateX(110%);
    transition: transform var(--speed);
    z-index: 105;
  }
  .nav-cta { top: auto; inset: auto 0 0 auto; height: auto; padding-top: 1rem; border-left: 1px solid var(--line); border-top: 1px solid var(--line); width: min(80vw, 320px); transform: translateX(110%); }
  .nav.open .nav-links { transform: none; }
  .nav.open .nav-cta { transform: none; }
  .nav-links { gap: 1.4rem; padding-bottom: 0; }
  .nav.open .nav-links { box-shadow: var(--shadow); }
  .nav-cta { flex-direction: column; align-items: stretch; gap: 1rem; }
  .nav-cta .btn { justify-content: center; }
  .nav-toggle { display: flex; }
  .nav.open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .svc-grid, .price-grid, .quotes-grid, .blog-grid, .steps-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .news-band { grid-template-columns: 1fr; }
  .news-form { flex-direction: column; }
  .news-form input { min-width: 0; width: 100%; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 460px) {
  .footer-top { grid-template-columns: 1fr; }
  .hero-tape { left: -20px; padding-inline: 2rem; }
}
