/* ============================================================
   Peter Fix-it — Mobile Mechanic Bristol
   Premium dark automotive theme
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Surfaces */
  --bg:            #08090c;
  --bg-2:          #0b0d11;
  --panel:         #0e1118;
  --panel-2:       #111623;
  --surface:       rgba(255, 255, 255, 0.035);
  --surface-2:     rgba(255, 255, 255, 0.06);
  --stroke:        rgba(255, 255, 255, 0.09);
  --stroke-2:      rgba(255, 255, 255, 0.14);

  /* Brand */
  --red:           #e2202e;
  --red-bright:    #ff3546;
  --red-deep:      #b3121d;
  --navy:          #0d1524;

  /* Text */
  --text:          #f4f6f9;
  --muted:         #aab2c0;
  --muted-2:       #7c8698;
  --faint:         #5a6478;

  /* Effects */
  --radius:        18px;
  --radius-sm:     12px;
  --radius-lg:     26px;
  --shadow:        0 24px 60px -24px rgba(0, 0, 0, 0.75);
  --shadow-red:    0 18px 44px -16px rgba(226, 32, 46, 0.55);
  --ring:          0 0 0 1px rgba(255,255,255,0.05), 0 1px 0 rgba(255,255,255,0.05) inset;

  --maxw:          1180px;
  --gap:           clamp(1.5rem, 3vw, 2.75rem);

  --font-display:  'Sora', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body:     'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --ease:          cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html { scroll-padding-top: 92px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Ambient page background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 700px at 78% -10%, rgba(226, 32, 46, 0.12), transparent 60%),
    radial-gradient(900px 640px at 6% 8%, rgba(24, 43, 82, 0.35), transparent 62%),
    linear-gradient(180deg, #08090c 0%, #0a0c10 40%, #08090c 100%);
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

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

::selection { background: var(--red); color: #fff; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.15rem, 4vw, 2.25rem); }

.accent, .accent-text { color: var(--red-bright); }
.muted-note, .placeholder-note, .fp { color: var(--muted-2); font-weight: 400; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--red); color: #fff; padding: 0.6rem 1rem; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  --bh: 0;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em;
  padding: 0.85rem 1.4rem; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
  will-change: transform;
}
.btn svg { flex: none; }
.btn-sm { padding: 0.62rem 1.05rem; font-size: 0.88rem; }
.btn-lg { padding: 1rem 1.7rem; font-size: 1.02rem; }
.btn-block { width: 100%; }

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, var(--red-bright), var(--red-deep));
  box-shadow: var(--shadow-red), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 24px 54px -14px rgba(226,32,46,0.7), inset 0 1px 0 rgba(255,255,255,0.3); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  color: var(--text);
  background: var(--surface);
  border-color: var(--stroke-2);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.32); background: var(--surface-2); }

/* ---------- Eyebrow / section head ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red-bright); box-shadow: 0 0 12px 2px rgba(255,53,70,0.7); }

.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }
.section-head { max-width: 720px; margin-bottom: clamp(2.25rem, 5vw, 3.5rem); }
.section-head h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); margin: 0.9rem 0 0.9rem; }
.section-lead { color: var(--muted); font-size: clamp(1rem, 1.6vw, 1.12rem); max-width: 60ch; }

h2 { color: var(--text); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(8, 9, 12, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--stroke);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 1rem; }

.brand { display: inline-flex; align-items: center; gap: 0.65rem; }
.brand-mark { display: grid; place-items: center; filter: drop-shadow(0 6px 14px rgba(226,32,46,0.35)); }
.brand-text { font-family: var(--font-display); font-weight: 700; font-size: 1.16rem; letter-spacing: -0.01em; }

.nav { display: flex; align-items: center; gap: 0.35rem; }
.nav a {
  font-family: var(--font-display); font-weight: 500; font-size: 0.92rem; color: var(--muted);
  padding: 0.5rem 0.85rem; border-radius: 999px; position: relative;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}
.nav a:hover, .nav a.active { color: var(--text); background: var(--surface); }

.header-cta { display: flex; align-items: center; gap: 0.75rem; }
.link-phone {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; color: var(--text);
}
.link-phone svg { color: var(--red-bright); }
.link-phone:hover { color: var(--red-bright); }

.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--stroke-2); background: var(--surface); border-radius: 12px; padding: 0; position: relative; }
.nav-toggle span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s var(--ease); }
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: 96px; padding-bottom: 60px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; filter: saturate(0.85) contrast(1.05) brightness(0.55); }
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(6,7,10,0.96) 0%, rgba(6,7,10,0.72) 42%, rgba(6,7,10,0.35) 100%),
    linear-gradient(180deg, rgba(8,9,12,0.85) 0%, transparent 30%, rgba(8,9,12,0.55) 78%, var(--bg) 100%);
}
.hero-glow { position: absolute; top: -10%; right: -8%; width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  background: radial-gradient(circle, rgba(226,32,46,0.35) 0%, rgba(226,32,46,0.06) 42%, transparent 68%); filter: blur(10px); }
.hero-grid {
  position: absolute; inset: 0; opacity: 0.35;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: radial-gradient(ellipse 80% 60% at 60% 40%, #000 40%, transparent 100%);
}

.hero-inner { position: relative; max-width: 820px; }
.hero-title { font-size: clamp(2.5rem, 7vw, 5rem); font-weight: 800; margin: 1.1rem 0; letter-spacing: -0.03em; }
.hero-title .accent-text { display: inline-block; background: linear-gradient(180deg, #ff5261, var(--red)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: clamp(1.05rem, 2.1vw, 1.32rem); color: #d6dbe4; max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin: 2rem 0 1.75rem; }

.trust-badges { display: flex; flex-wrap: wrap; gap: 0.6rem 0.75rem; }
.trust-badges li {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--font-display); font-weight: 500; font-size: 0.86rem; color: #dfe4ec;
  padding: 0.5rem 0.9rem; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--stroke); backdrop-filter: blur(8px);
}
.trust-badges .tb-icon { color: var(--red-bright); font-weight: 700; }

.scroll-cue { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.28); border-radius: 999px; display: grid; place-items: start center; padding-top: 7px; }
.scroll-cue span { width: 4px; height: 8px; border-radius: 4px; background: var(--red-bright); animation: scrollDot 1.8s var(--ease) infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(12px); } 100% { opacity: 0; } }

/* ---------- Stats ---------- */
.stats { padding: clamp(2rem, 5vw, 3rem) 0; border-top: 1px solid var(--stroke); border-bottom: 1px solid var(--stroke); background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat { text-align: center; padding: 1rem 0.5rem; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 18%; bottom: 18%; width: 1px; background: var(--stroke); }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 4.5vw, 3rem); line-height: 1; background: linear-gradient(180deg, #fff, #c4cad4); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { color: var(--muted); font-size: 0.9rem; margin-top: 0.5rem; }

/* ---------- Generic card grid ---------- */
.card-grid { display: grid; gap: clamp(1rem, 2vw, 1.4rem); }
.services-grid { grid-template-columns: repeat(4, 1fr); }
.why-grid { grid-template-columns: repeat(3, 1fr); }

/* ---------- Service cards ---------- */
.s-card {
  position: relative; padding: 1.6rem 1.5rem 1.4rem; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--stroke); box-shadow: var(--ring);
  overflow: hidden; transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex; flex-direction: column;
}
.s-card::after { content: ""; position: absolute; inset: 0; background: radial-gradient(420px 220px at 80% -10%, rgba(226,32,46,0.16), transparent 70%); opacity: 0; transition: opacity 0.4s var(--ease); pointer-events: none; }
.s-card:hover { transform: translateY(-6px); border-color: rgba(226,32,46,0.4); box-shadow: var(--shadow), 0 0 0 1px rgba(226,32,46,0.15); }
.s-card:hover::after { opacity: 1; }
.s-card:hover .s-ico { transform: translateY(-2px) scale(1.04); border-color: rgba(226,32,46,0.5); color: var(--red-bright); }

.s-ico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid var(--stroke-2); color: #e8ebf0; margin-bottom: 1.1rem;
  transition: transform 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.s-card h3 { font-size: 1.16rem; margin-bottom: 0.5rem; }
.s-card p { color: var(--muted); font-size: 0.94rem; flex: 1; }
.s-link {
  display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.1rem;
  font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; color: var(--text);
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.s-link svg { transition: transform 0.3s var(--ease); }
.s-card:hover .s-link { color: var(--red-bright); gap: 0.6rem; }
.s-card:hover .s-link svg { transform: translateX(3px); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(1.8rem, 4vw, 3.5rem); align-items: center; }
.about-media { position: relative; }
.about-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--stroke-2); box-shadow: var(--shadow); }
.about-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(8,9,12,0.55)); }
.about-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; filter: saturate(0.92) contrast(1.03); transition: transform 0.7s var(--ease); }
.about-media:hover .about-photo img { transform: scale(1.04); }
.about-badge {
  position: absolute; right: -14px; bottom: -14px; z-index: 2;
  background: linear-gradient(180deg, var(--panel-2), var(--panel)); border: 1px solid var(--stroke-2);
  border-radius: 16px; padding: 0.95rem 1.15rem; box-shadow: var(--shadow); display: grid; gap: 0.15rem; min-width: 148px;
}
.ab-num { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--red-bright); }
.ab-text { font-size: 0.82rem; color: var(--muted); }

.about-copy h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); margin: 0.85rem 0 1rem; }
.about-copy p { color: var(--muted); margin-bottom: 0.9rem; }
.about-points { display: grid; gap: 0.6rem; margin: 1.4rem 0 1.6rem; }
.about-points li { display: flex; align-items: center; gap: 0.7rem; color: #d7dce4; font-size: 0.96rem; }
.chk { display: grid; place-items: center; width: 24px; height: 24px; flex: none; border-radius: 7px; background: rgba(226,32,46,0.14); color: var(--red-bright); font-size: 0.78rem; font-weight: 700; border: 1px solid rgba(226,32,46,0.3); }
.about-actions { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; }
.sig { font-family: var(--font-display); font-style: italic; color: var(--muted-2); font-size: 0.92rem; }

/* ---------- Feature band ---------- */
.feature-band { position: relative; padding: clamp(4rem, 9vw, 7rem) 0; overflow: hidden; text-align: center; }
.fb-bg { position: absolute; inset: 0; z-index: -1; }
.fb-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; filter: brightness(0.4) saturate(0.85); }
.fb-veil { position: absolute; inset: 0; background: radial-gradient(1000px 500px at 50% 40%, rgba(8,9,12,0.55), rgba(8,9,12,0.9) 85%), linear-gradient(180deg, var(--bg), transparent 25%, transparent 75%, var(--bg)); }
.fb-inner { max-width: 720px; margin-inline: auto; }
.fb-inner h2 { font-size: clamp(1.9rem, 4.6vw, 3rem); }
.fb-inner p { color: #d6dbe4; font-size: clamp(1rem, 1.8vw, 1.18rem); margin: 1rem auto 1.8rem; max-width: 52ch; }
.fb-actions { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Why cards ---------- */
.w-card {
  position: relative; padding: 1.7rem 1.5rem; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--stroke); box-shadow: var(--ring);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  overflow: hidden;
}
.w-card::before { content: ""; position: absolute; left: 0; top: 1.6rem; bottom: 1.6rem; width: 3px; border-radius: 3px; background: linear-gradient(180deg, var(--red-bright), transparent); opacity: 0; transition: opacity 0.4s var(--ease); }
.w-card:hover { transform: translateY(-5px); border-color: var(--stroke-2); box-shadow: var(--shadow); }
.w-card:hover::before { opacity: 1; }
.w-ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; color: var(--red-bright); background: rgba(226,32,46,0.1); border: 1px solid rgba(226,32,46,0.25); margin-bottom: 1rem; }
.w-card h3 { font-size: 1.1rem; margin-bottom: 0.45rem; }
.w-card p { color: var(--muted); font-size: 0.93rem; }

/* ---------- Recent work gallery ---------- */
.work-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: clamp(0.7rem, 1.4vw, 1.1rem); }
.work-item { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--stroke); box-shadow: var(--ring); grid-row: span 1; }
.work-tall { grid-row: span 2; }
.work-wide { grid-column: span 2; }
.work-item img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9) contrast(1.02) brightness(0.92); transition: transform 0.8s var(--ease), filter 0.6s var(--ease); }
.work-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(6,7,10,0.85)); }
.work-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 0.9rem 1rem;
  font-family: var(--font-display); font-weight: 500; font-size: 0.86rem; color: #eef1f5;
  transform: translateY(6px); opacity: 0.9; transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.work-item:hover img { transform: scale(1.07); filter: saturate(1) contrast(1.05) brightness(1); }
.work-item:hover figcaption { transform: translateY(0); opacity: 1; }

/* ---------- Service area ---------- */
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.8rem, 4vw, 3.5rem); align-items: center; }
.area-copy h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); margin: 0.85rem 0 1rem; }
.area-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.55rem 0.75rem; margin: 1.4rem 0 1.8rem; }
.area-list li { display: flex; align-items: center; gap: 0.5rem; color: #d7dce4; font-size: 0.92rem; }
.area-list li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--red-bright); flex: none; box-shadow: 0 0 8px rgba(255,53,70,0.7); }

/* Real Google Maps embed (keyless) */
.area-map { position: relative; aspect-ratio: 4 / 3.4; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--stroke-2); box-shadow: var(--shadow); background: var(--panel); }
.area-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; filter: saturate(0.9) contrast(1.02); }
.area-map::after { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06), inset 0 -70px 60px -34px rgba(6,7,10,0.72); }
.map-chip {
  position: absolute; z-index: 2; left: 14px; bottom: 14px; display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 0.9rem; border-radius: 999px; background: rgba(8,9,12,0.82); backdrop-filter: blur(8px);
  border: 1px solid var(--stroke-2); font-family: var(--font-display); font-weight: 600; font-size: 0.85rem; color: #fff;
}
.map-chip svg { color: var(--red-bright); }


/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.8rem, 4vw, 3.5rem); align-items: start; }
.contact-copy h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); margin: 0.85rem 0 1rem; }
.contact-actions { display: grid; gap: 0.8rem; margin: 1.6rem 0; }
.contact-tile {
  display: flex; align-items: center; gap: 1rem; padding: 1rem 1.15rem; border-radius: 14px;
  background: var(--surface); border: 1px solid var(--stroke); transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.contact-tile:hover { transform: translateY(-3px); border-color: var(--stroke-2); background: var(--surface-2); }
.ct-ico { width: 48px; height: 48px; flex: none; border-radius: 12px; display: grid; place-items: center; color: var(--red-bright); background: rgba(226,32,46,0.12); border: 1px solid rgba(226,32,46,0.28); }
.contact-tile.whatsapp .ct-ico { color: #25d366; background: rgba(37,211,102,0.12); border-color: rgba(37,211,102,0.3); }
.ct-body { display: grid; }
.ct-body strong { font-family: var(--font-display); font-size: 1rem; }
.ct-body span { color: var(--muted); font-size: 0.9rem; }

.contact-meta { border-top: 1px solid var(--stroke); padding-top: 1.2rem; display: grid; gap: 0.55rem; }
.contact-meta p { color: var(--muted); font-size: 0.92rem; }
.contact-meta strong { color: var(--text); }

.contact-form-wrap {
  padding: clamp(1.4rem, 3vw, 2.2rem); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--stroke-2); box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.contact-form-wrap::before { content: ""; position: absolute; top: -40%; right: -20%; width: 60%; aspect-ratio: 1; background: radial-gradient(circle, rgba(226,32,46,0.18), transparent 65%); pointer-events: none; }
.contact-form h3 { font-size: 1.35rem; margin-bottom: 1.2rem; }
.field { margin-bottom: 1rem; display: grid; gap: 0.4rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { font-family: var(--font-display); font-weight: 500; font-size: 0.85rem; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 0.96rem; color: var(--text);
  background: rgba(0,0,0,0.35); border: 1px solid var(--stroke-2); border-radius: 12px;
  padding: 0.8rem 0.95rem; transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: rgba(226,32,46,0.6); box-shadow: 0 0 0 4px rgba(226,32,46,0.14); background: rgba(0,0,0,0.5); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='%23aab2c0'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.85rem center; padding-right: 2.4rem; }
.field select option { background: #0e1118; color: var(--text); }
.contact-form .btn-block { margin-top: 0.4rem; }
.form-status { margin-top: 0.8rem; font-size: 0.92rem; font-weight: 600; font-family: var(--font-display); min-height: 1.2em; }
.form-status.ok { color: #4ade80; }
.form-status.err { color: var(--red-bright); }
.form-fineprint { margin-top: 0.85rem; font-size: 0.78rem; color: var(--muted-2); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--stroke); background: linear-gradient(180deg, transparent, rgba(0,0,0,0.35)); padding-top: clamp(3rem, 6vw, 4.5rem); margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2rem; padding-bottom: 2.5rem; }
.footer-brand p { color: var(--muted); font-size: 0.92rem; margin: 1rem 0; max-width: 38ch; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a { font-family: var(--font-display); font-weight: 500; font-size: 0.85rem; padding: 0.45rem 0.85rem; border-radius: 999px; border: 1px solid var(--stroke-2); color: var(--muted); transition: color 0.25s var(--ease), border-color 0.25s var(--ease); }
.footer-social a:hover { color: var(--text); border-color: rgba(226,32,46,0.5); }
.footer-col h4 { font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text); margin-bottom: 1rem; }
.footer-col a { display: block; color: var(--muted); font-size: 0.92rem; padding: 0.28rem 0; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--red-bright); }
.footer-line { color: var(--muted); font-size: 0.92rem; padding: 0.28rem 0; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding: 1.4rem 0; border-top: 1px solid var(--stroke); color: var(--muted-2); font-size: 0.85rem; }
.footer-bottom .credit a { color: var(--muted); }
.footer-bottom .credit a:hover { color: var(--red-bright); }

/* ---------- Mobile sticky bar ---------- */
.mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none; gap: 0.6rem; padding: 0.6rem clamp(0.8rem, 4vw, 1.2rem) calc(0.6rem + env(safe-area-inset-bottom)); background: rgba(8,9,12,0.85); backdrop-filter: blur(14px); border-top: 1px solid var(--stroke); }
.mb-call, .mb-wa { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem; font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; padding: 0.8rem; border-radius: 12px; }
.mb-call { color: var(--text); background: var(--surface-2); border: 1px solid var(--stroke-2); }

/* ---------- Reveal animation (only when JS is available) ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .nav { position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0; padding: 1rem clamp(1.15rem, 4vw, 2.25rem) 1.4rem; background: rgba(8,9,12,0.96); backdrop-filter: blur(18px); border-bottom: 1px solid var(--stroke); transform: translateY(-120%); transition: transform 0.4s var(--ease); }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 0.85rem 0.5rem; font-size: 1rem; border-radius: 10px; border-bottom: 1px solid var(--stroke); }
  .nav a:last-child { border-bottom: none; }
  .nav-toggle { display: block; }
  .link-phone { display: none; }
  .header-cta .btn-primary { display: none; }

  .about-grid, .area-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 460px; margin-inline: auto; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-auto-rows: 180px; }
}
@media (max-width: 680px) {
  html { scroll-padding-top: 76px; }
  .header-inner { height: 64px; }
  .nav { inset: 64px 0 auto 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .stat:nth-child(3)::before, .stat + .stat::before { display: none; }
  .stat { border: 1px solid var(--stroke); border-radius: 14px; background: var(--surface); }
  .services-grid, .why-grid { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .work-wide { grid-column: span 2; }
  .work-tall { grid-row: span 1; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.6rem; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-actions .btn { flex: 1; }
  .mobile-bar { display: flex; }
  main { padding-bottom: 4rem; }
  .about-badge { right: 10px; }
}
@media (max-width: 400px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   v2 — multi-page additions
   ============================================================ */

/* Internal page hero */
.page-hero { position: relative; padding: calc(72px + clamp(3.2rem, 7vw, 5.5rem)) 0 clamp(2.6rem, 6vw, 4.5rem); overflow: hidden; }
.page-hero .container { position: relative; z-index: 1; max-width: 900px; }
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; filter: saturate(0.8) contrast(1.04) brightness(0.42); }
.page-hero-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,9,12,0.82) 0%, rgba(8,9,12,0.66) 45%, var(--bg) 100%); }
.page-hero-glow { position: absolute; top: -35%; right: -6%; width: 52vw; max-width: 640px; aspect-ratio: 1; background: radial-gradient(circle, rgba(226,32,46,0.28), transparent 66%); filter: blur(6px); }
.page-hero h1 { font-size: clamp(2.1rem, 5.5vw, 3.7rem); font-weight: 800; margin: 1rem 0 0.85rem; letter-spacing: -0.03em; }
.page-hero .lead { color: #d6dbe4; font-size: clamp(1.02rem, 1.9vw, 1.22rem); max-width: 62ch; }
.page-hero .hero-actions { margin-top: 1.8rem; }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-display); font-weight: 500; font-size: 0.84rem; letter-spacing: 0.02em; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--red-bright); }
.breadcrumb .sep { color: var(--faint); }
.breadcrumb .cur { color: var(--text); }

/* Section header with inline "view all" link */
.section-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem 2rem; flex-wrap: wrap; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head-row .section-head { margin-bottom: 0; }
.link-more { display: inline-flex; align-items: center; gap: 0.45rem; font-family: var(--font-display); font-weight: 600; font-size: 0.94rem; color: var(--text); white-space: nowrap; padding-bottom: 0.4rem; }
.link-more svg { transition: transform 0.3s var(--ease); }
.link-more:hover { color: var(--red-bright); }
.link-more:hover svg { transform: translateX(3px); }

/* Reusable CTA band */
.cta-band { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.cta-inner { position: relative; text-align: center; max-width: 820px; margin-inline: auto; padding: clamp(2.4rem, 5vw, 4rem) clamp(1.4rem, 4vw, 3.2rem); border-radius: var(--radius-lg); border: 1px solid var(--stroke-2); background: linear-gradient(180deg, var(--panel-2), var(--panel)); box-shadow: var(--shadow); overflow: hidden; }
.cta-inner::before { content: ""; position: absolute; top: -55%; left: 50%; transform: translateX(-50%); width: 85%; aspect-ratio: 2 / 1; background: radial-gradient(ellipse, rgba(226,32,46,0.24), transparent 62%); pointer-events: none; }
.cta-inner .eyebrow { position: relative; }
.cta-inner h2 { position: relative; font-size: clamp(1.7rem, 4vw, 2.7rem); margin: 0.9rem 0 0; }
.cta-inner p { position: relative; color: var(--muted); margin: 0.9rem auto 1.7rem; max-width: 50ch; }
.cta-actions { position: relative; display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

/* How it works — process steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.step { position: relative; padding: 1.9rem 1.6rem; border-radius: var(--radius); background: linear-gradient(180deg, var(--surface-2), var(--surface)); border: 1px solid var(--stroke); box-shadow: var(--ring); transition: transform 0.4s var(--ease), border-color 0.4s var(--ease); }
.step:hover { transform: translateY(-5px); border-color: var(--stroke-2); }
.step-num { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: var(--red-bright); width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: rgba(226,32,46,0.12); border: 1px solid rgba(226,32,46,0.3); margin-bottom: 1.1rem; }
.step h3 { font-size: 1.14rem; margin-bottom: 0.45rem; }
.step p { color: var(--muted); font-size: 0.94rem; }
.step:not(:last-child)::after { content: ""; position: absolute; top: 3rem; right: -0.85rem; width: 1.1rem; height: 1px; background: linear-gradient(90deg, var(--stroke-2), transparent); }


/* Full-width map wrapper (contact page) */
.map-full { margin-top: clamp(1.6rem, 3vw, 2.4rem); }
.map-full .area-map { aspect-ratio: 16 / 7; width: 100%; }
@media (max-width: 680px) { .map-full .area-map { aspect-ratio: 4 / 3.4; } }

@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }
}

/* ============================================================
   v2 — premium polish pass (visual impact, animation, CTAs, trust)
   ============================================================ */

/* Scroll progress bar */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200; background: linear-gradient(90deg, var(--red-deep), var(--red-bright)); box-shadow: 0 0 14px rgba(255,53,70,0.65); transition: width 0.08s linear; }

/* WhatsApp button variant */
.btn-whatsapp { color: #fff; background: linear-gradient(180deg, #2ee36b, #17a44e); box-shadow: 0 16px 40px -16px rgba(37,211,102,0.55), inset 0 1px 0 rgba(255,255,255,0.28); }
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 24px 52px -14px rgba(37,211,102,0.7), inset 0 1px 0 rgba(255,255,255,0.34); }

/* Floating WhatsApp bubble (tablet+ ; mobile uses the sticky bar) */
.wa-float { position: fixed; right: clamp(1rem, 3vw, 1.7rem); bottom: clamp(1rem, 3vw, 1.7rem); z-index: 95; width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: linear-gradient(180deg, #2ee36b, #17a44e); box-shadow: 0 14px 34px -10px rgba(37,211,102,0.7), inset 0 1px 0 rgba(255,255,255,0.3); transition: transform 0.3s var(--ease); }
.wa-float svg { width: 30px; height: 30px; position: relative; z-index: 1; }
.wa-float::after { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(37,211,102,0.5); animation: waPulse 2.6s ease-out infinite; }
.wa-float:hover { transform: scale(1.08); }
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); } 70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
@media (max-width: 680px) { .wa-float { display: none; } }

/* Trust / assurance chip bar */
.cred-bar { border-top: 1px solid var(--stroke); border-bottom: 1px solid var(--stroke); background: linear-gradient(180deg, rgba(255,255,255,0.025), transparent); }
.cred-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.85rem 2rem; padding: 1.25rem clamp(1rem,4vw,2rem); }
.cred { display: inline-flex; align-items: center; gap: 0.55rem; font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; color: #e2e7ee; }
.cred svg { color: var(--red-bright); width: 19px; height: 19px; flex: none; }

/* "Trusted with all makes" brand marquee */
.brands { padding: clamp(2.6rem, 5vw, 4rem) 0; overflow: hidden; }
.brands-label { text-align: center; font-family: var(--font-display); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 1.7rem; }
.marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; align-items: center; width: max-content; gap: clamp(2.2rem, 5vw, 4.5rem); animation: marquee 36s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.05rem, 2.3vw, 1.65rem); letter-spacing: 0.01em; color: #7f8898; white-space: nowrap; transition: color 0.3s var(--ease); }
.brand-name:hover { color: #eef1f5; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Gallery lightbox */
.work-item { cursor: zoom-in; }
.work-item .zoom-hint { position: absolute; top: 0.7rem; right: 0.75rem; z-index: 3; width: 34px; height: 34px; border-radius: 50%; background: rgba(8,9,12,0.62); backdrop-filter: blur(6px); border: 1px solid var(--stroke-2); display: grid; place-items: center; color: #fff; opacity: 0; transform: scale(0.8); transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); }
.work-item:hover .zoom-hint { opacity: 1; transform: scale(1); }
.lightbox { position: fixed; inset: 0; z-index: 300; display: none; place-items: center; padding: clamp(1rem, 4vw, 3rem); background: rgba(6,7,10,0.92); backdrop-filter: blur(12px); }
.lightbox.open { display: grid; animation: lbFade 0.3s var(--ease); }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox figure { margin: 0; max-width: 1040px; width: 100%; }
.lightbox img { width: 100%; max-height: 78vh; object-fit: contain; border-radius: var(--radius); border: 1px solid var(--stroke-2); box-shadow: var(--shadow); }
.lightbox figcaption { text-align: center; color: var(--muted); font-family: var(--font-display); font-weight: 500; margin-top: 1rem; }
.lb-btn { position: absolute; background: var(--surface-2); border: 1px solid var(--stroke-2); color: #fff; width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; transition: background 0.25s var(--ease), transform 0.25s var(--ease); }
.lb-btn:hover { background: var(--red); }
.lb-close { top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); }
.lb-prev { left: clamp(0.4rem, 2vw, 2rem); top: 50%; transform: translateY(-50%); }
.lb-next { right: clamp(0.4rem, 2vw, 2rem); top: 50%; transform: translateY(-50%); }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.06); }
.lb-close:hover { transform: scale(1.06); }

/* Big contact call/whatsapp tiles emphasis */
.contact-tile { padding: 1.15rem 1.25rem; }
.contact-tile strong { font-size: 1.05rem; }

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; }
  .wa-float::after { animation: none; }
}

/* Mobile action bar — Call (red) + WhatsApp (green), both prominent */
.mobile-bar .mb-call { color: #fff; background: linear-gradient(180deg, var(--red-bright), var(--red-deep)); border-color: transparent; box-shadow: 0 10px 26px -12px rgba(226,32,46,0.6); }
.mobile-bar .mb-wa { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem; font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; padding: 0.8rem; border-radius: 12px; color: #fff; background: linear-gradient(180deg, #2ee36b, #17a44e); box-shadow: 0 10px 26px -12px rgba(37,211,102,0.6); }

/* Tertiary hero text link */
.hero-textlink { display: inline-flex; align-items: center; align-self: center; font-family: var(--font-display); font-weight: 600; font-size: 0.94rem; color: var(--muted); padding: 0.5rem 0.3rem; transition: color 0.25s var(--ease), transform 0.25s var(--ease); }
.hero-textlink:hover { color: var(--red-bright); transform: translateX(2px); }

/* Keep the mobile header clean — the sticky Call/WhatsApp bar covers CTAs on phones */
@media (max-width: 680px) { .header-cta .btn-whatsapp { display: none; } }

/* ============================================================
   v4 — full-screen hero (Peter large on the right) + contact page
   ============================================================ */

/* Cinematic near-full-screen hero. Peter fills the right side and emerges from
   the dark; the copy stays on the left over the dark background. */
.hero.hero-full { position: relative; min-height: min(90vh, 860px); align-items: center;
  padding-top: 72px; padding-bottom: 0; overflow: hidden; }
/* soft red brand glow on the left, behind the text */
.hero.hero-full::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(58% 80% at 18% 42%, rgba(226,32,46,0.15), transparent 70%); }

/* Large right-anchored portrait, full height of the hero */
.hero-photo { position: absolute; top: 0; right: 0; bottom: 0; width: 62%; z-index: 1; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 14%;
  filter: brightness(1.17) contrast(1.03) saturate(1.05); }
/* blend the photo into the dark background (left) and soften top/bottom edges */
.hero-photo::after { content: ""; position: absolute; inset: 0; pointer-events: none; background:
  linear-gradient(90deg, var(--bg) 0%, var(--bg) 7%, rgba(8,9,12,0.85) 26%, rgba(8,9,12,0.32) 56%, rgba(8,9,12,0.06) 86%, transparent 100%),
  linear-gradient(180deg, rgba(8,9,12,0.5) 0%, transparent 22%, transparent 72%, rgba(8,9,12,0.82) 100%); }

.hero-full .hero-inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin-inline: auto; }
.hero-full .hero-copy { max-width: 560px; }
.hero-full .hero-title { font-size: clamp(2.1rem, 4.6vw, 3.6rem); margin: 1rem 0 1.1rem; }
.hero-full .hero-sub { font-size: clamp(1rem, 1.6vw, 1.16rem); max-width: 42ch; }
.hero-full .hero-actions { margin: 1.8rem 0 1.5rem; }

@media (max-width: 900px) {
  .hero.hero-full { min-height: min(92vh, 780px); align-items: flex-end; padding-bottom: clamp(1.5rem, 6vw, 2.5rem); }
  .hero-photo { width: 100%; }                                  /* full-bleed behind the copy */
  .hero-photo img { object-position: 50% 6%; }                  /* keep the full head near the top */
  .hero-photo::after { background:
    linear-gradient(180deg, rgba(8,9,12,0.66) 0%, rgba(8,9,12,0.46) 24%, rgba(8,9,12,0.5) 42%, rgba(8,9,12,0.72) 60%, rgba(8,9,12,0.94) 82%, var(--bg) 100%); }
  .hero-full .hero-copy { max-width: none; }
}

/* Contact page — centred contact tiles */
.contact-solo { max-width: 900px; margin-inline: auto; }
.contact-solo .contact-actions { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.contact-tile.email .ct-ico { color: var(--red-bright); background: rgba(226,32,46,0.12); border-color: rgba(226,32,46,0.28); }
.contact-solo-cta { margin-top: 1.5rem; }

/* ============================================================
   v4 — Recent Work image strip (replaces brand-text marquee)
   Rotates at half the old speed (72s vs 36s), pauses on hover.
   ============================================================ */
.work-strip { padding: clamp(2.6rem, 5vw, 4rem) 0; overflow: hidden; }
.work-strip .strip-head { text-align: center; margin-bottom: clamp(1.5rem, 3vw, 2.2rem); }
.work-strip .strip-head .eyebrow { justify-content: center; }
.work-strip .strip-head h2 { font-size: clamp(1.55rem, 3.4vw, 2.2rem); margin-top: 0.7rem; }

.strip { position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.strip-track { display: flex; width: max-content; gap: clamp(0.75rem, 1.5vw, 1.15rem);
  animation: marquee 72s linear infinite; will-change: transform; }
.strip:hover .strip-track { animation-play-state: paused; }

.strip-item { position: relative; flex: none; margin: 0;
  width: clamp(238px, 26vw, 340px); aspect-ratio: 4 / 3;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--stroke); box-shadow: var(--ring); }
.strip-item img { width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.95) contrast(1.02) brightness(0.9);
  transition: filter 0.5s var(--ease), transform 0.7s var(--ease); }
.strip-item::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 52%, rgba(6,7,10,0.55)); }
.strip-item:hover img { filter: saturate(1) contrast(1.04) brightness(1); transform: scale(1.05); }

@media (prefers-reduced-motion: reduce) {
  .strip-track { animation: none; flex-wrap: wrap; justify-content: center; }
  .strip { -webkit-mask-image: none; mask-image: none; }
}
