/* ==========================================================================
   RENEW RIDERS — design tokens
   Concept: a workshop inspection stamp. Every renewed vehicle earns one.
   ========================================================================== */

:root{
  /* --- color --- */
  --ink:        #14181B;   /* primary dark ground */
  --ink-2:      #1E262B;   /* raised dark surface */
  --steel:      #4F6169;   /* muted blue-steel, secondary text on dark */
  --steel-line: #33414A;   /* hairlines on dark */
  --paper:      #EFEAE0;   /* primary light ground */
  --paper-2:    #E4DCCB;   /* raised light surface / cards */
  --paper-line: #D8CFBB;   /* hairlines on light */
  --rust:       #B33D28;   /* primary brand accent — brake-light red */
  --rust-dark:  #932F1D;
  --amber:      #DE8A1E;   /* secondary accent — inspection stamp amber */
  --ink-text:   #1B1F22;
  --muted-on-paper: #6E6A5F;
  --muted-on-ink:   #93A0A5;
  --cream:      #F7F4EC;

  /* --- type --- */
  --f-display: "Oswald", "Arial Narrow", sans-serif;
  --f-body:    "Work Sans", "Segoe UI", sans-serif;
  --f-mono:    "IBM Plex Mono", "Courier New", monospace;

  /* --- layout --- */
  --maxw: 1200px;
  --edge: clamp(1.25rem, 5vw, 3.5rem);
  --radius-sm: 3px;
  --radius-lg: 6px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--paper);
  color: var(--ink-text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4{ margin: 0; font-family: var(--f-display); text-transform: uppercase; font-weight: 600; line-height: 1; }
p{ margin: 0; }
button{ font-family: inherit; cursor: pointer; }

::selection{ background: var(--amber); color: var(--ink); }

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

.container{
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--edge);
  padding-right: var(--edge);
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rust);
}
.eyebrow::before{
  content: "";
  width: 22px;
  height: 1px;
  background: var(--rust);
  display: inline-block;
}
.eyebrow.on-dark{ color: var(--amber); }
.eyebrow.on-dark::before{ background: var(--amber); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  padding: .95em 1.7em;
  font-family: var(--f-display);
  font-size: .88rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn:active{ transform: translateY(0); }
.btn svg{ width: 1.05em; height: 1.05em; flex: none; }

.btn-primary{ background: var(--rust); color: var(--cream); border-color: var(--rust); }
.btn-primary:hover{ background: var(--rust-dark); border-color: var(--rust-dark); }

.btn-ghost-dark{ background: transparent; color: var(--cream); border-color: rgba(247,244,236,.4); }
.btn-ghost-dark:hover{ border-color: var(--amber); color: var(--amber); }

.btn-ghost-light{ background: transparent; color: var(--ink-text); border-color: var(--ink-text); }
.btn-ghost-light:hover{ border-color: var(--rust); color: var(--rust); }

.btn-whatsapp{ background: #2E4B3B; color: var(--cream); border-color: #2E4B3B; }
.btn-whatsapp:hover{ background: #24392E; border-color: #24392E; }

.btn-instagram{
  background: linear-gradient(45deg,#fdf497 0%,#fdf497 5%,#fd5949 45%,#d6249f 60%,#285AEB 90%);
  color: #fff;
  border-color: transparent;
}
.btn-instagram:hover{ filter: brightness(1.08); background: linear-gradient(45deg,#fdf497 0%,#fdf497 5%,#fd5949 45%,#d6249f 60%,#285AEB 90%); border-color: transparent; }

.btn-block{ width: 100%; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background .25s ease, padding .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled{
  background: rgba(20,24,27,.92);
  backdrop-filter: blur(6px);
  padding: .75rem 0;
  border-color: var(--steel-line);
}
.site-header .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand{
  display: flex;
  flex-direction: column;
  gap: .15rem;
  color: var(--cream);
  line-height: 1;
}
.brand .brand-mark{
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: .02em;
  display: flex;
  align-items: baseline;
  gap: .35em;
}
.brand .brand-mark span{ color: var(--amber); }
.brand .brand-tag{
  font-family: var(--f-mono);
  font-size: .62rem;
  letter-spacing: .18em;
  color: var(--muted-on-ink);
  text-transform: uppercase;
}

.nav-links{
  display: flex;
  align-items: center;
  gap: 2.1rem;
}
.nav-links a{
  font-family: var(--f-display);
  font-size: .84rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding: .3rem 0;
}
.nav-links a::after{
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--amber);
  transition: width .2s ease;
}
.nav-links a:hover::after,
.nav-links a.is-active::after{ width: 100%; }
.nav-links a.is-active{ color: var(--amber); }

.nav-cta{ display: flex; align-items: center; gap: 1.1rem; }
.nav-cta .btn{ padding: .7em 1.3em; font-size: .78rem; }

.nav-toggle{
  display: none;
  width: 42px; height: 42px;
  border: 1px solid rgba(247,244,236,.35);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--cream);
  align-items: center;
  justify-content: center;
}
.nav-toggle svg{ width: 20px; height: 20px; }
.nav-toggle .icon-close{ display: none; }
.nav-toggle.is-open .icon-burger{ display: none; }
.nav-toggle.is-open .icon-close{ display: block; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center 62%;
  isolation: isolate;
  overflow: hidden;
}
.hero::before{
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,18,20,.35) 0%, rgba(15,18,20,.35) 30%, rgba(13,16,18,.86) 88%, #12161A 100%),
    linear-gradient(90deg, rgba(13,16,18,.7) 0%, rgba(13,16,18,.15) 55%);
  z-index: 1;
}
.hero-inner{
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 9rem 0 4.5rem;
  color: var(--cream);
}
.hero h1{
  font-size: clamp(2.6rem, 6.4vw, 5.6rem);
  max-width: 15ch;
  margin: .5rem 0 1.3rem;
  letter-spacing: -.01em;
}
.hero h1 em{
  font-style: normal;
  color: var(--amber);
}
.hero-sub{
  max-width: 46ch;
  font-size: 1.05rem;
  color: #DCD6C8;
  margin-bottom: 2.1rem;
}
.hero-actions{ display: flex; gap: 1rem; flex-wrap: wrap; }

.stamp{
  position: absolute;
  right: clamp(1rem, 5vw, 4rem);
  top: clamp(6.5rem, 14vw, 9.5rem);
  z-index: 2;
  width: clamp(108px, 13vw, 150px);
  height: clamp(108px, 13vw, 150px);
  color: var(--cream);
  opacity: .95;
}
.stamp .stamp-spin{
  animation: spin 26s linear infinite;
  transform-origin: 50% 50%;
}
@media (prefers-reduced-motion: reduce){
  .stamp .stamp-spin{ animation: none; }
}
@keyframes spin{ to{ transform: rotate(360deg); } }

/* ==========================================================================
   Sections
   ========================================================================== */
section{ position: relative; }
.section{ padding: clamp(4rem, 8vw, 7rem) 0; }
.section-dark{ background: var(--ink); color: var(--cream); }
.section-paper2{ background: var(--paper-2); }

.section-head{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.section-head h2{ font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-top: .6rem; }
.section-head p{ max-width: 42ch; color: var(--muted-on-paper); }
.on-dark .section-head p{ color: var(--muted-on-ink); }

/* --- reveal on scroll --- */
.reveal{ opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view{ opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Job-card panels (Buy / Sell)
   ========================================================================== */
.job-panels{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}
.job-card{
  position: relative;
  background: var(--paper);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2.2rem 2.2rem;
}
.job-card::before{
  content: "";
  position: absolute;
  top: 1.6rem; left: -9px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--paper-2);
  border: 1px solid var(--paper-line);
}
.job-card .tag-no{
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .1em;
  color: var(--rust);
  display: block;
  margin-bottom: .9rem;
}
.job-card h3{
  font-size: 1.55rem;
  margin-bottom: .8rem;
}
.job-card p{
  color: var(--muted-on-paper);
  margin-bottom: 1.6rem;
}
.job-card--dark{ background: var(--ink-2); border-color: var(--steel-line); }
.job-card--dark .tag-no{ color: var(--amber); }
.job-card--dark p{ color: var(--muted-on-ink); }
.job-card--dark h3{ color: var(--cream); }

/* ==========================================================================
   Find It For Me
   ========================================================================== */
.finder-card{
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-lg);
  padding: 2.6rem 2.4rem 2.4rem;
}
.finder-card::before{
  content: "";
  position: absolute;
  top: 1.8rem; left: -9px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--paper-2);
  border: 1px solid var(--paper-line);
}
.finder-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem 1.5rem;
  margin-bottom: 1.8rem;
}
.finder-field{ display: flex; flex-direction: column; gap: .5rem; }
.finder-field.full{ grid-column: 1 / -1; }
.finder-field span{
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rust);
}
.finder-field input, .finder-field select{
  font-family: var(--f-body);
  font-size: .95rem;
  padding: .75em .9em;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink-text);
  outline: none;
  transition: border-color .18s ease;
  appearance: none;
  -webkit-appearance: none;
}
.finder-field select{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236E6A5F' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .8em center;
  background-size: 16px;
  padding-right: 2.4em;
}
.finder-field input:focus, .finder-field select:focus{ border-color: var(--rust); }
.finder-field input::placeholder{ color: #A79F8E; }
.finder-note{
  margin-top: 1rem;
  font-size: .8rem;
  color: var(--muted-on-paper);
  text-align: center;
}

/* ==========================================================================
   Category / parts cards
   ========================================================================== */
.cat-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.cat-card{
  background: var(--paper);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.7rem;
  transition: border-color .2s ease, transform .2s ease;
}
.cat-card:hover{ transform: translateY(-4px); border-color: var(--rust); }
.cat-icon{
  width: 46px; height: 46px;
  color: var(--rust);
  margin-bottom: 1.3rem;
}
.cat-card h3{
  font-size: 1.15rem;
  margin-bottom: .6rem;
}
.cat-card p{ color: var(--muted-on-paper); font-size: .95rem; }

/* ==========================================================================
   Stamp stats
   ========================================================================== */
.stat-row{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat{
  border: 1px dashed var(--paper-line);
  border-radius: 50% / 18%;
  text-align: center;
  padding: 1.9rem 1rem;
  transform: rotate(var(--tilt, -1.5deg));
}
.stat:nth-child(2){ --tilt: 1.2deg; }
.stat:nth-child(3){ --tilt: -1deg; }
.stat:nth-child(4){ --tilt: 1.6deg; }
.stat .num{
  font-family: var(--f-mono);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--rust);
  display: block;
}
.stamp-copy{
  max-width: 62ch;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--muted-on-paper);
  margin-top: -1rem;
}
.stat .label{
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted-on-paper);
  display: block;
  margin-top: .4rem;
}

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band{
  background: var(--ink);
  color: var(--cream);
  border-top: 1px solid var(--steel-line);
  border-bottom: 1px solid var(--steel-line);
}
.cta-band .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}
.cta-band h2{ font-size: clamp(1.7rem, 3.4vw, 2.5rem); max-width: 16ch; }
.cta-actions{ display: flex; gap: 1rem; flex-wrap: wrap; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{
  background: var(--ink);
  color: var(--muted-on-ink);
  padding: 3.5rem 0 1.6rem;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--steel-line);
}
.footer-grid .brand-mark{ color: var(--cream); font-size: 1.3rem; margin-bottom: .8rem; }
.footer-grid .brand-mark span{ color: var(--amber); }
.footer-col h4{
  font-family: var(--f-mono);
  font-size: .7rem;
  letter-spacing: .14em;
  color: var(--amber);
  margin-bottom: 1.1rem;
  text-transform: uppercase;
}
.footer-col p, .footer-col a{ display: block; color: var(--muted-on-ink); margin-bottom: .7rem; font-size: .93rem; }
.footer-col a:hover{ color: var(--amber); }
.footer-social{ display: flex; gap: .8rem; margin-top: .3rem; }
.footer-social a{
  width: 38px; height: 38px;
  border: 1px solid var(--steel-line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s ease, color .2s ease;
}
.footer-social a svg{ width: 17px; height: 17px; }
.footer-social a:hover{ border-color: var(--amber); color: var(--amber); }
.footer-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.6rem;
  font-size: .8rem;
  flex-wrap: wrap;
  gap: .6rem;
}
.footer-bottom .f-mono{ font-family: var(--f-mono); letter-spacing: .04em; }
.footer-credit{ display: block; margin-top: .35rem; color: var(--muted-on-ink); }
.footer-credit a{ color: var(--amber); }
.footer-credit a:hover{ text-decoration: underline; }

/* ==========================================================================
   Floating WhatsApp button
   ========================================================================== */
.float-stack{
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .85rem;
}
.float-btn{
  width: 58px; height: 58px;
  border-radius: 50%;
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  transition: transform .2s ease, filter .2s ease, background .2s ease;
}
.float-btn:hover{ transform: translateY(-3px) scale(1.04); }
.float-btn svg{ width: 26px; height: 26px; }
.float-btn.float-whatsapp{ background: #2E4B3B; }
.float-btn.float-whatsapp:hover{ background: #24392E; }
.float-btn.float-instagram{
  background: linear-gradient(45deg,#fdf497 0%,#fdf497 5%,#fd5949 45%,#d6249f 60%,#285AEB 90%);
}
.float-btn.float-instagram:hover{ filter: brightness(1.1); }

@media (max-width: 720px){
  .float-btn{ width: 50px; height: 50px; }
  .float-btn svg{ width: 22px; height: 22px; }
}

/* ==========================================================================
   Inner page hero (About / Contact)
   ========================================================================== */
.page-hero{
  position: relative;
  padding: 10.5rem 0 5rem;
  background-size: cover;
  background-position: center 55%;
  color: var(--cream);
  isolation: isolate;
}
.page-hero::before{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,17,19,.55), rgba(14,17,19,.93));
  z-index: 1;
}
.page-hero .container{ position: relative; z-index: 2; }
.page-hero h1{ font-size: clamp(2.4rem, 5.6vw, 4.2rem); margin-top: .6rem; max-width: 20ch; }
.page-hero p{ max-width: 50ch; color: #DCD6C8; margin-top: 1.1rem; }

/* ==========================================================================
   About page specifics
   ========================================================================== */
.split{
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}
.split .lede{
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  text-transform: none;
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink-text);
}
.split .lede em{ color: var(--rust); font-style: normal; }
.split .body-copy p + p{ margin-top: 1.1rem; }
.split .body-copy{ color: var(--muted-on-paper); }

.value-list{ margin-top: 2rem; display: grid; gap: 1.2rem; }
.value-list li{ display: flex; gap: .9rem; align-items: flex-start; }
.value-list .chk{
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--rust);
  color: var(--rust);
  display: flex; align-items: center; justify-content: center;
  margin-top: .15rem;
}
.value-list .chk svg{ width: 12px; height: 12px; }
.value-list strong{ display: block; font-family: var(--f-display); text-transform: uppercase; font-size: .95rem; letter-spacing: .02em; }
.value-list span{ color: var(--muted-on-paper); font-size: .93rem; }

.process{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
  position: relative;
}
.process::before{
  content: "";
  position: absolute;
  top: 26px; left: 6%; right: 6%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--steel-line) 0 10px, transparent 10px 18px);
  z-index: 0;
}
.step{ position: relative; padding: 0 1.2rem; text-align: left; }
.step-num{
  counter-increment: step;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--amber);
  font-family: var(--f-mono);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.3rem;
  position: relative;
  z-index: 1;
  border: 1px solid var(--steel-line);
}
.step-num::before{ content: counter(step, decimal-leading-zero); }
.step h4{ font-size: 1.05rem; margin-bottom: .55rem; color: var(--cream); }
.step p{ color: var(--muted-on-ink); font-size: .9rem; }

.team-quote{
  border-left: 3px solid var(--rust);
  padding-left: 1.6rem;
  margin-top: 2.2rem;
}
.team-quote p{ font-family: var(--f-display); font-size: 1.15rem; text-transform: none; font-weight: 400; }
.team-quote span{ display: block; margin-top: .6rem; font-family: var(--f-mono); font-size: .78rem; color: var(--muted-on-paper); letter-spacing: .04em; }

.story-tagline{
  margin-top: 1.7rem;
  font-family: var(--f-display);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--rust);
  padding-top: 1.4rem;
  border-top: 1px solid var(--paper-line);
}

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.contact-card{
  background: var(--paper);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-lg);
  padding: 2.3rem 2rem;
  position: relative;
  transition: transform .2s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.contact-card:hover{ transform: translateY(-4px); border-color: var(--rust); }
.contact-card .c-icon{
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink);
  color: var(--amber);
  margin-bottom: 1.5rem;
}
.contact-card .c-icon svg{ width: 22px; height: 22px; }
.contact-card h3{ font-size: 1.2rem; margin-bottom: .5rem; }
.contact-card .handle{
  font-family: var(--f-mono);
  font-size: .92rem;
  color: var(--rust);
  margin-bottom: .9rem;
  word-break: break-word;
}
.contact-card p.desc{ color: var(--muted-on-paper); font-size: .92rem; margin-bottom: 1.6rem; flex-grow: 1; }

.info-strip{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 1rem;
}
.info-strip--2col{ grid-template-columns: repeat(2, 1fr); }
.info-block h4{
  font-family: var(--f-mono);
  font-size: .7rem;
  letter-spacing: .12em;
  color: var(--rust);
  margin-bottom: .7rem;
  text-transform: uppercase;
}
.info-block p{ color: var(--ink-text); }
.info-block .muted{ color: var(--muted-on-paper); font-size: .92rem; margin-top: .3rem; }

.map-frame{
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 3rem;
  filter: grayscale(.15) contrast(1.02);
}
.map-frame iframe{ width: 100%; height: 360px; border: 0; display: block; }
.map-directions{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  margin-bottom: -1.4rem;
}
.map-directions h4{
  font-family: var(--f-mono);
  font-size: .7rem;
  letter-spacing: .12em;
  color: var(--rust);
  text-transform: uppercase;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px){
  .job-panels{ grid-template-columns: 1fr; }
  .cat-grid{ grid-template-columns: 1fr 1fr; }
  .stat-row{ grid-template-columns: 1fr 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .split{ grid-template-columns: 1fr; gap: 2.2rem; }
  .process{ grid-template-columns: 1fr 1fr; row-gap: 2.4rem; }
  .process::before{ display: none; }
  .contact-grid{ grid-template-columns: 1fr; }
  .info-strip{ grid-template-columns: 1fr; }
  .info-strip--2col{ grid-template-columns: 1fr; }

  .btn{ padding: .78em 1.4em; font-size: .78rem; }
  .hero-actions{ gap: .7rem; }
}

@media (max-width: 720px){
  .nav-links, .nav-cta .btn-ghost-dark{ display: none; }
  .nav-toggle{ display: flex; }
  .nav-cta{ gap: .7rem; }
  .cat-grid{ grid-template-columns: 1fr; }
  .stat-row{ grid-template-columns: 1fr 1fr; }
  .footer-grid{ grid-template-columns: 1fr; gap: 2rem; }
  .cta-band .container{ flex-direction: column; align-items: flex-start; }
  .stamp{ width: 90px; height: 90px; top: 6rem; }
  .hero{ background-image: url('../assets/hero-mobile.jpg') !important; background-position: center 78%; }

  .btn{ padding: .68em 1.15em; font-size: .72rem; gap: .45em; }
  .hero-actions{ gap: .6rem; }
  .cta-actions{ gap: .6rem; }
  .finder-card{ padding: 2rem 1.4rem 1.8rem; }
  .finder-grid{ grid-template-columns: 1fr; }
}

/* Mobile nav drawer */
.mobile-drawer{
  position: fixed;
  inset: 0;
  background: rgba(14,17,19,.98);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.mobile-drawer.is-open{ opacity: 1; pointer-events: auto; }
.mobile-drawer a{
  font-family: var(--f-display);
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--cream);
  letter-spacing: .04em;
}
.mobile-drawer a.is-active{ color: var(--amber); }
.mobile-drawer .btn{ margin-top: 1rem; }
