/* ============================================
   GRIP YOUR WHIP — Stylesheet
   ============================================ */

:root {
  /* Primary palette — 60/25/12/3 rule */
  --grip-black:   #0D0D0D;
  --race-white:   #FFFFFF;
  --whip-red:     #C8102E;
  --whip-yellow:  #F4C430;

  /* Supporting palette — functional only */
  --carbon:       #1C1C1C;  /* dark cards */
  --graphite:     #2A2A2A;  /* elevated dark surfaces */
  --asphalt:      #8A8A8A;  /* secondary text / captions */
  --deep-red:     #6F0A1E;  /* hover states / red depth */
  --off-white:    #F2F0EB;  /* editorial backgrounds */

  /* Functional aliases (mapped to brand tokens) */
  --bg:           var(--grip-black);
  --bg-dark:      #080808;
  --bg-card:      var(--carbon);
  --bg-card-2:    var(--graphite);
  --border:       #232323;
  --border-light: #333333;
  --text:         #f2f2f2;
  --text-muted:   #B5B5B5;
  --text-dim:     #9A9A9A;
  --accent:       var(--whip-red);
  --accent-dim:   var(--deep-red);
  --yellow:       var(--whip-yellow);
  --white:        var(--race-white);

  /* Typography — Liberation Serif / Sans (via Tinos / Arimo on Google Fonts) */
  --font-display: 'Tinos', 'Liberation Serif', 'Times New Roman', Times, serif;
  --font-body:    'Arimo', 'Liberation Sans', Arial, Helvetica, sans-serif;

  --max-w: 1200px;
  --nav-h: 120px;
  --nav-h-scrolled: 72px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Nav ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, height 0.3s;
}
#nav.scrolled {
  height: var(--nav-h-scrolled);
  background: rgba(9,9,9,0.96);
  border-color: var(--border);
  backdrop-filter: blur(12px);
}
#nav.scrolled .nav-logo-img {
  height: 44px;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.04em;
  display: flex;
  gap: 2px;
}
.logo-grip  { color: var(--white); }
.logo-your  { color: var(--text-muted); }
.logo-whip  { color: var(--accent); }

.nav-logo-img {
  height: 95px;
  width: auto;
  max-width: none;
  display: block;
  object-fit: contain;
  transition: height 0.3s;
}
.footer-logo-img {
  height: 80px;
  width: auto;
  max-width: none;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  color: var(--accent) !important;
  border: 1px solid var(--accent-dim);
  padding: 8px 20px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover {
  background: var(--accent) !important;
  color: var(--bg) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 60px) 32px 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  isolation: isolate;
}
/* Full-bleed background image — shifted right + warm tone (kills blue, keeps amber) */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  /* Wider than viewport + offset right shifts the spotlight + car off-centre to the right */
  transform: translateX(calc(-50% + 12vw));
  width: 130vw;
  background: url('hero.jpg') center center / cover no-repeat;
  /* Original colours — only minor tone adjustment for text legibility */
  filter: brightness(0.85) contrast(1.08);
  z-index: -2;
  pointer-events: none;
}
/* Gradient overlay layer — text legibility + subtle deep-red brand wash */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background:
    /* Left-side text protection — softer than before, image is already dark on sides */
    linear-gradient(90deg, rgba(13,13,13,0.7) 0%, rgba(13,13,13,0.4) 30%, rgba(13,13,13,0.2) 60%, rgba(13,13,13,0.3) 100%),
    /* Vertical fades — separate hero from nav top and section below */
    linear-gradient(180deg, rgba(13,13,13,0.55) 0%, rgba(13,13,13,0) 20%, rgba(13,13,13,0) 75%, rgba(13,13,13,0.75) 100%),
    /* Subtle radial vignette — pushes focus toward centre spotlight */
    radial-gradient(ellipse at center, rgba(13,13,13,0) 40%, rgba(13,13,13,0.45) 100%);
  z-index: -1;
  pointer-events: none;
}
.hero-content { max-width: 720px; position: relative; }

.hero-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--white);
  margin-bottom: 36px;
}
.hero-headline .accent { color: var(--accent); }
.hero-headline .accent::after {
  content: '';
  display: block;
  width: 96px;
  height: 4px;
  background: var(--whip-yellow);
  margin-top: 18px;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-line {
  position: absolute;
  bottom: 0;
  left: 32px;
  right: 32px;
  height: 1px;
  background: var(--border);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--deep-red);
  border-color: var(--deep-red);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-light);
}
.btn-ghost:hover {
  border-color: var(--text-muted);
}
.btn-full { width: 100%; }

/* ── Marquee ── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6a6a6a;
}
.marquee-track .dot { color: var(--accent); }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Sections ── */
.section {
  padding: 120px 0;
}
.section--dark {
  background: var(--bg-dark);
}
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.section-header {
  margin-bottom: 72px;
}
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 8px;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--whip-yellow);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--white);
  margin-bottom: 20px;
}
.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--bg-card);
  padding: 40px 36px;
  transition: background 0.2s;
}
.service-card:hover { background: var(--bg-card-2); }

.service-number {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 16px;
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--whip-yellow);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.15;
  letter-spacing: -0.005em;
}
.service-card > p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card li {
  font-size: 13px;
  color: var(--text-dim);
  padding-left: 14px;
  position: relative;
}
.service-card li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 10px;
  top: 3px;
}

.service-card--cta {
  background: var(--bg-card-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.service-card--cta .cta-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.service-card--cta h3 {
  margin-bottom: 24px;
}

/* ── Manifesto strip ── */
.manifesto {
  background: var(--accent);
  padding: 11px 0;
  border-top: 1px solid var(--deep-red);
  border-bottom: 1px solid var(--deep-red);
}
.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
  color: var(--white);
  text-align: center;
  margin: 0;
}
.manifesto-accent {
  color: var(--whip-yellow);
}
@media (max-width: 768px) {
  .manifesto { padding: 10px 0; }
  .manifesto-text { font-size: clamp(13px, 3.4vw, 16px); }
  .manifesto-accent { display: inline; margin-top: 0; }
}

/* ── Production ── */
.section--production {
  background: var(--bg);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section--production::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 2px; height: 56px;
  background: var(--whip-yellow);
}
.section-header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-header--center .section-desc {
  margin-left: auto;
  margin-right: auto;
}
.section-title .accent { color: var(--accent); }

.production-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.production-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 36px 32px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
  position: relative;
}
.production-item:hover {
  border-color: var(--accent-dim);
  background: var(--bg-card-2);
  transform: translateY(-2px);
}
.production-item--wide {
  grid-column: span 2;
  padding: 44px 40px;
}
.production-item--wide:hover {
  border-color: var(--accent-dim);
}
.production-item--cta {
  background: var(--accent);
  border-color: var(--accent);
}
.production-item--cta:hover {
  background: var(--deep-red);
  border-color: var(--deep-red);
  transform: translateY(-2px);
}
.production-item--cta h3,
.production-item--cta p {
  color: var(--white);
}
.production-item--cta .production-tag {
  color: var(--whip-yellow);
  border-color: var(--whip-yellow);
}
.production-item--cta .btn {
  background: var(--whip-yellow);
  color: var(--grip-black);
  border-color: var(--whip-yellow);
  align-self: flex-start;
  margin-top: 8px;
}
.production-item--cta .btn:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--grip-black);
}

.production-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 4px 10px;
  border-radius: 2px;
  align-self: flex-start;
}
.production-item h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.005em;
}
.production-item--wide h3 {
  font-size: 40px;
  line-height: 1.05;
}
.production-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.production-item--wide p {
  font-size: 16px;
  max-width: 560px;
}
.production-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}
.production-specs span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(200,16,46,0.15);
  border: 1px solid var(--accent-dim);
  padding: 5px 11px;
  border-radius: 2px;
}

/* ── Projects ── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
}
.project-card {
  background: var(--bg-card);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s;
}
.project-card:hover { background: var(--bg-card-2); }

.project-card--featured {
  grid-column: 1 / -1;
  background: var(--bg-card-2);
  border-left: 3px solid var(--accent);
}

.project-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.project-client {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.project-type {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.project-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.project-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.project-tags span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 2px;
}

/* ── Numbers ── */
.section--numbers {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.number-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 40px;
  border-right: 1px solid var(--border);
}
.number-item:last-child { border-right: none; }

.number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.number-label {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-text .section-title { margin-bottom: 28px; }
.about-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-principles {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.principle {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.principle-icon {
  color: var(--accent);
  font-size: 14px;
  flex-shrink: 0;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
}
.about-card {
  background: var(--bg-card);
  padding: 24px 28px;
  transition: background 0.2s;
}
.about-card:hover { background: var(--bg-card-2); }
.about-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.about-card-value {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}

/* ── Contact ── */
.section--contact { padding-top: 120px; padding-bottom: 120px; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-text .section-title { margin-bottom: 24px; }
.contact-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-link {
  font-size: 17px;
  font-weight: 500;
  color: var(--accent);
  border-bottom: 1px solid var(--accent-dim);
  display: inline-block;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  width: fit-content;
}
.contact-link:hover { color: var(--deep-red); border-color: var(--deep-red); }
.contact-link--phone {
  margin-top: 4px;
}
.contact-sub {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 400;
  letter-spacing: 0.02em;
  border-bottom: none;
}
.contact-location {
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 4px;
}

/* ── Form ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 2px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  outline: none;
  resize: vertical;
  transition: border-color 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}
.form-note {
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
  margin-top: -4px;
}

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  background: var(--bg-dark);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.footer-brand p {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}
.footer-nav {
  display: flex;
  gap: 32px;
}
.footer-nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }
.footer-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-right p {
  font-size: 12px;
  color: var(--text-dim);
}
.footer-social {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-bottom: 8px;
}
.footer-social a {
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, transform 0.2s;
}
.footer-social a:hover { color: var(--white); transform: translateY(-1px); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .project-card--featured { grid-column: span 2; }
  .production-grid { grid-template-columns: repeat(2, 1fr); }
  .production-item--wide { grid-column: span 2; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .number-item:nth-child(2) { border-right: none; }
  .number-item { border-bottom: 1px solid var(--border); }
  .number-item:nth-child(3),
  .number-item:nth-child(4) { border-bottom: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 84px; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(9,9,9,0.98);
    flex-direction: column;
    padding: 32px;
    gap: 24px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .nav-logo-img { height: 60px; }
  #nav.scrolled .nav-logo-img { height: 40px; }

  .hero { padding-top: calc(var(--nav-h) + 48px); }
  .hero-headline { font-size: clamp(56px, 16vw, 100px); }
  /* Mobile — clip overflow only here (desktop needs to break out to full viewport width).
     Extend ::before below hero so cover scales taller, then anchor image to top —
     car gets cropped off-screen, leaving only the spotlight beam as atmospheric backdrop. */
  .hero { overflow: hidden; }
  .hero::before {
    transform: translateX(-50%);
    width: 100vw;
    bottom: -100%;
    background: url('hero.jpg') center top / cover no-repeat;
  }
  .hero::after {
    background:
      linear-gradient(180deg, rgba(13,13,13,0.7) 0%, rgba(13,13,13,0.55) 30%, rgba(13,13,13,0.55) 65%, rgba(13,13,13,0.92) 100%);
  }

  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card--featured { grid-column: span 1; }
  .production-grid { grid-template-columns: 1fr; }
  .production-item--wide { grid-column: span 1; }
  .production-item--wide h3 { font-size: 28px; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { margin-top: 0; }

  .contact-inner { grid-template-columns: 1fr; gap: 56px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-right { text-align: left; }
  .footer-nav { flex-wrap: wrap; gap: 20px; }
  .footer-social { justify-content: flex-start; }

  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .number-item:nth-child(2) { border-right: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }
  .section-header { margin-bottom: 48px; }
  .hero { padding-left: 20px; padding-right: 20px; }
  .hero-line { left: 20px; right: 20px; }
  .numbers-grid { grid-template-columns: 1fr; }
  .number-item { border-right: none; border-bottom: 1px solid var(--border); }
  .number-item:last-child { border-bottom: none; }
}
