/*
Theme Name: Trident 660
Theme URI: https://example.com/trident660
Author: Private Seller
Author URI: https://example.com
Description: A dark, edgy motorcycle theme for the 2023 Triumph Trident 660 sale. Black and Baja Orange, Union Jack deconstructed as design geometry.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: trident660
Tags: one-page, dark, motorcycle, custom
*/

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:       #D4581A;
  --orange-hot:   #F06820;
  --orange-dark:  #A03A0A;
  --ink:          #0A0806;
  --ink-1:        #111009;
  --ink-2:        #1A1712;
  --ink-3:        #242018;
  --ink-4:        #2E2A20;
  --chalk:        #F0EAE0;
  --chalk-dim:    rgba(240,234,224,0.55);
  --chalk-ghost:  rgba(240,234,224,0.18);
  --chalk-trace:  rgba(240,234,224,0.06);
  --uj-line:      rgba(240,234,224,0.07);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  background: var(--ink);
  color: var(--chalk);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── TYPOGRAPHY ── */
.f-display {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  letter-spacing: 0.03em;
  line-height: 0.92;
}
.f-serif-italic {
  font-family: 'DM Serif Display', Georgia, serif;
  font-style: italic;
}

/* ── UNION JACK GEOMETRY SYSTEM ──
   Not a flag — a design language.
   Diagonal shards, mesh cutouts, fragmented lines.
   Inspired by the radiator guard and tank graphic.
*/

/* Diagonal shard — top-left to bottom-right */
.uj-shard {
  position: absolute;
  pointer-events: none;
}
.uj-shard::before,
.uj-shard::after {
  content: '';
  position: absolute;
  background: var(--uj-line);
}

/* Crosshatch overlay — like the mesh guard */
.uj-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.uj-mesh::before {
  content: '';
  position: absolute;
  inset: -100%;
  background-image:
    repeating-linear-gradient(
      45deg,
      var(--uj-line) 0,
      var(--uj-line) 1px,
      transparent 1px,
      transparent 28px
    ),
    repeating-linear-gradient(
      -45deg,
      var(--uj-line) 0,
      var(--uj-line) 1px,
      transparent 1px,
      transparent 28px
    );
}

/* Cross lines — the ghost of St George / St Andrew */
.uj-cross {
  position: absolute;
  pointer-events: none;
}
.uj-cross::before {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--uj-line), transparent);
  transform: translateY(-50%);
}
.uj-cross::after {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--uj-line), transparent);
  transform: translateX(-50%);
}

/* ── NAV ── */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(10,8,6,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--chalk-trace);
  transition: background 0.3s;
}

#site-nav.scrolled {
  background: rgba(10,8,6,0.98);
  border-bottom-color: rgba(212,88,26,0.2);
}

.nav-wordmark {
  display: flex; align-items: center; gap: 0.7rem;
}

/* Deconstructed UJ mark — just the diagonals and a cross, no colours */
.nav-uj-mark {
  width: 28px; height: 28px; position: relative; flex-shrink: 0;
}
.nav-uj-mark svg { width: 100%; height: 100%; }

.nav-wordmark-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem; letter-spacing: 0.12em;
  color: var(--chalk);
}
.nav-wordmark-text span { color: var(--orange); }

.nav-links {
  list-style: none; display: flex; gap: 2rem;
}
.nav-links a {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--chalk-dim);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }

.nav-cta {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 0.55rem 1.3rem;
  background: var(--orange); color: #fff;
  border-radius: 1px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--orange-hot); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}

/* The background shard grid — abstracted UJ geometry */
.hero-geometry {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}

/* Main diagonal from top-left to bottom-right — St Andrew line */
.hero-geometry::before {
  content: '';
  position: absolute;
  top: -20%; left: -10%; right: -10%; bottom: -20%;
  background: linear-gradient(
    135deg,
    transparent 0%,
    transparent 47%,
    rgba(212,88,26,0.04) 47%,
    rgba(212,88,26,0.04) 53%,
    transparent 53%
  );
}

/* Counter-diagonal — St Patrick */
.hero-geometry::after {
  content: '';
  position: absolute;
  top: -20%; left: -10%; right: -10%; bottom: -20%;
  background: linear-gradient(
    -135deg,
    transparent 0%,
    transparent 47%,
    rgba(240,234,224,0.025) 47%,
    rgba(240,234,224,0.025) 53%,
    transparent 53%
  );
}

.hero-left {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: 8rem 3rem 5rem 5rem;
}

/* Vertical shard accent on left edge */
.hero-left::before {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg,
    transparent 0%,
    var(--orange) 30%,
    var(--orange) 70%,
    transparent 100%
  );
}

.hero-eyebrow {
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-eyebrow-line {
  display: inline-block; width: 28px; height: 1px;
  background: var(--orange);
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 8vw, 7.5rem);
  line-height: 0.9; letter-spacing: 0.02em;
  color: var(--chalk); margin-bottom: 0.3rem;
}
.hero-title .t-orange { color: var(--orange); }

.hero-subtitle {
  font-family: 'DM Serif Display', Georgia, serif;
  font-style: italic; font-size: 1.2rem;
  color: var(--chalk-dim); margin: 0.8rem 0 1.5rem;
  letter-spacing: 0.02em;
}

/* Deconstructed UJ fragment — just geometry, like the tank graphic */
.hero-uj-fragment {
  width: 120px; height: 80px; position: relative;
  margin: 1.5rem 0;
  opacity: 0.55;
}

.hero-spec-bar {
  display: flex; gap: 2rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--chalk-trace);
  border-bottom: 1px solid var(--chalk-trace);
  margin: 1.5rem 0;
}

.spec-cell label {
  display: block; font-size: 0.58rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(240,234,224,0.3);
  margin-bottom: 0.2rem;
}
.spec-cell .val {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem;
  color: var(--chalk); letter-spacing: 0.05em;
}
.spec-cell .val sup {
  font-family: 'DM Sans', sans-serif; font-style: normal;
  font-size: 0.55rem; color: rgba(240,234,224,0.3); margin-left: 1px;
}

.hero-desc {
  font-size: 0.88rem; font-weight: 300; line-height: 1.75;
  color: var(--chalk-dim); max-width: 380px; margin-bottom: 2rem;
}

.hero-btns { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 2.5rem; }

.btn-primary {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 0.9rem 1.8rem;
  background: var(--orange); color: #fff; border-radius: 1px;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--orange-hot); transform: translateY(-1px); }

.btn-ghost {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--chalk-dim);
  display: flex; align-items: center; gap: 0.4rem;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--chalk); }

.hero-price {
  display: flex; align-items: baseline; gap: 0.5rem;
}
.hero-price .lbl {
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(240,234,224,0.28);
}
.hero-price .amt {
  font-family: 'Bebas Neue', sans-serif; font-size: 3rem;
  color: var(--orange); letter-spacing: 0.04em; line-height: 1;
}
.hero-price .obo { font-size: 0.72rem; color: rgba(240,234,224,0.28); }

/* ── HERO RIGHT — photo panel ── */
.hero-right {
  position: relative; z-index: 2;
  overflow: hidden;
}

.hero-photo {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center center;
  filter: brightness(0.75) contrast(1.1) saturate(0.85);
  transition: filter 0.4s;
}

.hero-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, transparent 25%, transparent 75%, var(--ink) 100%);
}

/* UJ mesh over the photo — like the actual radiator guard */
.hero-photo-mesh {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(10,8,6,0.18) 0, rgba(10,8,6,0.18) 1px,
      transparent 1px, transparent 22px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(10,8,6,0.18) 0, rgba(10,8,6,0.18) 1px,
      transparent 1px, transparent 22px
    );
}

/* Badge */
.hero-badge {
  position: absolute; top: 2rem; right: 2rem;
  background: var(--orange);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem; letter-spacing: 0.12em;
  padding: 0.35rem 0.75rem; border-radius: 1px;
  color: #fff;
}

/* ── STATS BAND ── */
#stats-band {
  background: var(--ink-2);
  border-top: 1px solid rgba(212,88,26,0.25);
  border-bottom: 1px solid rgba(212,88,26,0.25);
  display: grid; grid-template-columns: repeat(4, 1fr);
  position: relative; overflow: hidden;
}

/* Ghost diagonal behind stats */
#stats-band::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    transparent 45%,
    rgba(212,88,26,0.035) 45%,
    rgba(212,88,26,0.035) 55%,
    transparent 55%
  );
  pointer-events: none;
}

.stat-cell {
  padding: 2.2rem 2rem;
  border-right: 1px solid var(--chalk-trace);
  position: relative; z-index: 1;
  transition: background 0.25s;
}
.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: rgba(212,88,26,0.04); }

.stat-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem;
  color: var(--orange); letter-spacing: 0.04em; line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-unit {
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  color: rgba(240,234,224,0.3); margin-left: 3px;
}
.stat-label {
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(240,234,224,0.35);
  margin-bottom: 0.3rem;
}
.stat-desc {
  font-size: 0.78rem; font-weight: 300; line-height: 1.5;
  color: rgba(240,234,224,0.3);
}

/* ── GALLERY ── */
#gallery {
  padding: 6rem 5rem;
  background: var(--ink);
  position: relative; overflow: hidden;
}

/* Ghosted UJ cross at section centre */
#gallery::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 600px; height: 400px;
  transform: translate(-50%, -50%);
  background:
    linear-gradient(90deg, transparent 45%, rgba(240,234,224,0.02) 45%, rgba(240,234,224,0.02) 55%, transparent 55%),
    linear-gradient(0deg, transparent 45%, rgba(240,234,224,0.02) 45%, rgba(240,234,224,0.02) 55%, transparent 55%),
    linear-gradient(45deg, transparent 47%, rgba(212,88,26,0.025) 47%, rgba(212,88,26,0.025) 53%, transparent 53%),
    linear-gradient(-45deg, transparent 47%, rgba(212,88,26,0.025) 47%, rgba(212,88,26,0.025) 53%, transparent 53%);
  pointer-events: none;
}

.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 3rem; position: relative; z-index: 1;
}

.section-eyebrow {
  font-size: 0.6rem; font-weight: 500; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--orange);
  display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.5rem;
}
.section-eyebrow::before {
  content: ''; display: inline-block; width: 18px; height: 1px;
  background: var(--orange);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem;
  letter-spacing: 0.04em; color: var(--chalk); line-height: 0.92;
}

.all-link {
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--chalk-dim); transition: color 0.2s;
  display: flex; align-items: center; gap: 0.4rem;
}
.all-link:hover { color: var(--orange); }

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 8px;
  position: relative; z-index: 1;
}

.gallery-item {
  position: relative; overflow: hidden; border-radius: 1px;
  cursor: pointer; background: var(--ink-3);
}
.gallery-item:first-child { grid-row: 1 / 3; }

.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.7) contrast(1.05) saturate(0.8);
  transition: transform 0.5s ease, filter 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.85) contrast(1.1) saturate(0.9);
}

/* Mesh overlay on every gallery item */
.gallery-item::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background-image:
    repeating-linear-gradient(45deg, rgba(10,8,6,0.12) 0, rgba(10,8,6,0.12) 1px, transparent 1px, transparent 18px),
    repeating-linear-gradient(-45deg, rgba(10,8,6,0.12) 0, rgba(10,8,6,0.12) 1px, transparent 1px, transparent 18px);
  pointer-events: none;
}

/* Bottom fade */
.gallery-item::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 45%;
  background: linear-gradient(transparent, rgba(10,8,6,0.7));
  z-index: 2; pointer-events: none;
}

.gallery-label {
  position: absolute; bottom: 0.8rem; left: 0.9rem; z-index: 3;
  font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(240,234,224,0.6);
  padding: 0.25rem 0.6rem;
  border-left: 2px solid var(--orange);
}

.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(240,234,224,0.12);
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
}

/* ── SPECS ── */
#specs {
  padding: 6rem 5rem;
  background: var(--ink-1);
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem;
  align-items: start;
  border-top: 1px solid rgba(212,88,26,0.15);
  position: relative; overflow: hidden;
}

/* Diagonal shard — lower right */
#specs::after {
  content: '';
  position: absolute; bottom: -100px; right: -100px;
  width: 400px; height: 400px;
  background: linear-gradient(
    135deg,
    transparent 50%,
    rgba(212,88,26,0.03) 50%
  );
  pointer-events: none;
}

.specs-intro { position: sticky; top: 6rem; }

.specs-intro p {
  font-size: 0.85rem; font-weight: 300; line-height: 1.8;
  color: var(--chalk-dim); margin-top: 1.2rem; max-width: 290px;
}

/* Deconstructed UJ mark in specs sidebar */
.specs-uj {
  margin-top: 2.5rem; width: 90px; height: 60px; position: relative;
  opacity: 0.35;
}

.specs-table { width: 100%; }

.spec-row {
  display: grid; grid-template-columns: 1fr 1fr;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--chalk-trace);
  gap: 1rem; align-items: center;
}
.spec-row:first-child { border-top: 1px solid var(--chalk-trace); }

.sk {
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(240,234,224,0.28); font-weight: 400;
}
.sv { font-size: 0.88rem; color: var(--chalk); text-align: right; }
.sv.hi { color: var(--orange); font-weight: 500; }

/* ── CONTACT ── */
#contact {
  padding: 7rem 5rem;
  background: var(--ink);
  text-align: center; position: relative; overflow: hidden;
}

/* Full UJ ghost behind contact form */
#contact::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, transparent 40%, rgba(240,234,224,0.018) 40%, rgba(240,234,224,0.018) 60%, transparent 60%),
    linear-gradient(0deg, transparent 25%, rgba(240,234,224,0.018) 25%, rgba(240,234,224,0.018) 75%, transparent 75%),
    linear-gradient(45deg, transparent 46%, rgba(212,88,26,0.025) 46%, rgba(212,88,26,0.025) 54%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, rgba(212,88,26,0.025) 46%, rgba(212,88,26,0.025) 54%, transparent 54%);
  pointer-events: none;
}

.contact-eyebrow {
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1.2rem;
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
}
.contact-eyebrow::before, .contact-eyebrow::after {
  content: ''; display: inline-block; width: 24px; height: 1px;
  background: var(--orange);
}

.contact-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  letter-spacing: 0.04em; color: var(--chalk); line-height: 1;
  margin-bottom: 1rem; position: relative; z-index: 1;
}

.contact-sub {
  font-size: 0.9rem; font-weight: 300; color: var(--chalk-dim);
  max-width: 440px; margin: 0 auto 2.5rem; line-height: 1.75;
  position: relative; z-index: 1;
}

.contact-form {
  max-width: 500px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0.85rem;
  position: relative; z-index: 1;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }

.form-field { display: flex; flex-direction: column; gap: 0.3rem; text-align: left; }
.form-field label {
  font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(240,234,224,0.28);
}
.form-field input,
.form-field textarea,
.form-field select {
  background: rgba(240,234,224,0.04);
  border: 1px solid rgba(240,234,224,0.1);
  border-radius: 1px; padding: 0.75rem 0.9rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
  color: var(--chalk); outline: none; resize: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--orange);
  background: rgba(212,88,26,0.04);
}
.form-field ::placeholder { color: rgba(240,234,224,0.2); }
.form-field select option { background: var(--ink-2); }

.btn-submit {
  margin-top: 0.5rem; padding: 1rem 2rem;
  background: var(--orange); color: #fff;
  border: none; border-radius: 1px;
  font-family: 'DM Sans', sans-serif; font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  cursor: pointer; width: 100%;
  transition: background 0.2s, transform 0.15s;
}
.btn-submit:hover { background: var(--orange-hot); transform: translateY(-1px); }

/* ── FOOTER ── */
#site-footer {
  background: var(--ink-1);
  border-top: 1px solid rgba(212,88,26,0.18);
  padding: 1.8rem 5rem;
  display: flex; align-items: center; justify-content: space-between;
  position: relative; overflow: hidden;
}

#site-footer::before {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 200px; height: 200px;
  background: linear-gradient(135deg, transparent 50%, rgba(212,88,26,0.04) 50%);
  pointer-events: none;
}

.footer-brand {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem;
  letter-spacing: 0.14em; color: rgba(240,234,224,0.4);
  display: flex; align-items: center; gap: 0.5rem;
}
.footer-brand span { color: var(--orange); opacity: 0.7; }

.footer-meta { font-size: 0.7rem; color: rgba(240,234,224,0.2); letter-spacing: 0.04em; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-eyebrow   { animation: fadeUp 0.5s ease 0.15s both; }
.hero-title     { animation: fadeUp 0.6s ease 0.25s both; }
.hero-subtitle  { animation: fadeUp 0.55s ease 0.35s both; }
.hero-spec-bar  { animation: fadeUp 0.55s ease 0.45s both; }
.hero-desc      { animation: fadeUp 0.55s ease 0.52s both; }
.hero-btns      { animation: fadeUp 0.55s ease 0.58s both; }
.hero-price     { animation: fadeUp 0.55s ease 0.64s both; }
.hero-right     { animation: fadeIn  0.7s ease 0.2s  both; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; }
  .hero-right { height: 50vw; }
  .hero-left { padding: 6rem 2rem 3rem; }
  #stats-band { grid-template-columns: repeat(2, 1fr); }
  #gallery { padding: 4rem 2rem; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
  }
  .gallery-item:first-child { grid-row: auto; grid-column: 1 / -1; }
  #specs { grid-template-columns: 1fr; gap: 2rem; padding: 4rem 2rem; }
  .specs-intro { position: static; }
  #contact { padding: 4rem 2rem; }
  .form-row { grid-template-columns: 1fr; }
  #site-nav { padding: 0.9rem 1.5rem; }
  .nav-links { display: none; }
  #site-footer { padding: 1.5rem 2rem; flex-direction: column; gap: 0.5rem; text-align: center; }
}
