/* ===== Tire Outlet Michigan ===== */
:root {
  --red: #d21f28;
  --red-dark: #ad1820;
  --red-deep: #8a1319;
  --amber: #f2a71b;
  --amber-dark: #d18c0c;
  --steel: #37424e;
  --steel-dark: #29323b;
  --navy: #1a2129;
  --navy2: #232c36;
  --ink: #1e262e;
  --ink-soft: #5c6672;
  --ink-faint: #8b95a1;
  --gray: #eef1f4;
  --gray2: #e2e7ec;
  --gray3: #d3dae1;
  --cloud: #f6f8fa;
  --white: #ffffff;
  --bg: #f6f8fa;
  --bg-dark: #161c22;
  --card: #ffffff;
  --border: #e0e5ea;
  --line: #ccd4dc;
  --shadow: 0 12px 32px rgba(26, 33, 41, 0.10);
  --shadow-lg: 0 22px 52px rgba(26, 33, 41, 0.18);
  --radius: 10px;
  --radius-sm: 6px;
  --maxw: 1180px;
  --sans: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  --display: "Oswald", "Arial Narrow", "Helvetica Neue", sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--bg); color: var(--ink); line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { color: var(--red); text-decoration: none; transition: color .15s; }
a:hover { color: var(--red-dark); }
img { max-width: 100%; display: block; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 26px; }
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.05; text-transform: uppercase; letter-spacing: 0.01em; color: var(--ink); font-weight: 700; }
section { scroll-margin-top: 128px; }

/* Utility */
.eyebrow { font-family: var(--display); font-size: 0.9rem; letter-spacing: .22em; text-transform: uppercase; color: var(--red); font-weight: 600; display: inline-block; }
.eyebrow.amber { color: var(--amber-dark); }

/* Topbar */
.topbar { background: var(--red); color: #fff; font-size: 0.86rem; padding: 8px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar .t-left { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar a { color: #fff; font-weight: 600; }
.topbar .t-phone { font-family: var(--display); letter-spacing: .04em; font-size: 1rem; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--navy); border-bottom: 3px solid var(--red); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { font-family: var(--display); font-weight: 700; font-size: 1.5rem; color: #fff; text-transform: uppercase; letter-spacing: .02em; display: flex; align-items: center; gap: 12px; }
.brand .logo { width: 50px; height: 50px; border-radius: 50%; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; border: 3px solid var(--steel); }
.brand .b-text { line-height: 0.98; }
.brand .b-text b { color: var(--amber); }
.brand .b-text small { display: block; font-family: var(--sans); font-size: 0.54rem; letter-spacing: .18em; color: #9aa6b2; font-weight: 700; margin-top: 2px; }
.nav-links { display: flex; gap: 2px; list-style: none; align-items: center; }
.nav-links a { color: #dbe1e8; font-family: var(--display); text-transform: uppercase; font-size: 0.92rem; letter-spacing: .04em; padding: 9px 13px; font-weight: 500; position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px; height: 2px; background: var(--amber); transform: scaleX(0); transition: transform .18s; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--amber); }
.nav-links .cta { background: var(--red); color: #fff; border-radius: 4px; padding: 10px 20px; margin-left: 8px; }
.nav-links .cta::after { display: none; }
.nav-links .cta:hover { background: var(--red-dark); color: #fff; }
.nav-toggle { display: none; background: none; border: 0; color: #fff; font-size: 1.7rem; cursor: pointer; }

/* Buttons */
.btn { font-family: var(--display); font-size: 0.98rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: 14px 32px; border-radius: 4px; border: 2px solid transparent; cursor: pointer; display: inline-block; transition: all .16s; text-align: center; }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); color: #fff; transform: translateY(-2px); }
.btn-amber { background: var(--amber); color: var(--navy); }
.btn-amber:hover { background: var(--amber-dark); color: var(--navy); transform: translateY(-2px); }
.btn-steel { background: var(--steel); color: #fff; }
.btn-steel:hover { background: var(--steel-dark); color: #fff; transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--red); }
.btn-white:hover { background: var(--gray); color: var(--red-dark); transform: translateY(-2px); }
.btn-line { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-line:hover { background: var(--ink); color: #fff; }
.btn-line-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-line-light:hover { background: #fff; color: var(--navy); }
.btn-lg { font-size: 1.1rem; padding: 16px 40px; }
.btn-sm { font-size: 0.8rem; padding: 9px 20px; }

/* Hero */
.hero { position: relative; background: var(--navy); color: #fff; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background:
  radial-gradient(circle at 80% 25%, rgba(210,31,40,.34), transparent 44%),
  radial-gradient(circle at 15% 85%, rgba(242,167,27,.12), transparent 48%); }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 6px; background: repeating-linear-gradient(90deg, var(--amber) 0 40px, var(--navy) 40px 80px); opacity: .5; }
.hero-inner { position: relative; z-index: 1; padding: 92px 0 100px; }
.hero-inner .max { max-width: 720px; }
.hero .tag { display: inline-flex; align-items: center; gap: 10px; background: rgba(242,167,27,.14); border: 1px solid rgba(242,167,27,.4); color: var(--amber); font-family: var(--display); letter-spacing: .14em; text-transform: uppercase; font-size: 0.86rem; padding: 8px 20px; border-radius: 4px; margin-bottom: 24px; }
.hero h1 { font-size: clamp(2.8rem, 7vw, 5.4rem); line-height: 0.96; margin-bottom: 22px; color: #fff; }
.hero h1 .red { color: var(--red); }
.hero h1 .amber { color: var(--amber); }
.hero .lede { font-size: 1.24rem; color: #c3ccd6; max-width: 560px; margin-bottom: 32px; }
.hero .cta-row { display: flex; gap: 15px; flex-wrap: wrap; }

/* Marquee */
.strip { background: var(--red); color: #fff; padding: 13px 0; overflow: hidden; white-space: nowrap; }
.strip .track { display: inline-block; animation: marquee 30s linear infinite; }
.strip .track span { margin: 0 26px; font-family: var(--display); font-size: 1.02rem; letter-spacing: .08em; text-transform: uppercase; }
.strip .track span.dot { color: var(--amber); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Quick bar */
.quickbar { background: var(--steel); color: #fff; }
.quickbar .container { display: grid; grid-template-columns: repeat(3, 1fr); }
.quickbar .q { display: flex; align-items: center; gap: 14px; padding: 20px 24px; border-right: 1px solid rgba(255,255,255,.12); }
.quickbar .q:last-child { border-right: 0; }
.quickbar .q .ico { font-size: 1.7rem; }
.quickbar .q h4 { font-size: 1rem; color: #fff; margin-bottom: 1px; }
.quickbar .q p { font-size: 0.86rem; color: #b9c2cc; }

/* Page head */
.page-head { background: var(--navy); color: #fff; padding: 66px 0 54px; position: relative; overflow: hidden; }
.page-head::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 84% 40%, rgba(210,31,40,.28), transparent 46%); }
.page-head::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 5px; background: repeating-linear-gradient(90deg, var(--amber) 0 34px, var(--navy) 34px 68px); opacity: .5; }
.page-head .container { position: relative; z-index: 1; }
.page-head .breadcrumb { font-family: var(--display); font-size: 0.86rem; letter-spacing: .08em; text-transform: uppercase; color: #8b95a1; margin-bottom: 14px; }
.page-head .breadcrumb a { color: #b9c2cc; }
.page-head h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); color: #fff; max-width: 900px; }
.page-head h1 .red { color: var(--red); }
.page-head .sub { margin-top: 16px; font-size: 1.18rem; color: #c3ccd6; max-width: 660px; }

/* Sections */
section.block { padding: 82px 0; }
section.block.gray { background: var(--gray); }
section.block.tint { background: var(--gray2); }
section.block.dark { background: var(--navy); color: #fff; }
section.block.steel { background: var(--steel); color: #fff; }
.block.dark h1, .block.dark h2, .block.dark h3, .block.steel h1, .block.steel h2, .block.steel h3 { color: #fff; }
.block.dark .eyebrow, .block.steel .eyebrow { color: var(--amber); }

/* Section header */
.sec-head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.sec-head .eyebrow { margin-bottom: 14px; }
.sec-head h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.sec-head h2 .red { color: var(--red); }
.sec-head p { color: var(--ink-soft); font-size: 1.08rem; margin-top: 14px; }
.block.dark .sec-head p, .block.steel .sec-head p { color: #c3ccd6; }

/* Grids */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Service cards */
.svc-card { background: var(--card); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .16s, box-shadow .16s; display: flex; flex-direction: column; border-top: 4px solid var(--red); }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-card .body { padding: 30px 28px; flex: 1; display: flex; flex-direction: column; }
.svc-card .ico { width: 66px; height: 66px; border-radius: 10px; background: var(--gray); display: flex; align-items: center; justify-content: center; font-size: 2rem; margin-bottom: 18px; }
.svc-card h3 { font-size: 1.44rem; margin-bottom: 10px; }
.svc-card p { color: var(--ink-soft); font-size: 0.96rem; flex: 1; }
.svc-card .c-link { margin-top: 18px; font-family: var(--display); font-size: 0.9rem; letter-spacing: .06em; text-transform: uppercase; color: var(--red); font-weight: 600; }

/* Service list rows */
.svc-list { display: grid; gap: 18px; }
.svc-row { display: grid; grid-template-columns: 72px 1fr; gap: 20px; background: var(--card); border-radius: var(--radius); padding: 26px 28px; box-shadow: var(--shadow); border-left: 4px solid var(--amber); align-items: start; }
.svc-row .r-ico { width: 60px; height: 60px; border-radius: 10px; background: var(--navy); color: var(--amber); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; }
.svc-row h3 { font-size: 1.36rem; margin-bottom: 6px; }
.svc-row p { color: var(--ink-soft); font-size: 0.96rem; }
.svc-row .r-price { font-family: var(--display); color: var(--red); font-weight: 700; font-size: 1rem; margin-top: 6px; }
.svc-row .r-price .fill { background: var(--gray2); border-bottom: 1px dashed var(--amber-dark); border-radius: 3px; padding: 0 6px; }

/* Tire cards */
.tire-card { background: var(--card); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .16s, box-shadow .16s; display: flex; flex-direction: column; }
.tire-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tire-card .t-img { aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 4.4rem; background: linear-gradient(150deg, var(--steel), var(--navy)); color: #fff; position: relative; }
.tire-card .t-badge { position: absolute; top: 14px; left: 14px; background: var(--amber); color: var(--navy); font-family: var(--display); font-size: 0.72rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 700; padding: 4px 12px; border-radius: 4px; }
.tire-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.tire-card .t-brand { font-family: var(--display); font-size: 0.76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--amber-dark); font-weight: 600; margin-bottom: 4px; }
.tire-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.tire-card p { color: var(--ink-soft); font-size: 0.93rem; flex: 1; }
.tire-card .t-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; gap: 10px; }
.tire-card .price { font-family: var(--display); font-size: 1.4rem; font-weight: 700; color: var(--red); }
.tire-card .price small { font-size: 0.68rem; color: var(--ink-faint); font-weight: 400; display: block; line-height: 1; }
.tire-card .price .fill { background: var(--gray2); border-bottom: 1px dashed var(--amber-dark); border-radius: 3px; padding: 0 6px; font-size: 1.15rem; }

/* Feature icons */
.feat-icons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feat-ico { text-align: center; }
.feat-ico .ico { width: 76px; height: 76px; margin: 0 auto 16px; border-radius: 12px; background: var(--card); display: flex; align-items: center; justify-content: center; font-size: 2rem; box-shadow: var(--shadow); }
.block.dark .feat-ico .ico, .block.steel .feat-ico .ico { background: var(--navy2); }
.feat-ico h3 { font-size: 1.14rem; margin-bottom: 8px; }
.feat-ico p { color: var(--ink-soft); font-size: 0.92rem; }
.block.dark .feat-ico p, .block.steel .feat-ico p { color: #b9c2cc; }

/* Feature split */
.feat { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.feat .f-visual { border-radius: var(--radius); min-height: 420px; display: flex; align-items: center; justify-content: center; font-size: 8rem; box-shadow: var(--shadow); background: linear-gradient(150deg, var(--steel), var(--navy)); color: var(--amber); }
.feat .f-visual.red { background: linear-gradient(150deg, var(--red), var(--red-deep)); color: #fff; }
.feat.flip .f-visual { order: 2; }
.feat h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.feat h2 .red { color: var(--red); }
.feat p { color: var(--ink-soft); margin-bottom: 16px; }
.feat .lede { font-size: 1.24rem; color: var(--ink); line-height: 1.5; margin-bottom: 18px; font-weight: 600; }
.dot-list { list-style: none; margin: 8px 0 24px; }
.dot-list li { padding-left: 34px; position: relative; margin-bottom: 12px; color: var(--ink-soft); }
.dot-list li::before { content: "\2713"; position: absolute; left: 0; top: -1px; width: 22px; height: 22px; background: var(--red); color: #fff; border-radius: 4px; font-size: 0.8rem; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.block.dark .feat p, .block.steel .feat p { color: #c3ccd6; }
.block.dark .feat .lede, .block.steel .feat .lede { color: #fff; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { text-align: center; }
.step .num { width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 8px; background: var(--red); color: #fff; font-family: var(--display); font-size: 1.6rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.step h3 { font-size: 1.14rem; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 0.92rem; }
.block.dark .step p, .block.steel .step p { color: #c3ccd6; }

/* Stat strip */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat .n { font-family: var(--display); font-size: 3rem; color: var(--amber); font-weight: 700; line-height: 1; }
.stat .l { font-family: var(--display); font-size: 0.9rem; letter-spacing: .08em; text-transform: uppercase; color: #b9c2cc; margin-top: 6px; }

/* Reviews */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review { background: var(--card); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); border-top: 3px solid var(--amber); }
.review .stars { color: var(--amber); margin-bottom: 12px; letter-spacing: 2px; }
.review p { color: var(--ink-soft); font-style: italic; margin-bottom: 14px; }
.review .who { font-family: var(--display); font-weight: 600; font-size: 1rem; color: var(--ink); text-transform: uppercase; letter-spacing: .02em; }

/* Brand strip */
.brand-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.brand-chip { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 12px; text-align: center; font-family: var(--display); font-size: 1.05rem; text-transform: uppercase; letter-spacing: .04em; color: var(--steel); box-shadow: var(--shadow); }

/* Info split / hours */
.info-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 2px solid var(--navy); border-radius: var(--radius); overflow: hidden; }
.info-split > div { padding: 42px; }
.info-split .i-left { background: var(--navy); color: #fff; }
.info-split .i-left h3 { color: var(--amber); font-size: 1.4rem; margin-bottom: 22px; }
.info-row { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.info-row .ico { font-size: 1.15rem; width: 42px; height: 42px; flex-shrink: 0; background: rgba(242,167,27,.14); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.info-row .k { font-family: var(--display); font-size: 0.8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--amber); }
.info-row .v { color: #fff; font-size: 1.02rem; }
.info-row .v .fill { background: rgba(242,167,27,.16); border-bottom: 1px dashed var(--amber); border-radius: 3px; padding: 0 6px; }
.hours-list { list-style: none; }
.hours-list li { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 0.96rem; color: #c3ccd6; }
.hours-list li .fill { background: rgba(242,167,27,.16); border-bottom: 1px dashed var(--amber); border-radius: 3px; padding: 0 6px; }
.hours-list li.today { color: var(--amber); font-weight: 700; }
.info-split .i-right { background: var(--card); }
.info-split .i-right h3 { font-size: 1.4rem; color: var(--red); margin-bottom: 16px; }

/* Map placeholder */
.map-box { aspect-ratio: 16/9; border-radius: var(--radius); background: linear-gradient(135deg, var(--gray2), var(--gray3)); display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--ink-soft); box-shadow: var(--shadow); border: 1px dashed var(--line); }
.map-box .pin { font-size: 3rem; margin-bottom: 8px; }

/* Prose */
.prose { font-size: 1.06rem; line-height: 1.8; }
.prose p { color: #333c45; margin-bottom: 16px; }
.prose h2 { font-size: 1.8rem; margin: 34px 0 12px; color: var(--red); }
.prose h3 { font-size: 1.3rem; margin: 26px 0 10px; color: var(--steel); }
.prose ul, .prose ol { padding-left: 24px; margin-bottom: 16px; color: #333c45; }
.prose li { margin-bottom: 8px; }
.prose .fill { background: var(--gray2); border-bottom: 1px dashed var(--amber-dark); padding: 0 4px; border-radius: 2px; font-weight: 600; }
.prose .note { background: var(--gray2); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px 20px; margin: 22px 0; font-size: 0.97rem; }

/* Forms */
.form-card { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 42px; }
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.contact-split .c-info { background: var(--navy); color: #fff; padding: 52px 46px; }
.contact-split .c-info h2 { color: #fff; font-size: 2rem; margin-bottom: 16px; }
.contact-split .c-info h2 .red { color: var(--red); }
.contact-split .c-info p { color: #c3ccd6; margin-bottom: 26px; }
.contact-split .c-form { background: var(--card); padding: 52px 46px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-family: var(--display); font-size: 0.84rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; margin-bottom: 8px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 13px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--cloud); font-family: var(--sans); font-size: 1rem; color: var(--ink); outline: none;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--red); }
.form-note { font-size: 0.8rem; color: var(--ink-faint); margin-top: 10px; }
.form-msg { padding: 14px 18px; border-radius: var(--radius-sm); margin-top: 16px; display: none; background: var(--gray2); color: var(--red-dark); border: 1px solid var(--red); font-size: 0.95rem; }
.form-msg.ok { display: block; }

/* CTA band */
.cta-band { padding: 88px 0; text-align: center; background: linear-gradient(140deg, var(--red), var(--red-deep)); color: #fff; position: relative; overflow: hidden; }
.cta-band::before { content: "\1F6DE"; position: absolute; font-size: 15rem; opacity: .09; top: -10px; left: 4%; }
.cta-band::after { content: "\1F527"; position: absolute; font-size: 12rem; opacity: .09; bottom: -26px; right: 5%; }
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 16px; }
.cta-band p { max-width: 580px; margin: 0 auto 30px; opacity: .96; font-size: 1.14rem; }
.cta-band .phone { font-family: var(--display); font-size: 2rem; margin-top: 18px; }
.cta-band .phone a { color: #fff; }

/* Footer */
.site-footer { background: var(--bg-dark); color: #9aa6b2; padding: 62px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid #2c353e; }
.footer-brand .fb-name { font-family: var(--display); font-size: 1.6rem; color: #fff; text-transform: uppercase; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.footer-brand .fb-name .logo { width: 42px; height: 42px; border-radius: 50%; background: var(--red); border: 3px solid var(--steel); }
.footer-brand p { font-size: 0.93rem; max-width: 300px; }
.footer-col h4 { font-family: var(--display); color: #fff; font-size: 0.94rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: #9aa6b2; font-size: 0.92rem; }
.footer-col a:hover { color: var(--amber); }
.footer-bottom { padding-top: 26px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-family: var(--display); font-size: 0.84rem; letter-spacing: .03em; color: #67727e; }
.footer-bottom a { color: #9aa6b2; }

/* Responsive */
@media (max-width: 940px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .feat-icons { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stat-strip { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .review-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .quickbar .container { grid-template-columns: 1fr; }
  .quickbar .q { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .quickbar .q:last-child { border-bottom: 0; }
  .brand-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .feat, .feat.flip { grid-template-columns: 1fr; gap: 34px; }
  .feat .f-visual, .feat.flip .f-visual { order: 0; min-height: 240px; font-size: 5rem; }
  .info-split { grid-template-columns: 1fr; }
  .info-split .i-left { border-bottom: 2px solid var(--navy); }
  .contact-split { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .nav-links { position: absolute; top: 78px; left: 0; right: 0; flex-direction: column; background: var(--navy); border-bottom: 3px solid var(--red); padding: 14px 26px; gap: 2px; display: none; align-items: stretch; }
  .nav-links.show { display: flex; }
  .nav-links a { width: 100%; padding: 12px 0; }
  .nav-links .cta { text-align: center; margin-left: 0; margin-top: 8px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .svc-row { grid-template-columns: 1fr; }
  .svc-row .r-ico { margin-bottom: 6px; }
}
@media (max-width: 480px) {
  .grid-4, .grid-3, .feat-icons, .steps { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .brand-strip { grid-template-columns: repeat(2, 1fr); }
  .contact-split .c-info, .contact-split .c-form { padding: 38px 28px; }
}
