/* ============================================================
   CCP HORIZON — Caméras timelapse chantier BTP
   Design system : "industriel raffiné"
   Graphite profond · Ambre lever-de-soleil · Timecodes mono
   ============================================================ */

:root {
  --ink: #101418;
  --ink-2: #0b0e12;
  --ink-3: #171c22;
  --paper: #f4f1ea;
  --white: #ffffff;
  --amber: #f08b1f;
  --amber-deep: #d9770e;
  --amber-soft: rgba(240, 139, 31, 0.12);
  --muted: #5c6470;
  --muted-dark: #9aa3ae;
  --line: rgba(16, 20, 24, 0.12);
  --line-dark: rgba(255, 255, 255, 0.1);
  --font-display: "Bricolage Grotesque", sans-serif;
  --font-body: "Archivo", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --radius: 6px;
  --shadow-card: 0 2px 24px rgba(16, 20, 24, 0.08);
  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  margin: 0 0 0.6em;
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); font-weight: 800; }
h3 { font-size: 1.3rem; font-weight: 700; }

p { margin: 0 0 1em; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Utils ---------- */

.kicker {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--amber-deep);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--amber);
  flex: none;
}

.on-dark .kicker { color: var(--amber); }

.lead { font-size: 1.16rem; color: var(--muted); max-width: 42em; }
.on-dark .lead { color: var(--muted-dark); }

.section { padding: 96px 0; }
.section-tight { padding: 72px 0; }

.on-dark {
  background: var(--ink);
  color: var(--white);
}

.center { text-align: center; }
.center .kicker { justify-content: center; }
.center .lead { margin-inline: auto; }

/* Horizon divider — signature */
.horizon {
  position: relative;
  height: 1px;
  background: var(--line);
  margin: 0 auto;
  max-width: var(--container);
  overflow: visible;
}

.horizon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50% 50% 0 0;
  background: var(--amber);
  transform: translateX(-50%);
  clip-path: inset(0 0 45% 0);
}

/* Timecode chip — signature */
.timecode {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border: 1px solid var(--line-dark);
  border-radius: 3px;
  color: var(--muted-dark);
  background: rgba(11, 14, 18, 0.72);
  backdrop-filter: blur(4px);
}

.timecode .rec {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  animation: blink 1.6s steps(2, start) infinite;
}

@keyframes blink { to { visibility: hidden; } }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:active { transform: translateY(1px); }

.btn-amber {
  background: var(--amber);
  color: var(--ink-2);
}

.btn-amber:hover { background: var(--amber-deep); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.06); }

.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: rgba(16, 20, 24, 0.3);
}

.btn-ghost-dark:hover { border-color: var(--ink); background: rgba(16, 20, 24, 0.04); }

.btn-lg { padding: 18px 36px; font-size: 1.08rem; }

.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(11, 14, 18, 0.92);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.14rem;
  letter-spacing: 0.02em;
}

.logo svg { flex: none; }

.logo .horizon-word { color: var(--amber); }

.main-nav { display: flex; align-items: center; gap: 4px; }

.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 4px;
  transition: color 0.15s ease, background 0.15s ease;
}

.main-nav a:hover { color: var(--white); background: rgba(255, 255, 255, 0.07); }

.main-nav a[aria-current="page"] { color: var(--amber); }

.main-nav .btn {
  margin-left: 12px;
  padding: 11px 20px;
  font-size: 0.93rem;
}

.nav-phone {
  font-family: var(--font-mono);
  font-size: 0.85rem !important;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ---------- Hero (accueil) ---------- */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: var(--ink-2);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.85);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 14, 18, 0.62) 0%, rgba(11, 14, 18, 0.35) 40%, rgba(11, 14, 18, 0.88) 100%),
    linear-gradient(100deg, rgba(11, 14, 18, 0.55) 0%, transparent 60%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 160px 0 0;
}

.hero h1 { max-width: 12em; margin-bottom: 0.45em; }

.hero h1 .accent { color: var(--amber); }

.hero .lead { color: rgba(255, 255, 255, 0.85); font-size: 1.22rem; max-width: 36em; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 0; }

.hero-meta {
  margin-top: 64px;
  border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-meta > div {
  padding: 22px 20px 30px 0;
  border-right: 1px solid var(--line-dark);
}

.hero-meta > div:last-child { border-right: none; }

.hero-meta .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--amber);
}

.hero-meta .lbl {
  font-size: 0.86rem;
  color: var(--muted-dark);
  margin-top: 2px;
}

.hero .timecode {
  position: absolute;
  top: 100px;
  right: 24px;
  z-index: 3;
}

/* Ticker */
.ticker {
  background: var(--ink-2);
  border-top: 1px solid var(--line-dark);
  overflow: hidden;
  padding: 13px 0;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 48px;
  animation: ticker 38s linear infinite;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-dark);
}

.ticker-track span::before {
  content: "◆";
  color: var(--amber);
  margin-right: 48px;
  font-size: 0.6rem;
  vertical-align: 1px;
}

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

/* ---------- Page hero (pages internes) ---------- */

.page-hero {
  background: var(--ink);
  color: var(--white);
  padding: 170px 0 76px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 85% 115%, rgba(240, 139, 31, 0.16), transparent 65%);
}

.page-hero .container { position: relative; }

.page-hero h1 { max-width: 15em; }

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

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }

.card-img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }

.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }

.card:hover .card-img img { transform: scale(1.04); }

.card-img .timecode { position: absolute; bottom: 12px; left: 12px; }

.card-body { padding: 26px 26px 30px; flex: 1; display: flex; flex-direction: column; }

.card-body p { color: var(--muted); font-size: 0.99rem; flex: 1; }

.card-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--amber-deep);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.card-link:hover { text-decoration: underline; }

/* Benefit cards (dark) */
.benefit {
  background: var(--ink-3);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 30px 28px;
}

.benefit .icon {
  width: 46px;
  height: 46px;
  border-radius: 6px;
  background: var(--amber-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--amber);
}

.benefit h3 { font-size: 1.16rem; }

.benefit p { color: var(--muted-dark); font-size: 0.97rem; margin: 0; }

/* Steps */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); }

.step {
  counter-increment: step;
  padding: 34px 28px 38px;
  border-right: 1px solid var(--line);
  position: relative;
}

.step:last-child { border-right: none; }

.step::before {
  content: "0" counter(step);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--amber-deep);
  display: block;
  margin-bottom: 16px;
}

.step h3 { font-size: 1.08rem; }

.step p { color: var(--muted); font-size: 0.94rem; margin: 0; }

/* ---------- Media / vidéo placeholder ---------- */

.video-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
}

.video-frame img { width: 100%; height: 100%; object-fit: cover; opacity: 0.82; }

.video-frame .play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--amber);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.video-frame .play:hover { transform: scale(1.08); background: var(--amber-deep); }

.video-frame .play svg { margin-left: 4px; }

.video-frame .timecode { position: absolute; top: 14px; left: 14px; }

.video-frame .progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
}

.video-frame .progress::after {
  content: "";
  display: block;
  height: 100%;
  width: 34%;
  background: var(--amber);
}

/* ---------- Galerie ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
  border: none;
  padding: 0;
  background: var(--ink-3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item .timecode { position: absolute; bottom: 10px; left: 10px; pointer-events: none; }

dialog.lightbox {
  border: none;
  background: transparent;
  padding: 0;
  max-width: min(1100px, 92vw);
}

dialog.lightbox::backdrop { background: rgba(11, 14, 18, 0.92); }

dialog.lightbox img { border-radius: var(--radius); width: 100%; }

dialog.lightbox .close {
  position: absolute;
  top: -46px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}

/* ---------- Témoignages ---------- */

.quote-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius);
  padding: 32px 30px;
}

.quote-card blockquote {
  margin: 0 0 20px;
  font-size: 1.04rem;
  line-height: 1.6;
}

.quote-card .who {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ---------- FAQ ---------- */

.faq-list { max-width: 820px; margin: 0 auto; }

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 6px 0;
}

.faq-list summary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  padding: 20px 44px 20px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 1.4rem;
  color: var(--amber-deep);
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq-list .answer { padding: 0 0 24px; color: var(--muted); max-width: 46em; }

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

.cta-band {
  background: var(--ink-2);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 90% at 50% 130%, rgba(240, 139, 31, 0.28), transparent 70%);
}

.cta-band .container { position: relative; text-align: center; padding-top: 90px; padding-bottom: 96px; }

.cta-band h2 { max-width: 17em; margin-inline: auto; }

.cta-band .lead { margin: 0 auto 36px; }

.cta-band .btn-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

.cta-band .phone-line {
  margin-top: 26px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--muted-dark);
}

.cta-band .phone-line a { color: var(--amber); text-decoration: none; }

/* ---------- Formulaires ---------- */

.form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow-card);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 24px; }

.field { display: flex; flex-direction: column; gap: 7px; }

.field-full { grid-column: 1 / -1; }

.field label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.93rem;
}

.field label .req { color: var(--amber-deep); }

.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px 15px;
  border: 1px solid rgba(16, 20, 24, 0.22);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px var(--amber-soft);
}

.field textarea { resize: vertical; min-height: 130px; }

.field .hint { font-size: 0.82rem; color: var(--muted); }

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--muted);
}

.consent input { margin-top: 4px; accent-color: var(--amber-deep); }

.form-status {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 0.95rem;
  display: none;
}

.form-status.ok { display: block; background: #e8f3e4; color: #2c5e22; border: 1px solid #bcd9b2; }
.form-status.err { display: block; background: #fbe9e4; color: #8c2f1b; border: 1px solid #eec3b8; }

/* honeypot */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Contact side ---------- */

.contact-aside { display: flex; flex-direction: column; gap: 22px; }

.contact-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 26px 28px;
  background: var(--white);
}

.contact-block h3 { font-size: 1.05rem; margin-bottom: 8px; }

.contact-block p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.contact-block a.big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--ink);
  text-decoration: none;
}

.contact-block a.big:hover { color: var(--amber-deep); }

/* ---------- Réalisations / case studies ---------- */

.case {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.case:nth-child(even) .case-media { order: 2; }

.case-media { border-radius: var(--radius); overflow: hidden; position: relative; }

.case-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.case-media .timecode { position: absolute; bottom: 14px; left: 14px; }

.case .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }

.tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: 30px;
  color: var(--muted);
}

/* ---------- Tables specs ---------- */

.spec-table { width: 100%; border-collapse: collapse; font-size: 0.98rem; }

.spec-table th, .spec-table td {
  text-align: left;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
}

.spec-table th {
  font-family: var(--font-display);
  font-weight: 700;
  width: 38%;
  color: var(--ink);
}

.spec-table td { color: var(--muted); }

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

.site-footer {
  background: var(--ink-2);
  color: var(--muted-dark);
  padding: 72px 0 36px;
  font-size: 0.94rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-dark);
}

.site-footer .logo { margin-bottom: 16px; }

.site-footer h4 {
  color: var(--white);
  font-size: 0.98rem;
  margin-bottom: 16px;
}

.site-footer ul { list-style: none; margin: 0; padding: 0; }

.site-footer li { margin-bottom: 10px; }

.site-footer a { color: var(--muted-dark); text-decoration: none; }

.site-footer a:hover { color: var(--amber); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 28px;
  font-size: 0.84rem;
}

.footer-bottom .mono { font-family: var(--font-mono); font-size: 0.78rem; }

/* ---------- Reveal animations ---------- */

/* Masquage appliqué uniquement si JS est actif (classe .js posée par main.js),
   pour que le contenu reste visible sans JavaScript */
html.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

html.js .reveal.in { opacity: 1; transform: none; }

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none; }
  .timecode .rec { animation: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2) { border-right: none; }
  .step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .hero-meta { grid-template-columns: repeat(2, 1fr); }
  .hero-meta > div:nth-child(2) { border-right: none; }
  .case { grid-template-columns: 1fr; gap: 28px; }
  .case:nth-child(even) .case-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-layout { grid-template-columns: 1fr !important; }
}

@media (max-width: 760px) {
  .section { padding: 68px 0; }

  .nav-toggle { display: block; }

  .main-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--ink-2);
    border-bottom: 1px solid var(--line-dark);
    padding: 18px 24px 26px;
    gap: 2px;
    transform: translateY(-130%);
    transition: transform 0.3s ease;
  }

  .main-nav.open { transform: none; }

  .main-nav a { padding: 13px 10px; font-size: 1.05rem; }

  .main-nav .btn { margin: 12px 0 0; }

  .site-header { background: rgba(11, 14, 18, 0.92); backdrop-filter: blur(10px); }

  .hero-inner { padding-top: 130px; }
  .hero .timecode { display: none; }

  .grid-2, .grid-3, .grid-4, .gallery-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: none; }

  .form-wrap { padding: 28px 22px; }
  .form-grid { grid-template-columns: 1fr; }

  .hero-meta { grid-template-columns: 1fr 1fr; }
}
