/* Tommys Flytteservice — pitch site, lane-tommy1
   Palette from their public Facebook cover: navy belt, signal yellow, truck-door blue.
   Display: Teko (condensed, as painted on a van). Body: Figtree. */

:root {
  --navy: #0a1f4d;
  --navy-2: #16356e;
  --yellow: #f5c400;
  --yellow-ink: #3a2e00;
  --blue: #1a4b9c;
  --paper: #e6ebf1;
  --snow: #f5f7fa;
  --ink: #12151c;
  --muted: #5a6470;
  --line: #c3ccd6;
  --red: #c41e1e;
  --strap: 10px;
  --font-display: "Teko", "Arial Narrow", "Franklin Gothic Medium", sans-serif;
  --font-body: "Figtree", "Segoe UI", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --max: 72rem;
  --radius: 2px;
}

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

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 1.0625rem;
  padding-left: var(--strap);
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: var(--strap);
  height: 100%;
  background: var(--yellow);
  box-shadow: 2px 0 0 var(--navy);
  z-index: 40;
}

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

a { color: var(--blue); }

a:hover { color: var(--navy); }

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--yellow);
  color: var(--ink);
  padding: 0.6rem 1rem;
  z-index: 50;
}

.skip:focus { left: var(--strap); }

.wrap {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Header */

.site-header {
  background: var(--navy);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 30;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
}

.brand img {
  width: 40px;
  height: 40px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.06em;
  line-height: 1;
  font-weight: 600;
}

.brand-name span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--yellow);
  font-weight: 500;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  font-size: 0.92rem;
}

.nav a {
  color: #e8eef8;
  text-decoration: none;
}

.nav a:hover { color: var(--yellow); }

.header-phone {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--yellow);
  text-decoration: none;
  white-space: nowrap;
}

.header-phone:hover { color: #fff; }

/* Hero */

.hero {
  background:
    linear-gradient(180deg, #fbfcfe 0%, var(--snow) 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: end;
  padding: 3.2rem 0 0;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.8rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  margin: 0 0 0.15rem;
  color: var(--blue);
  text-transform: uppercase;
  text-shadow:
    -1px -1px 0 var(--yellow),
    1px -1px 0 var(--yellow),
    -1px 1px 0 var(--yellow),
    1px 1px 0 var(--yellow);
}

.hero h1 small {
  display: block;
  font-size: 0.38em;
  letter-spacing: 0.18em;
  color: var(--ink);
  text-shadow: none;
  margin-top: 0.35rem;
  font-weight: 500;
}

.lede {
  font-size: 1.12rem;
  max-width: 36rem;
  margin: 1.15rem 0 1.6rem;
  color: #2a3038;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.78rem 1.2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  border-radius: var(--radius);
}

.btn-primary {
  background: var(--yellow);
  color: var(--yellow-ink);
  border-color: var(--yellow);
}

.btn-primary:hover { filter: brightness(1.05); color: var(--ink); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-ghost:hover { background: var(--navy); color: #fff; }

.hero-aside {
  display: grid;
  gap: 0.55rem;
  padding-bottom: 1.5rem;
}

.hero-photo {
  border: 1px solid var(--line);
  background: #d5dbe3;
  min-height: 220px;
  object-fit: cover;
  object-position: 30% 50%;
  width: 100%;
  height: 320px;
}

.hero-photo-note,
.placeholder-note {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.stat {
  padding: 1.1rem 0.4rem 1.25rem;
  border-right: 1px solid var(--line);
}

.stat:last-child { border-right: 0; }

.stat b {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 600;
  display: block;
  line-height: 1;
  color: var(--navy);
}

.stat span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Belt — their Facebook cover vernacular */

.belt {
  background: var(--navy);
  color: var(--yellow);
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.belt ul {
  list-style: none;
  margin: 0;
  padding: 0.7rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.4rem 1rem;
  font-size: clamp(1.1rem, 2.4vw, 1.55rem);
}

.belt a {
  color: var(--yellow);
  text-decoration: none;
}

.belt a:hover { color: #fff; }

.section,
.hero,
.contact,
.belt {
  scroll-margin-top: 5.25rem;
}

.section {
  padding: 3.4rem 0;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
  line-height: 1;
}

.section-lead {
  max-width: 40rem;
  color: var(--muted);
  margin: 0 0 2rem;
}

.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service {
  background: var(--snow);
  padding: 1.5rem 1.4rem 1.6rem;
  min-height: 12rem;
}

.service h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.service p { margin: 0; color: #2c333c; }

.service .tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.extra-line {
  margin-top: 1.2rem;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Reviews */

.reviews-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.fb-meta {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--muted);
}

.quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

blockquote {
  margin: 0;
  background: #fff;
  border-left: 6px solid var(--yellow);
  padding: 1.15rem 1.15rem 1rem;
  box-shadow: 0 1px 0 var(--line);
}

blockquote p {
  margin: 0 0 0.8rem;
  font-size: 0.98rem;
}

blockquote footer {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted);
}

.quote-wide { grid-column: 1 / -1; }

/* Coverage */

.coverage-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.route {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  background: var(--navy);
  color: #e8eef8;
  padding: 1.3rem 1.3rem 1.1rem;
}

.route strong {
  color: var(--yellow);
  font-weight: 500;
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.route ul {
  margin: 0;
  padding-left: 1.1rem;
}

.route li { margin: 0.35rem 0; }

/* About */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 3px solid var(--yellow);
}

.timeline li {
  padding: 0 0 1.3rem 1.1rem;
  position: relative;
}

.timeline li::before {
  content: "";
  width: 11px;
  height: 11px;
  background: var(--navy);
  position: absolute;
  left: -7px;
  top: 0.35rem;
}

.timeline b {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--blue);
  display: block;
  margin-bottom: 0.2rem;
}

.photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.photos img,
.photo-slot {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: #cfd6de;
  border: 1px solid var(--line);
}

.photo-slot {
  display: flex;
  align-items: flex-end;
  padding: 0.7rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

/* Contact */

.contact {
  background: var(--navy);
  color: #eef2f8;
}

.contact h2 { color: #fff; }

.contact .section-lead { color: #b7c2d4; }

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
}

.dl {
  margin: 0;
}

.dl div {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.4rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid #2a4274;
  font-size: 0.95rem;
}

.dl dt {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8ea0be;
  padding-top: 0.2rem;
}

.dl a { color: var(--yellow); }

.dl a:hover { color: #fff; }

.placeholder {
  background: #3a2e00;
  color: var(--yellow);
  padding: 0 0.25rem;
  font-family: var(--font-mono);
  font-size: 0.85em;
}

form {
  background: #fff;
  color: var(--ink);
  padding: 1.3rem;
  border-top: 6px solid var(--yellow);
}

.form-title {
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.3rem;
  font-size: 1.5rem;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin: 0.7rem 0 0.25rem;
}

input, select, textarea {
  width: 100%;
  font: inherit;
  padding: 0.55rem 0.6rem;
  border: 1px solid var(--line);
  background: var(--snow);
  border-radius: var(--radius);
}

textarea { min-height: 6.5rem; resize: vertical; }

.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.form-status {
  min-height: 1.3rem;
  font-size: 0.88rem;
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.form-status.ok { color: var(--navy); }

/* Footer */

.site-footer {
  background: #07142f;
  color: #9aa8bd;
  font-size: 0.88rem;
  padding: 1.4rem 0 1.8rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
}

.site-footer strong { color: #e8eef8; font-weight: 600; }

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

@media (max-width: 860px) {
  body { padding-left: 0; padding-top: 6px; }
  body::before {
    width: 100%;
    height: 6px;
    box-shadow: 0 2px 0 var(--navy);
  }
  .hero-grid,
  .coverage-grid,
  .about-grid,
  .contact-grid,
  .quotes,
  .services,
  .row-2 {
    grid-template-columns: 1fr;
  }
  .quote-wide { grid-column: auto; }
  .header-inner { flex-wrap: wrap; }
  .nav { width: 100%; order: 3; }
  .header-phone { margin-left: auto; }
  .hero h1 { font-size: clamp(2.6rem, 14vw, 4.2rem); }
  .section,
  .hero,
  .contact,
  .belt {
    scroll-margin-top: 8.5rem;
  }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .dl div { grid-template-columns: 1fr; }
}
