:root {
  --bg: #f6f3ee;
  --paper: #fbf9f5;
  --card: #ffffff;
  --ink: #171717;
  --muted: #68635d;
  --line: rgba(23,23,23,.10);
  --line-strong: rgba(23,23,23,.18);
  --blue: #4f8bd0;
  --navy: #3d628d;
  --accent: #e58b22;
  --shadow: 0 18px 40px rgba(17,17,17,.06);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3 {
  margin: 0 0 1rem;
  line-height: .98;
  letter-spacing: -.05em;
}
h1 { font-size: clamp(3rem, 7vw, 5.7rem); max-width: 10.6ch; }
h2 { font-size: clamp(2rem, 4.5vw, 3.55rem); max-width: 13ch; }
h3 { font-size: 1.28rem; line-height: 1.15; letter-spacing: -.03em; }
ul { margin: 0; padding-left: 1.15rem; color: var(--muted); }
li + li { margin-top: .55rem; }
strong { color: var(--ink); }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}
.section { padding: 5.25rem 0; }
.section.alt {
  background: linear-gradient(180deg, rgba(255,255,255,.48), rgba(255,255,255,.34));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(246,243,238,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-bar {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  font-weight: 700;
  letter-spacing: -.03em;
}
.brand img {
  width: 110px;
  height: auto;
  flex: 0 0 auto;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex: 1 1 auto;
  min-width: 0;
}
.header-cta {
  flex: 0 0 auto;
}
.mobile-quote {
  margin-top: .45rem;
}
.nav a,
.mobile-panel nav a,
.footer-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: .98rem;
  white-space: nowrap;
}
.nav a:not(.btn) {
  position: relative;
  padding: .2rem 0;
}
.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.35rem;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}
.nav a:not(.btn):hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}
.nav a:hover,
.nav a[aria-current="page"],
.mobile-panel nav a:hover,
.mobile-panel nav a[aria-current="page"],
.footer-nav a:hover,
.footer-nav a[aria-current="page"] {
  color: var(--ink);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .9rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn.primary:hover { background: #c97512; }
.btn.secondary {
  border-color: var(--line-strong);
  color: var(--ink);
  background: transparent;
}
.btn.secondary:hover { background: rgba(17,17,17,.04); }
.btn.light {
  background: var(--accent);
  color: #fff;
}
.mobile-toggle {
  display: none;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  min-height: 46px;
  padding: .75rem 1rem;
  font-weight: 700;
}
.mobile-panel {
  display: none;
  padding-bottom: 1rem;
}
.mobile-panel.open { display: block; }
.mobile-panel nav {
  display: grid;
  gap: .9rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.hero { padding: 5.2rem 0 5rem; }
.hero-grid,
.split,
.page-hero,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: 48px;
  align-items: center;
}
.hero-copy { padding: 16px 0; }
.kicker {
  display: inline-block;
  margin-bottom: 1.2rem;
  color: #56504a;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.lead {
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  max-width: 34ch;
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 1.7rem;
}
.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.7rem;
}
.hero-notes span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: .65rem .92rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  color: var(--ink);
  font-size: .92rem;
  font-weight: 700;
}
.hero-art,
.panel,
.form-shell,
.contact-card,
.faq-item,
.stat-card,
.feature-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-art,
.media.panel { overflow: hidden; }
.hero-art {
  position: relative;
  min-height: 520px;
}
.hero-art img,
.media.panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overlay-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.75);
}
.quote-badge {
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -.02em;
}
.small { font-size: .96rem; color: var(--muted); }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 1.9rem;
}
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stat-card,
.feature-card,
.contact-card,
.faq-item,
.panel,
.form-shell { padding: 1.5rem; }
.feature-card p,
.stat-card p,
.faq-item p { margin-bottom: 0; }
.media.panel { min-height: 460px; padding: 0; }
.page-hero .panel { min-height: 100%; }
.checks { list-style: none; padding-left: 0; }
.checks li {
  position: relative;
  padding-left: 1.45rem;
}
.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .63rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}
.price-number {
  font-size: clamp(3.3rem, 7vw, 5rem);
  font-weight: 800;
  line-height: .92;
  letter-spacing: -.07em;
}
.price-unit {
  font-weight: 700;
  color: var(--muted);
  margin-top: .3rem;
}
.route-table-wrap {
  overflow-x: auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
table { width: 100%; border-collapse: collapse; }
th, td {
  padding: 1rem 1.05rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
th {
  background: #f1ece5;
  font-size: .84rem;
  color: #57514a;
  letter-spacing: .15em;
  text-transform: uppercase;
}
tr:last-child td { border-bottom: 0; }
.cta-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 2rem;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(135deg, #181818, #2a2927);
  box-shadow: var(--shadow);
}
.cta-shell p,
.cta-shell .lead { color: rgba(255,255,255,.74); }
.footer { padding: 1.2rem 0 2.8rem; }
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 1rem;
}
label {
  display: grid;
  gap: .45rem;
  font-size: .94rem;
  font-weight: 700;
}
label.full { grid-column: 1 / -1; }
input,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
  border-radius: 16px;
  padding: .95rem 1rem;
  font: inherit;
}
textarea { resize: vertical; min-height: 150px; }

@media (max-width: 1100px) {
    .nav { gap: 18px; }
  .nav a { font-size: .94rem; }
  .brand img { width: 112px; }
}

@media (max-width: 940px) {
  .nav { display: none; }
  .mobile-toggle { display: inline-flex; }
    .brand img { width: 118px; }
  .hero-grid,
  .split,
  .page-hero,
  .contact-grid,
  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }
  .section-head,
  .footer-grid,
  .cta-shell { flex-direction: column; align-items: flex-start; }
  .hero-art { min-height: 420px; }
  .media.panel { min-height: 360px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
    .brand { gap: 10px; }
  .brand img { width: 108px; }
  .brand span { font-size: .96rem; }
  .hero { padding-top: 2.8rem; }
  .section { padding: 4rem 0; }
  .form-grid { grid-template-columns: 1fr; }
  label.full { grid-column: auto; }
  .btn-row { flex-direction: column; align-items: flex-start; }
}

@media (min-width: 941px) {
  .mobile-panel { display: none !important; }
}
