/* ============================================================
   THE JUNK TRUCK — Kansas City, MO
   Design System — matches the truck wrap
   Palette: Deep Navy + Aqua Teal + Off-white
============================================================ */

:root {
  /* Colors — match truck wrap (deep navy + aqua teal glow) */
  --ink: #0a1628;            /* truck wrap base navy */
  --ink-2: #14213a;
  --navy: #1d2358;           /* logo deep navy/indigo */
  --cream: #f7f3ec;          /* off-white paper */
  --bone: #e8efee;           /* very faint teal-tinted bone */
  --rule: #233052;
  --orange: #5ec8be;         /* PRIMARY teal — replaces former safety-orange role */
  --orange-2: #6dd5cb;       /* lighter aqua teal */
  --orange-deep: #2da498;    /* deep teal */
  --yellow: #ffd45e;         /* warm accent retained */
  --green: #1d4944;           /* deep teal-green for icons */
  --teal: #5ec8be;           /* explicit teal alias */
  --teal-glow: #40c8d0;      /* cyan glow accent */
  --muted: #5a6678;
  --muted-light: #98a3b5;

  /* Type */
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --display: "Archivo Black", "Anton", "Arial Black", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  /* Sizes — fluid type */
  --h1: clamp(2.5rem, 5.5vw + 1rem, 6.25rem);
  --h2: clamp(2rem, 3.5vw + 1rem, 4rem);
  --h3: clamp(1.35rem, 1.6vw + 1rem, 2rem);
  --h4: clamp(1.1rem, 0.7vw + 0.9rem, 1.3rem);
  --lead: clamp(1.05rem, 0.5vw + 0.9rem, 1.25rem);
  --body: 1rem;
  --small: 0.875rem;

  /* Space scale */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;

  /* Layout */
  --content-max: 1240px;
  --radius: 6px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(20, 24, 32, 0.06), 0 1px 3px rgba(20, 24, 32, 0.08);
  --shadow: 0 4px 20px rgba(20, 24, 32, 0.08), 0 1px 3px rgba(20, 24, 32, 0.05);
  --shadow-lg: 0 24px 60px rgba(20, 24, 32, 0.12), 0 4px 12px rgba(20, 24, 32, 0.08);

  /* Motion */
  --ease: cubic-bezier(.2, .7, .2, 1);
  --t-fast: 140ms;
  --t: 240ms;
  --t-slow: 420ms;
}

/* ------------------------------ Base ------------------------------ */

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: var(--body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--ink); text-decoration: none; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--orange); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 0 0 0.5em;
}
h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); line-height: 1.05; }
h4 { font-size: var(--h4); line-height: 1.15; text-transform: none; letter-spacing: 0; font-family: var(--sans); font-weight: 800; }

p { margin: 0 0 1em; max-width: 68ch; }
p.lead { font-size: var(--lead); line-height: 1.55; }

ul, ol { margin: 0 0 1em; padding-left: 1.25rem; }
li { margin-bottom: 0.4em; }

strong { font-weight: 700; }
em { font-style: italic; }

::selection { background: var(--orange); color: #fff; }

/* ------------------------------ Utilities ------------------------------ */
.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
@media (min-width: 768px) { .container { padding: 0 var(--s-6); } }

.section { padding: var(--s-9) 0; }
.section-sm { padding: var(--s-7) 0; }
.section-dark { background: var(--ink); color: var(--cream); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark a { color: var(--cream); }
.section-dark a:hover { color: var(--orange-2); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--s-4);
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--orange);
}

.accent { color: var(--orange); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.max-measure { max-width: 62ch; }
.max-measure-lg { max-width: 74ch; }

.grid { display: grid; gap: var(--s-5); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; gap: var(--s-6); }
  .grid-4 { grid-template-columns: 1fr 1fr 1fr 1fr; gap: var(--s-5); }
}

/* ------------------------------ Buttons ------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 14px 26px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--cream);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t) var(--ease), background var(--t-fast) var(--ease);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--cream); background: var(--ink-2); }
.btn-primary {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.btn-primary:hover { background: var(--orange-deep); border-color: var(--orange-deep); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.section-dark .btn-outline { color: var(--cream); border-color: var(--cream); }
.section-dark .btn-outline:hover { background: var(--cream); color: var(--ink); }
.btn-lg { padding: 18px 32px; font-size: 1.05rem; }

.btn-group { display: flex; flex-wrap: wrap; gap: var(--s-3); }

/* ------------------------------ Nav ------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid rgba(20, 24, 32, 0.08);
  backdrop-filter: saturate(180%) blur(8px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-4) 0;
  gap: var(--s-5);
}
.brand { display: flex; align-items: center; gap: var(--s-3); }
.brand svg { width: 44px; height: 44px; }
.brand-text {
  font-family: var(--display);
  font-size: 1.15rem;
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
}
.brand-text small { display: block; font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.2em; color: var(--orange); font-weight: 700; }

.nav-links {
  display: none;
  gap: var(--s-5);
  align-items: center;
  list-style: none;
  padding: 0; margin: 0;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}
.nav-links a.active { color: var(--orange); }
.nav-cta { display: none; }

@media (min-width: 960px) {
  .nav-links, .nav-cta { display: flex; }
}

.nav-toggle {
  display: flex;
  flex-direction: column; gap: 4px;
  width: 36px; height: 36px;
  justify-content: center; align-items: center;
  background: transparent; border: 0;
  cursor: pointer;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); transition: transform var(--t) var(--ease), opacity var(--t) var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
@media (min-width: 960px) { .nav-toggle { display: none; } }

.mobile-menu {
  display: none;
  background: var(--cream);
  border-bottom: 1px solid rgba(20,24,32,0.08);
}
.mobile-menu.open { display: block; }
.mobile-menu ul {
  list-style: none; padding: var(--s-4) var(--s-5); margin: 0;
  display: flex; flex-direction: column; gap: var(--s-3);
}
.mobile-menu a {
  display: block; padding: var(--s-2) 0;
  font-weight: 600; font-size: 1.05rem;
}
.mobile-menu .btn { margin-top: var(--s-3); width: 100%; justify-content: center; }

/* ------------------------------ Hero ------------------------------ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  padding: var(--s-8) 0 var(--s-9);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(20,24,32,0.92) 0%, rgba(20,24,32,0.55) 60%, rgba(20,24,32,0.35) 100%),
              url("../assets/images/hero-truck.webp") center/cover no-repeat;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }
.hero .container { position: relative; z-index: 1; }
.hero-inner { max-width: 880px; padding: var(--s-7) 0; }
.hero h1 {
  color: #fff;
  font-size: clamp(3rem, 8vw, 7rem);
}
.hero h1 .stroke {
  -webkit-text-stroke: 2px var(--cream);
  color: transparent;
}
.hero h1 .accent-word {
  color: var(--orange);
  font-style: italic;
}
.hero .lead {
  color: var(--cream);
  max-width: 620px;
  margin-bottom: var(--s-6);
  font-size: var(--lead);
}
.hero .btn-group { margin-top: var(--s-5); }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: var(--s-6);
  margin-top: var(--s-7);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(247,243,236,0.15);
  color: var(--cream);
}
.hero-meta .item {
  display: flex; align-items: center; gap: var(--s-2);
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-meta .item svg { width: 20px; height: 20px; color: var(--orange); flex-shrink: 0; }

/* ------------------------------ Page hero (non-home) ------------------------------ */
.page-hero {
  background: var(--ink);
  color: var(--cream);
  padding: var(--s-8) 0 var(--s-7);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  top: 0; right: -100px;
  width: 400px; height: 100%;
  background: var(--orange);
  transform: skew(-14deg);
  opacity: 0.08;
  z-index: 0;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; max-width: 16ch; }
.page-hero .lead { color: var(--bone); max-width: 640px; }

/* ------------------------------ Cards ------------------------------ */
.card {
  background: #fff;
  border: 1px solid rgba(20,24,32,0.08);
  border-radius: var(--radius-lg);
  padding: var(--s-5);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--orange); }

.service-card {
  display: block;
  position: relative;
  padding: var(--s-6);
  background: #fff;
  border: 1px solid rgba(20,24,32,0.1);
  border-radius: var(--radius-lg);
  color: var(--ink);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), background var(--t) var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
  background: var(--ink);
  color: var(--cream);
}
.service-card:hover h3, .service-card:hover p { color: var(--cream); }
.service-card:hover .service-icon { background: var(--orange); color: #fff; }
.service-card h3 { font-size: 1.35rem; line-height: 1.05; }
.service-card p { font-size: 0.95rem; color: var(--muted); margin-bottom: 0; }
.service-card .service-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  background: var(--bone);
  color: var(--ink);
  border-radius: var(--radius);
  margin-bottom: var(--s-4);
  transition: background var(--t) var(--ease), color var(--t) var(--ease);
}
.service-card .service-icon svg { width: 26px; height: 26px; }
.service-card .arrow {
  position: absolute; top: var(--s-5); right: var(--s-5);
  opacity: 0; transform: translateX(-6px);
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease);
  color: var(--orange);
}
.service-card:hover .arrow { opacity: 1; transform: translateX(0); }

/* ------------------------------ Why Choose strip ------------------------------ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 768px) { .feature-row { grid-template-columns: repeat(4, 1fr); gap: var(--s-6); } }
.feature {
  text-align: left;
}
.section section-dark .feature .num { color: var(--orange-2); }
.feature .num {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: var(--s-3);
  line-height: 1;
}
.feature h3 { font-size: 1.2rem; text-transform: none; letter-spacing: 0; font-family: var(--sans); font-weight: 800; margin-bottom: var(--s-2); }
.feature p { font-size: 0.95rem; color: var(--muted); margin: 0; }
.section-dark .feature h3 { color: var(--cream); }
.section-dark .feature p { color: var(--bone); }

/* ------------------------------ Banner / CTA ------------------------------ */
.cta-band {
  background: var(--orange);
  color: #fff;
  padding: var(--s-8) 0;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band .btn { background: #fff; color: var(--orange); border-color: #fff; }
.cta-band .btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ------------------------------ Footer ------------------------------ */
.site-footer {
  background: var(--ink);
  color: var(--bone);
  padding: var(--s-8) 0 var(--s-5);
}
.site-footer h4 {
  color: #fff;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
  color: var(--orange);
}
.site-footer a { color: var(--bone); font-size: 0.95rem; }
.site-footer a:hover { color: var(--orange); }
.site-footer ul { list-style: none; padding: 0; }
.site-footer li { margin-bottom: var(--s-2); }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  padding-bottom: var(--s-6);
  border-bottom: 1px solid rgba(247,243,236,0.12);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--s-7); } }
.footer-brand { max-width: 340px; }
.footer-brand .brand-text { color: #fff; }
.footer-brand .brand-text small { color: var(--orange); }
.footer-brand p { color: var(--bone); font-size: 0.9rem; margin-top: var(--s-4); }
.copyright {
  margin-top: var(--s-5);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--s-3);
  font-size: 0.85rem;
  color: var(--muted-light);
}

/* ------------------------------ Service detail sections ------------------------------ */
.service-detail {
  padding: var(--s-8) 0;
  border-bottom: 1px solid rgba(20,24,32,0.08);
}
.service-detail:nth-child(even) { background: var(--bone); }
.service-detail-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--s-6);
}
@media (min-width: 900px) { .service-detail-grid { grid-template-columns: 1.1fr 1fr; gap: var(--s-8); align-items: center; } }
.service-detail h2 { max-width: 14ch; }
.service-detail ul.check-list {
  list-style: none; padding: 0; margin: var(--s-4) 0;
}
.check-list, ul.check-list { list-style: none; padding: 0; }
.service-detail ul.check-list li, ul.check-list li {
  padding-left: 32px;
  position: relative;
  margin-bottom: var(--s-3);
  list-style: none;
}
.service-detail ul.check-list li::before, ul.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 20px; height: 20px;
  background-color: var(--orange);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-position: center; background-repeat: no-repeat;
}
.service-detail .img-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.service-detail .img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ------------------------------ FAQ Accordion ------------------------------ */
.accordion { margin-top: var(--s-5); max-width: 860px; }
.accordion details {
  border-bottom: 1px solid rgba(20,24,32,0.12);
  padding: var(--s-5) 0;
  transition: background var(--t-fast) var(--ease);
}
.accordion details[open] { }
.accordion summary {
  display: flex;
  align-items: center; justify-content: space-between;
  gap: var(--s-4);
  cursor: pointer;
  list-style: none;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.3;
  color: var(--ink);
  transition: color var(--t-fast) var(--ease);
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary:hover { color: var(--orange); }
.accordion summary::after {
  content: "+";
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
  color: var(--orange);
  transition: transform var(--t) var(--ease);
  flex-shrink: 0;
  min-width: 24px;
  text-align: center;
}
.accordion details[open] summary::after { content: "–"; }
.accordion details > *:not(summary) { margin-top: var(--s-4); color: var(--muted); }
.accordion details > *:not(summary):last-child { margin-bottom: 0; }

/* ------------------------------ Blog ------------------------------ */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}
@media (min-width: 700px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: 1fr 1fr 1fr; } }

.post-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid rgba(20,24,32,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.post-card .thumb { aspect-ratio: 16/10; background: var(--bone); overflow: hidden; }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.post-card:hover .thumb img { transform: scale(1.05); }
.post-card .body { padding: var(--s-5); flex: 1; display: flex; flex-direction: column; }
.post-card h3 { font-family: var(--sans); font-weight: 800; text-transform: none; letter-spacing: 0; font-size: 1.25rem; line-height: 1.2; margin-bottom: var(--s-3); }
.post-card .meta { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--s-2); }
.post-card p { font-size: 0.95rem; color: var(--muted); flex: 1; }
.post-card .read-more {
  font-weight: 700;
  color: var(--orange);
  margin-top: var(--s-3);
  display: inline-flex; align-items: center; gap: 6px;
}

/* Article content */
.article {
  max-width: 720px; margin: 0 auto;
  padding: var(--s-8) 0;
}
.article .meta { font-size: 0.85rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--s-4); }
.article h1 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: var(--s-5); }
.article h2 { font-size: 1.8rem; margin-top: var(--s-7); }
.article h3 { font-size: 1.3rem; margin-top: var(--s-6); text-transform: none; letter-spacing: 0; font-family: var(--sans); }
.article p, .article li { font-size: 1.0625rem; line-height: 1.75; color: var(--ink-2); }
.article .hero-img { margin: 0 calc(var(--s-5) * -1) var(--s-6); border-radius: var(--radius-lg); overflow: hidden; }
@media (min-width: 900px) { .article .hero-img { margin-left: 0; margin-right: 0; } }
.article .hero-img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

/* ------------------------------ Locations ------------------------------ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--s-4);
}
.location-card {
  padding: var(--s-5);
  border: 1px solid rgba(20,24,32,0.1);
  border-radius: var(--radius-lg);
  background: #fff;
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease);
}
.location-card:hover { border-color: var(--orange); transform: translateY(-2px); }
.location-card h3 { font-family: var(--sans); font-weight: 800; text-transform: none; letter-spacing: 0; font-size: 1.15rem; margin-bottom: var(--s-2); }
.location-card .state { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--orange); margin-bottom: var(--s-2); }
.location-card p { font-size: 0.9rem; color: var(--muted); margin-bottom: var(--s-3); }
.location-card .zips { font-family: var(--mono); font-size: 0.8rem; color: var(--muted); }

.service-area-map {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: var(--s-7) var(--s-5);
  text-align: center;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.service-area-map svg { max-width: 100%; height: auto; margin: 0 auto; display: block; }

/* ------------------------------ Booking form ------------------------------ */
.booking-form {
  background: #fff;
  border: 1px solid rgba(20,24,32,0.1);
  border-radius: var(--radius-lg);
  padding: var(--s-6);
  max-width: 760px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr; gap: var(--s-4); margin-bottom: var(--s-4); }
@media (min-width: 600px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.field label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--s-2);
  color: var(--ink);
}
.field label .req { color: var(--orange); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  border: 1.5px solid rgba(20,24,32,0.15);
  border-radius: var(--radius);
  background: var(--cream);
  transition: border-color var(--t-fast) var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.field textarea { min-height: 120px; resize: vertical; }
.field .hint { font-size: 0.8rem; color: var(--muted); margin-top: var(--s-2); }
.field.upload {
  border: 2px dashed rgba(20,24,32,0.2);
  padding: var(--s-5);
  border-radius: var(--radius);
  background: var(--cream);
  text-align: center;
  color: var(--muted);
}
.field.upload svg { margin: 0 auto var(--s-2); width: 32px; height: 32px; color: var(--orange); }

/* ------------------------------ Split (two-column) ------------------------------ */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  align-items: center;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: var(--s-8); } }
.split.reverse > :first-child { order: 2; }
.split .img-wrap img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; }

/* ------------------------------ Misc ------------------------------ */
.divider {
  width: 60px; height: 4px;
  background: var(--orange);
  margin: var(--s-4) 0;
}
.pill {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 107, 26, 0.1);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
}
.badge-row { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-bottom: var(--s-4); }
.badge-row .pill { background: var(--bone); color: var(--ink); }

/* Animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 600ms var(--ease) both; }
.fade-up-delay-1 { animation: fadeUp 600ms var(--ease) 120ms both; }
.fade-up-delay-2 { animation: fadeUp 600ms var(--ease) 240ms both; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px; left: 0;
  background: var(--ink);
  color: var(--cream);
  padding: var(--s-3) var(--s-4);
  z-index: 100;
}
.skip-link:focus { top: 0; }
