/* Oldham Mobile Tyres Fitting — site styles */

:root {
  --ink: #0c1116;
  --ink-2: #151d26;
  --ink-3: #232e3b;
  --accent: #ffb400;
  --accent-2: #ff8a00;
  --accent-ink: #1a1200;
  --paper: #ffffff;
  --paper-2: #f6f8fa;
  --paper-3: #eef2f6;
  --text: #17202a;
  --muted: #5c6773;
  --line: #e2e8ef;
  --ok: #1a9d54;

  --wrap: 1140px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 1px 2px rgba(12, 17, 22, .06), 0 8px 24px rgba(12, 17, 22, .08);
  --shadow-lg: 0 24px 60px rgba(12, 17, 22, .18);

  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
          Arial, "Noto Sans", sans-serif;
}

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

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

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  margin: 0 0 .5em;
  line-height: 1.12;
  letter-spacing: -.022em;
  font-weight: 800;
}

h1 { font-size: clamp(2.1rem, 6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
h3 { font-size: 1.16rem; letter-spacing: -.01em; }
p  { margin: 0 0 1rem; }

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

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--accent); color: var(--accent-ink);
  padding: 12px 18px; border-radius: 0 0 10px 0; font-weight: 700;
}
.skip:focus { left: 0; }

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

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 15px 26px; border-radius: 999px;
  font-weight: 800; font-size: 1rem; letter-spacing: -.01em;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--call {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-2) 100%);
  color: var(--accent-ink);
  box-shadow: 0 6px 18px rgba(255, 138, 0, .38);
}
.btn--call:hover { box-shadow: 0 12px 30px rgba(255, 138, 0, .5); }

.btn--ghost { background: transparent; color: var(--paper); border-color: rgba(255,255,255,.32); }
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }

.btn--dark { background: var(--ink); color: var(--paper); }
.btn--dark:hover { background: var(--ink-3); }

.btn--outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--outline:hover { border-color: var(--ink); background: var(--paper-2); }

.btn--lg { padding: 18px 34px; font-size: 1.08rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */

.hdr {
  position: sticky; top: 0; z-index: 100;
  background: rgba(12, 17, 22, .92);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.hdr__in { display: flex; align-items: center; gap: 20px; height: 72px; }

.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--paper); margin-right: auto; }
.logo__mark { width: 38px; height: 38px; flex: 0 0 38px; }
.logo__txt { display: flex; flex-direction: column; line-height: 1.1; }
.logo__a { font-weight: 800; font-size: 1rem; letter-spacing: -.02em; }
.logo__b { font-size: .68rem; text-transform: uppercase; letter-spacing: .14em; color: var(--accent); font-weight: 700; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  color: rgba(255,255,255,.82); text-decoration: none; font-weight: 600; font-size: .95rem;
  transition: color .15s ease;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--accent); }

.hdr .btn { padding: 11px 20px; font-size: .93rem; }

@media (max-width: 860px) {
  .nav { display: none; }
  .hdr__in { height: 64px; }
  .logo__a { font-size: .92rem; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative; color: var(--paper);
  background:
    radial-gradient(1100px 520px at 78% -12%, rgba(255, 180, 0, .22), transparent 62%),
    radial-gradient(700px 420px at 8% 108%, rgba(255, 138, 0, .12), transparent 60%),
    linear-gradient(165deg, var(--ink) 0%, var(--ink-2) 55%, #0a1620 100%);
  padding: clamp(58px, 9vw, 104px) 0 clamp(64px, 9vw, 104px);
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(900px 520px at 50% 20%, #000 20%, transparent 78%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255, 180, 0, .13); border: 1px solid rgba(255, 180, 0, .3);
  color: var(--accent); font-weight: 700; font-size: .82rem;
  letter-spacing: .05em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 999px; margin-bottom: 22px;
}
.pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #2fd36f;
  box-shadow: 0 0 0 0 rgba(47, 211, 111, .7); animation: pulse 2.2s infinite;
}
@keyframes pulse {
  70%  { box-shadow: 0 0 0 11px rgba(47, 211, 111, 0); }
  100% { box-shadow: 0 0 0 0 rgba(47, 211, 111, 0); }
}

.hero h1 { color: var(--paper); }
.hero h1 .hl {
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lede { font-size: clamp(1.03rem, 2vw, 1.2rem); color: rgba(255,255,255,.8); max-width: 54ch; margin-bottom: 30px; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }

.hero__ticks { display: flex; flex-wrap: wrap; gap: 10px 26px; padding: 0; margin: 0; list-style: none; }
.hero__ticks li { display: flex; align-items: center; gap: 9px; font-size: .95rem; color: rgba(255,255,255,.8); font-weight: 600; }
.tick { width: 19px; height: 19px; flex: 0 0 19px; color: var(--accent); }

/* rating card */
.rcard {
  background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius-lg); padding: 30px; backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
}
.rcard__score { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.rcard__num { font-size: 3.3rem; font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.rcard__of { color: rgba(255,255,255,.55); font-weight: 600; font-size: .95rem; }
.stars { display: flex; gap: 3px; color: var(--accent); margin-bottom: 10px; }
.stars svg { width: 21px; height: 21px; }
.rcard__meta { color: rgba(255,255,255,.68); font-size: .92rem; margin: 0 0 22px; }
.rcard__div { height: 1px; background: rgba(255,255,255,.13); margin: 22px 0; }

.mini { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 16px; }
.mini:last-child { margin-bottom: 0; }
.mini__ic {
  width: 38px; height: 38px; flex: 0 0 38px; border-radius: 11px;
  background: rgba(255,180,0,.14); color: var(--accent);
  display: grid; place-items: center;
}
.mini__ic svg { width: 19px; height: 19px; }
.mini__k { font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.5); font-weight: 700; }
.mini__v { font-weight: 700; font-size: .98rem; color: var(--paper); text-decoration: none; }
a.mini__v:hover { color: var(--accent); }

@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Trust strip ---------- */

.strip { background: var(--ink-2); border-top: 1px solid rgba(255,255,255,.07); padding: 26px 0; }
.strip__in { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; text-align: center; }
.strip__n { font-size: 1.75rem; font-weight: 800; color: var(--accent); letter-spacing: -.03em; line-height: 1.1; }
.strip__l { font-size: .84rem; color: rgba(255,255,255,.62); font-weight: 600; }
@media (max-width: 700px) {
  .strip__in { grid-template-columns: repeat(2, 1fr); gap: 24px 14px; }
}

/* ---------- Sections ---------- */

.sec { padding: clamp(56px, 8vw, 96px) 0; }
.sec--alt { background: var(--paper-2); }
.sec--dark { background: var(--ink); color: var(--paper); }
.sec--dark h2 { color: var(--paper); }

.shead { max-width: 640px; margin-bottom: 46px; }
.shead--c { margin-inline: auto; text-align: center; }
.shead__k {
  display: block; font-size: .8rem; font-weight: 800; letter-spacing: .13em;
  text-transform: uppercase; color: var(--accent-2); margin-bottom: 12px;
}
.sec--dark .shead__k { color: var(--accent); }
.shead p { color: var(--muted); font-size: 1.06rem; margin: 0; }
.sec--dark .shead p { color: rgba(255,255,255,.72); }

/* ---------- Cards ---------- */

.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 26px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #cfd9e4; }
.card__ic {
  width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center;
  background: linear-gradient(145deg, #fff3d6, #ffe0a8); color: #b26a00; margin-bottom: 18px;
}
.card__ic svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .45em; }
.card p { color: var(--muted); font-size: .97rem; margin: 0; }

/* ---------- Steps ---------- */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: s; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 14px; }
.step__n {
  display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(180deg, var(--accent), var(--accent-2)); color: var(--accent-ink);
  font-weight: 800; font-size: 1.35rem; margin-bottom: 18px;
  box-shadow: 0 8px 22px rgba(255,138,0,.32);
}
.step h3 { color: var(--paper); }
.step p { color: rgba(255,255,255,.72); font-size: .98rem; margin: 0; }

/* ---------- Areas ---------- */

.areas { display: flex; flex-wrap: wrap; gap: 11px; list-style: none; padding: 0; margin: 0 0 26px; }
.areas li {
  background: var(--paper); border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 19px; font-weight: 650; font-size: .94rem; color: var(--text);
}
.areas li::before { content: "📍 "; }

/* ---------- Split ---------- */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 940px) { .split { grid-template-columns: 1fr; gap: 38px; } }

.checks { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 15px; }
.checks li { display: flex; gap: 13px; align-items: flex-start; font-size: 1rem; }
.checks .tick { margin-top: 3px; color: var(--ok); }
.checks b { display: block; }
.checks span { color: var(--muted); font-size: .94rem; }

/* ---------- CTA band ---------- */

.band {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: var(--accent-ink); padding: clamp(46px, 7vw, 76px) 0; text-align: center;
}
.band h2 { color: var(--accent-ink); margin-bottom: .35em; }
.band p { font-size: 1.1rem; max-width: 56ch; margin: 0 auto 30px; opacity: .82; font-weight: 500; }
.band .btn--dark { box-shadow: 0 10px 30px rgba(0,0,0,.22); }
.band__row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Contact page ---------- */

.phead {
  background: linear-gradient(165deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--paper); padding: clamp(52px, 7vw, 82px) 0; text-align: center;
}
.phead h1 { color: var(--paper); margin-bottom: .3em; }
.phead p { color: rgba(255,255,255,.75); font-size: 1.08rem; max-width: 58ch; margin-inline: auto; }

.ccards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 760px) { .ccards { grid-template-columns: 1fr; } }

.ccard {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px; text-decoration: none; color: inherit;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.ccard:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #cfd9e4; }
.ccard__ic {
  width: 50px; height: 50px; flex: 0 0 50px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(145deg, #fff3d6, #ffe0a8); color: #b26a00;
}
.ccard__ic svg { width: 24px; height: 24px; }
.ccard__k { font-size: .75rem; text-transform: uppercase; letter-spacing: .11em; color: var(--muted); font-weight: 800; margin-bottom: 4px; }
.ccard__v { font-size: 1.16rem; font-weight: 800; letter-spacing: -.015em; word-break: break-word; }
.ccard__s { font-size: .9rem; color: var(--muted); margin-top: 3px; }

/* ---------- Form ---------- */

.form { display: grid; gap: 18px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .frow { grid-template-columns: 1fr; } }

.field { display: grid; gap: 7px; }
.field label { font-weight: 700; font-size: .92rem; }
.field .req { color: #d13b3b; }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem; color: var(--text);
  padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px;
  background: var(--paper); width: 100%; transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent-2); box-shadow: 0 0 0 4px rgba(255,180,0,.18);
}
.fnote { font-size: .88rem; color: var(--muted); margin: 0; }

.formwrap {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow);
}

.hours { list-style: none; padding: 0; margin: 0; }
.hours li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 11px 0; border-bottom: 1px dashed var(--line); font-size: .97rem;
}
.hours li:last-child { border-bottom: 0; }
.hours b { font-weight: 700; }
.hours .open { color: var(--ok); font-weight: 800; }

.mapwrap {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--paper-3);
}
.mapwrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- Footer ---------- */

.ftr { background: var(--ink); color: rgba(255,255,255,.7); padding: 62px 0 0; font-size: .95rem; }
.ftr__grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr; gap: 44px; padding-bottom: 46px; }
@media (max-width: 860px) { .ftr__grid { grid-template-columns: 1fr; gap: 34px; } }
.ftr h4 { color: var(--paper); font-size: .82rem; text-transform: uppercase; letter-spacing: .13em; margin: 0 0 18px; font-weight: 800; }
.ftr p { margin: 0 0 14px; line-height: 1.7; }
.ftr a { color: rgba(255,255,255,.78); text-decoration: none; }
.ftr a:hover { color: var(--accent); }
.ftr ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.ftr .logo { margin-bottom: 18px; }
.ftr__bot {
  border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0 30px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: .87rem; color: rgba(255,255,255,.5);
}
.ftr__bot p { margin: 0; }

/* ---------- Sticky mobile call bar ---------- */

.callbar { display: none; }
@media (max-width: 860px) {
  .callbar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(12,17,22,.96); backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,.12);
  }
  .callbar .btn { padding: 14px 12px; font-size: .97rem; }
  .callbar .btn--ghost { color: var(--paper); }
  body { padding-bottom: 82px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
