/* ==========================================================================
   Israel Automotive — Boiling Springs, SC
   "The Honest Work Order" — paper, ink, rust. Built custom, not templated.
   ========================================================================== */

:root {
  --ink: #1c1713;
  --ink-soft: #2c251e;
  --paper: #f4eee1;
  --paper-deep: #eae1cc;
  --card: #fffdf4;
  --rust: #bc3f12;
  --rust-deep: #93300c;
  --tan: #847762;
  --line: #d9cdb2;
  --line-ink: rgba(28, 23, 19, 0.18);

  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --wrap: 1140px;
  --radius: 2px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--paper);
  -webkit-font-smoothing: antialiased;
}

/* Paper grain over everything, very subtle */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, svg, iframe { max-width: 100%; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
  margin: 0 0 0.5em;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

h2 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h3 { font-size: 1.45rem; letter-spacing: 0.03em; }

p { margin: 0 0 1em; }
a { color: inherit; }

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

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

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 0.7rem 1.4rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}
.btn svg { width: 1em; height: 1em; flex: none; }

.btn--rust {
  background: var(--rust);
  border-color: var(--rust-deep);
  color: #fff7ea;
  box-shadow: 4px 4px 0 var(--ink);
}
.btn--rust:hover { background: var(--rust-deep); transform: translate(-1px, -1px); box-shadow: 5px 5px 0 var(--ink); }
.btn--rust:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); }

.btn--paper {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--ink);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.35);
}
.btn--paper:hover { background: #fff; transform: translate(-1px, -1px); }

.btn--ink {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn--ink:hover { background: var(--rust); border-color: var(--rust-deep); }

.btn--lg { font-size: 1.3rem; padding: 0.85rem 1.7rem; }

/* ---------- Kickers & section heads ---------- */
.kicker {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--rust);
  margin-bottom: 0.9rem;
}
.kicker::before {
  content: "//";
  margin-right: 0.6rem;
  color: var(--tan);
}
.kicker--light { color: #e8a17e; }
.kicker--light::before { color: rgba(244, 238, 225, 0.4); }

.section-head { max-width: 640px; margin-bottom: 2.8rem; }
.section-head__sub { font-size: 1.1rem; color: var(--ink-soft); }

/* ---------- Utility strip ---------- */
.util-strip {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}
.util-strip__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.45rem 0;
}
.util-strip__item { white-space: nowrap; }
.util-strip__call {
  color: var(--paper);
  text-decoration: none;
  font-weight: 600;
}
.util-strip__call:hover { color: #e8a17e; }
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9aa389;
  margin-right: 0.45rem;
  vertical-align: 1px;
}
.status-dot--open { background: #5d9e52; box-shadow: 0 0 6px rgba(93, 158, 82, 0.8); }
.status-dot--closed { background: var(--rust); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}
.site-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;
}
.brand__mark { width: 42px; height: 42px; color: var(--ink); flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.brand__tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tan);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.site-nav > a:not(.btn) {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 0.2rem 0;
  border-bottom: 2px solid transparent;
}
.site-nav > a:not(.btn):hover { border-bottom-color: var(--rust); color: var(--rust-deep); }
.btn--nav { font-size: 0.95rem; padding: 0.45rem 1rem; box-shadow: 3px 3px 0 var(--ink); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 9px;
  background: transparent;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 3px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3rem, 6vw, 5rem);
  background:
    linear-gradient(rgba(244, 238, 225, 0.55), rgba(244, 238, 225, 0.92)),
    repeating-linear-gradient(135deg, transparent 0 46px, rgba(28, 23, 19, 0.05) 46px 48px);
}
.hero__rail {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 44px;
  border-right: 1px solid var(--line-ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__rail span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--tan);
  white-space: nowrap;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero__title {
  font-size: clamp(3.1rem, 7.5vw, 5.8rem);
  letter-spacing: 0.005em;
  margin-bottom: 0.35em;
}
.hero__title-accent {
  color: var(--rust);
  position: relative;
  white-space: nowrap;
}
.hero__title-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.04em;
  height: 0.085em;
  background: var(--ink);
  opacity: 0.9;
}
.hero__lede {
  font-size: clamp(1.08rem, 1.6vw, 1.22rem);
  max-width: 34em;
  color: var(--ink-soft);
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.7rem 0 1.4rem;
}
.hero__proof {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 0;
}
.stars {
  color: var(--rust);
  letter-spacing: 0.1em;
  margin-right: 0.5rem;
}
.star-part {
  background: linear-gradient(90deg, var(--rust) 60%, var(--line) 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stars--lg { font-size: 1.6rem; display: block; margin: 0.2rem 0 0.4rem; }

/* Work-order ticket */
.ticket {
  position: relative;
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--ink);
  max-width: 380px;
  justify-self: end;
  width: 100%;
}
.ticket__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 1.2rem;
  background: var(--ink);
  color: var(--paper);
}
.ticket__no {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e8a17e;
}
.ticket__shop {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.ticket__perf {
  border-top: 2px dashed var(--line-ink);
  margin: 0 0.8rem;
}
.ticket__body {
  margin: 0;
  padding: 1.1rem 1.2rem 0.9rem;
}
.ticket__row {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 0.8rem;
  padding: 0.55rem 0;
}
.ticket__row + .ticket__row { border-top: 1px dotted var(--line-ink); }
.ticket__row dt {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tan);
  padding-top: 0.2em;
}
.ticket__row dd {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
}
.ticket__stamp {
  position: absolute;
  top: 4.2rem;
  right: -0.9rem;
  transform: rotate(11deg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--rust);
  border: 3px double var(--rust);
  border-radius: 4px;
  padding: 0.45rem 0.6rem;
  opacity: 0.82;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cfilter id='r'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.5' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.9 0.18'/%3E%3C/filter%3E%3Crect width='80' height='80' fill='%23fff' filter='url(%23r)'/%3E%3C/svg%3E");
}
.ticket__cta {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--rust-deep);
  border-top: 2px dashed var(--line-ink);
  margin: 0 0.8rem;
  padding: 0.85rem 0;
}
.ticket__cta:hover { color: var(--rust); }

/* ---------- Hazard divider ---------- */
.hazard {
  height: 12px;
  background: repeating-linear-gradient(
    135deg,
    var(--ink) 0 16px,
    var(--rust) 16px 32px
  );
}

/* ---------- Tow strip ---------- */
.tow {
  background: var(--rust);
  color: #fff7ea;
}
.tow__inner {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 1.3rem 0;
}
.tow__icon { width: 64px; flex: none; }
.tow__text {
  margin: 0;
  flex: 1;
  font-size: 1.08rem;
  line-height: 1.45;
}
.tow__text strong {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  margin-right: 0.3rem;
}
.tow .btn--paper { flex: none; }

/* ---------- Service board ---------- */
.services {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.services h2 { color: var(--paper); }
.services .section-head__sub { color: rgba(244, 238, 225, 0.72); }

.board {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(244, 238, 225, 0.2);
}
.board__row {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  padding: 1.25rem 0.4rem;
  border-bottom: 1px solid rgba(244, 238, 225, 0.2);
  transition: transform 0.18s ease, background-color 0.18s ease;
}
.board__row:hover {
  background: rgba(244, 238, 225, 0.045);
  transform: translateX(6px);
}
.board__no {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #e8a17e;
  flex: none;
  width: 2em;
}
.board__main { max-width: 30em; }
.board__main h3 { margin-bottom: 0.25rem; color: var(--paper); }
.board__main p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(244, 238, 225, 0.66);
  line-height: 1.5;
}
.board__leader {
  flex: 1;
  border-bottom: 2px dotted rgba(244, 238, 225, 0.3);
  transform: translateY(-0.45em);
  min-width: 2rem;
}
.board__price {
  flex: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: #e8a17e;
  white-space: nowrap;
}
.board__price:hover { color: #fff; }
.board__row--tow .board__price {
  color: var(--ink);
  background: #e8a17e;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius);
}
.board__row--tow .board__price:hover { background: #fff; color: var(--rust-deep); }
.board__note {
  margin-top: 1.8rem;
  font-size: 0.98rem;
  color: rgba(244, 238, 225, 0.72);
}
.board__note a { color: #e8a17e; }

/* ---------- Why ---------- */
.why { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.why-card {
  position: relative;
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem 1.4rem;
  box-shadow: 5px 5px 0 var(--line);
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}
.why-card:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--rust); }
.why-card__index {
  position: absolute;
  top: -0.85rem;
  left: 1.2rem;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.8rem;
  background: var(--ink);
  color: var(--paper);
  padding: 0.15rem 0.55rem;
  letter-spacing: 0.1em;
}
.why-card h3 { margin-top: 0.4rem; }
.why-card p { margin: 0; font-size: 0.98rem; color: var(--ink-soft); }

/* ---------- Reviews ---------- */
.reviews {
  background: var(--paper-deep);
  border-block: 2px solid var(--ink);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}
.reviews__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.reviews__big {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(5.5rem, 11vw, 8.5rem);
  line-height: 0.9;
  margin: 0;
  color: var(--ink);
}
.reviews__count {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 0.2rem;
}
.reviews__note {
  font-size: 0.88rem;
  color: var(--tan);
  margin: 0;
  max-width: 18em;
}
.reviews__quotes {
  display: grid;
  gap: 1.1rem;
}
.quote {
  margin: 0;
  background: var(--card);
  border-left: 4px solid var(--rust);
  padding: 1.1rem 1.4rem;
  box-shadow: 4px 4px 0 rgba(28, 23, 19, 0.14);
}
.quote blockquote {
  margin: 0 0 0.45rem;
  font-size: 1.12rem;
  font-style: italic;
  line-height: 1.45;
}
.quote figcaption {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tan);
}

/* ---------- Process ---------- */
.process { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  counter-reset: step;
}
.step { position: relative; padding-top: 0.6rem; }
.step__no {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 4.4rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--rust);
  margin-bottom: 0.5rem;
}
.step h3 { margin-bottom: 0.4rem; }
.step p { margin: 0; font-size: 0.98rem; color: var(--ink-soft); max-width: 26em; }
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2.4rem;
  right: -1.6rem;
  width: 1.4rem;
  border-top: 2px dashed var(--tan);
}

/* ---------- Visit ---------- */
.visit {
  background: var(--paper-deep);
  border-top: 2px solid var(--ink);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.visit__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.visit__address {
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.25;
  margin-bottom: 1.4rem;
}
.hours {
  width: 100%;
  max-width: 360px;
  border-collapse: collapse;
  font-size: 1rem;
  margin-bottom: 1.6rem;
}
.hours th, .hours td {
  text-align: left;
  padding: 0.55rem 0.2rem;
  border-bottom: 1px dotted var(--line-ink);
}
.hours th {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tan);
}
.hours td { text-align: right; font-weight: 500; }
.hours tr.is-today th, .hours tr.is-today td { color: var(--rust-deep); font-weight: 600; }
.hours tr.is-today th::after { content: " ← today"; letter-spacing: 0; text-transform: none; }
.visit__ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 1.4rem; }
.visit__area { font-size: 0.92rem; color: var(--tan); max-width: 30em; }

.visit__right { display: grid; gap: 1.6rem; }
.map {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 6px 6px 0 var(--line);
  overflow: hidden;
  background: var(--card);
}
.map iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
  filter: grayscale(0.85) contrast(1.04) sepia(0.12);
}

.request {
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 6px 6px 0 var(--line);
  padding: 1.6rem 1.5rem 1.4rem;
}
.request h3 { margin-bottom: 0.3rem; }
.request__sub { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 1.2rem; }
.request__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}
.request__full { grid-column: 1 / -1; }
.request label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tan);
}
.request input,
.request textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line-ink);
  border-radius: var(--radius);
  padding: 0.6rem 0.7rem;
  resize: vertical;
}
.request input:focus,
.request textarea:focus {
  outline: 2px solid var(--rust);
  outline-offset: 0;
  border-color: var(--rust);
}
.request__status {
  margin: 0.8rem 0 0;
  font-weight: 600;
  color: var(--rust-deep);
  min-height: 1.4em;
}
.request__demo-note {
  margin: 0.4rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tan);
}

/* ---------- Final CTA ---------- */
.final {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
  background-image: repeating-linear-gradient(135deg, transparent 0 46px, rgba(244, 238, 225, 0.04) 46px 48px);
}
.final__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.final__title {
  font-size: clamp(3rem, 8vw, 6rem);
  margin: 0;
  color: var(--paper);
}
.final__side p {
  font-size: 1.15rem;
  color: rgba(244, 238, 225, 0.78);
}

/* ---------- FAQ ---------- */
.faq { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.faq__list { display: grid; gap: 0.8rem; }
.faq__item {
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 1rem 1.3rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 1.3rem;
  color: var(--rust);
  flex: none;
  transition: transform 0.2s ease;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item[open] summary { border-bottom: 1px dotted var(--line-ink); }
.faq__item p {
  margin: 0;
  padding: 1rem 1.3rem 1.2rem;
  font-size: 0.98rem;
  color: var(--ink-soft);
}
.faq__item a { color: var(--rust-deep); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 3rem 0 1.5rem;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(244, 238, 225, 0.18);
}
.site-footer__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
}
.site-footer__sub { font-size: 0.9rem; color: rgba(244, 238, 225, 0.6); margin: 0; max-width: 24em; }
.site-footer__label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e8a17e;
  margin-bottom: 0.6rem;
}
.site-footer__col p { font-size: 0.95rem; margin-bottom: 0.5rem; color: rgba(244, 238, 225, 0.85); }
.site-footer__col a { color: var(--paper); text-decoration-color: rgba(244, 238, 225, 0.4); }
.site-footer__col a:hover { color: #e8a17e; }
.site-footer__phone {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.3rem;
}
.site-footer__legal {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: rgba(244, 238, 225, 0.5);
}
.site-footer__legal p { margin: 0; }

/* ---------- Mobile call bar ---------- */
.callbar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: var(--ink);
  border-top: 2px solid var(--rust);
  padding: 0.6rem 0.8rem calc(0.6rem + env(safe-area-inset-bottom));
  gap: 0.7rem;
}
.callbar a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 0.7rem 0.5rem;
  border-radius: var(--radius);
}
.callbar svg { width: 1em; height: 1em; }
.callbar__call { background: var(--rust); color: #fff7ea; }
.callbar__dir {
  background: transparent;
  color: var(--paper);
  border: 1.5px solid rgba(244, 238, 225, 0.5);
  flex: 0.6;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .board__row, .why-card { transition: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1000px) {
  .hero__inner { grid-template-columns: 1fr; }
  .ticket { justify-self: start; margin-top: 0.8rem; }
  .why__grid { grid-template-columns: 1fr; max-width: 560px; }
  .steps { grid-template-columns: 1fr; gap: 2rem; max-width: 560px; }
  .step:not(:last-child)::after { display: none; }
  .visit__inner { grid-template-columns: 1fr; }
  .final__inner { grid-template-columns: 1fr; }
  .reviews__inner { grid-template-columns: 1fr; gap: 2rem; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  body { padding-bottom: 72px; } /* room for callbar */
  html { scroll-padding-top: 76px; }

  .util-strip__address,
  .util-strip__hours { display: none; }

  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 2px solid var(--ink);
    padding: 0.4rem 1.25rem 1.1rem;
  }
  .site-nav.is-open { display: flex; }
  .site-nav > a:not(.btn) {
    padding: 0.85rem 0;
    border-bottom: 1px dotted var(--line-ink);
    font-size: 1.25rem;
  }
  .btn--nav { margin-top: 0.9rem; justify-content: center; }

  .hero { padding-top: 2.4rem; }
  .hero__rail { display: none; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .ticket { max-width: 100%; }
  .ticket__stamp { right: 0.6rem; }

  .tow__inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .tow .btn--paper { width: 100%; justify-content: center; }

  .board__row {
    display: grid;
    grid-template-columns: 2.2em 1fr;
    row-gap: 0.7rem;
    align-items: baseline;
  }
  .board__no { width: auto; }
  .board__leader { display: none; }
  .board__price { grid-column: 2; justify-self: start; }

  .request__grid { grid-template-columns: 1fr; }
  .request .btn { width: 100%; justify-content: center; }
  .visit__ctas .btn { flex: 1; justify-content: center; }

  .final__side .btn { width: 100%; justify-content: center; }

  .site-footer__inner { grid-template-columns: 1fr; gap: 1.6rem; }
  .site-footer__legal { flex-direction: column; }

  .callbar { display: flex; }
}

@media (max-width: 380px) {
  .brand__name { font-size: 1.1rem; }
  .brand__tag { display: none; }
}
