/* Refit Rigs — designed layouts (replace overlay). Brand red #E10600. */

:root {
  --g-red: #e10600;
  --g-red-dark: #b80500;
  --g-ink: #161311;
  --g-paper: #f3efe8;
  --g-cream: #fffdf8;
  --g-muted: #6e675f;
  --g-line: #d4cdc2;
  --g-dark: #161311;
  --g-font: "Archivo", ui-sans-serif, system-ui, sans-serif;
  --g-mono: "IBM Plex Mono", ui-monospace, monospace;
  --g-max: 72rem;
}

body.site {
  background: var(--g-paper);
  color: var(--g-ink);
  font-family: var(--g-font);
  margin: 0;
}
body.site a { color: var(--g-red); }
body.site a:hover { text-decoration: underline; }

.g-wrap { max-width: var(--g-max); margin: 0 auto; padding: 0 1.5rem; }

/* Header */
.site-redline { height: 4px; width: 100%; background: var(--g-red); }
.site-top {
  background: rgb(243 239 232 / 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--g-line);
  position: sticky;
  top: 0;
  z-index: 30;
}
.site-top-inner {
  max-width: var(--g-max);
  margin: 0 auto;
  padding: 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-logo { height: 48px; width: auto; display: block; }
.site-nav { display: flex; flex-wrap: wrap; align-items: center; gap: 0.25rem 1rem; }
.site-nav a {
  color: #2c2622;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0.01em;
}
.site-nav a:hover, .site-nav a.on { color: var(--g-red); text-decoration: none; }
.site-nav-cta {
  background: var(--g-red) !important;
  color: var(--g-cream) !important;
  padding: 0.55rem 0.95rem !important;
  border-radius: 8px;
}
.site-nav-muted { color: #948c83 !important; }
.site-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.site-nav-toggle span { display: block; width: 22px; height: 2px; background: #111; }

/* Hero */
.site-hero-bleed {
  position: relative;
  min-height: 88svh;
  display: flex;
  align-items: flex-end;
  background: var(--g-dark);
  overflow: hidden;
  padding: 0;
}
.site-hero-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.site-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 768px) {
  .site-hero-video {
    left: 50%;
    width: auto;
    max-width: none;
    transform: translateX(-50%);
    object-fit: contain;
  }
}
.site-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(22 19 17 / 0.15) 0%, rgb(22 19 17 / 0.72) 100%);
}
.site-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--g-max);
  margin: 0 auto;
  padding: 6rem 1.5rem 3.25rem;
  width: 100%;
  text-align: left;
}
.site-hero-content h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0 0 1rem;
  text-shadow: none;
}
.site-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--g-red);
  margin: 0 0 0.75rem;
}
.site-eyebrow-light { color: rgba(255,253,248,0.72); }
.site-hero-sub {
  color: rgba(255,253,248,0.88);
  font-size: 1.05rem;
  max-width: 36rem;
  line-height: 1.5;
  margin: 0 0 1.5rem;
}
.site-hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.btn, .site-btn-hero, .site-btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none !important;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}
.site-btn-hero, .btn-red, a.btn:not(.btn-ghost):not(.site-btn-hero-secondary),
button.btn:not(.btn-ghost):not(.btn-secondary) {
  background: var(--g-red);
  color: var(--g-cream) !important;
}
a.btn.site-btn-hero-secondary, .site-btn-hero-secondary {
  background: var(--g-red) !important;
  color: #fff !important;
}
a.btn.site-btn-hero-secondary:hover {
  background: var(--g-red) !important;
  color: #fff !important;
  filter: brightness(1.08);
}
.btn-ghost {
  background: var(--g-cream) !important;
  color: var(--g-ink) !important;
}

/* Stats strip */
.g-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--g-cream);
  border-bottom: 1px solid var(--g-line);
}
.g-stat {
  padding: 1.35rem 1.25rem;
  border-right: 1px solid var(--g-line);
  text-align: left;
}
.g-stat:last-child { border-right: 0; }
.g-stat strong {
  display: block;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}
.g-stat span { color: var(--g-muted); font-size: 0.88rem; }

/* Sections */
.g-section { padding: 4rem 0; }
.g-section h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 0.6rem;
}
.g-lede { color: var(--g-muted); max-width: 38rem; line-height: 1.55; margin: 0 0 2rem; }

.g-shops { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.g-shop {
  background: var(--g-cream);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgb(22 19 17 / 0.07);
  display: flex;
  flex-direction: column;
}
.g-shop-cover-link { display: block; }
.g-shop-cover { width: 100%; height: 200px; object-fit: cover; object-position: center; display: block; }
.g-shop-gallery {
  background: #111;
  display: flex;
  flex-direction: column;
  min-height: calc(200px + 60px);
}
.g-shop-thumbs {
  display: flex;
  gap: 4px;
  padding: 6px;
  overflow-x: auto;
  min-height: 60px;
  box-sizing: border-box;
}
.g-shop-thumbs-spacer { pointer-events: none; }
.g-shop-thumb {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  flex: 0 0 auto;
  opacity: 0.7;
}
.g-shop-thumb.is-on,
.g-shop-thumb:hover { opacity: 1; }
.g-shop-thumb img { width: 64px; height: 48px; object-fit: cover; display: block; }
.g-fleet-photos {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.g-fleet-photos img { width: 100%; height: auto; display: block; border-radius: 8px; }
.g-fleet-photos.is-single {
  min-height: 22rem;
  background: #111;
  border-radius: 8px;
}
.g-fleet-photos.is-single img {
  width: 100%;
  height: 22rem;
  object-fit: contain;
  object-position: center;
  background: #111;
}
.g-shop-body { padding: 1.15rem 1.2rem 1.35rem; display: flex; flex-direction: column; gap: 0.45rem; flex: 1; }
.g-shop h3 { margin: 0; font-size: 1.2rem; }
.g-shop p { margin: 0; color: #444; font-size: 0.95rem; line-height: 1.45; }
.g-shop-cta {
  margin-top: auto;
  padding-top: 0.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.g-price { margin: 0; padding-top: 0; }
.g-price strong { font-size: 1.2rem; }
.g-term { color: var(--g-muted); font-size: 0.9rem; margin: 0; }

/* Quote on photo */
.g-quote {
  position: relative;
  min-height: 22rem;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.g-quote img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.g-quote-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(22 19 17 / 0.28) 8%, rgb(22 19 17 / 0.88));
}
.g-quote-inner {
  position: relative;
  z-index: 1;
  max-width: var(--g-max);
  margin: 0 auto;
  padding: 3rem 1.5rem;
  color: #fff;
}
.g-quote-inner h2 { color: #fff; margin-bottom: 0.75rem; }
.g-quote-inner blockquote {
  margin: 0 0 1.1rem;
  font-size: 1.45rem;
  line-height: 1.5;
  max-width: 48rem;
  text-shadow: 0 1px 14px rgb(0 0 0 / 0.4);
}
.g-quote-inner cite {
  font-style: normal;
  color: rgba(255,253,248,0.94);
  font-size: 1.12rem;
}

/* Zone cards */
.g-zones {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  justify-content: center;
}
.g-zone {
  background: var(--g-cream);
  border-radius: 12px;
  padding: 1.15rem 1.2rem;
  box-shadow: 0 0 0 1px rgb(22 19 17 / 0.07);
}
.g-zone strong { display: block; font-size: 1.35rem; color: var(--g-red); margin: 0.25rem 0 0.4rem; }
.g-zone p { margin: 0; color: var(--g-muted); font-size: 0.92rem; line-height: 1.4; }

/* Dark CTA */
.g-ready {
  background: var(--g-dark);
  color: var(--g-cream);
  padding: 3.5rem 1.5rem;
  text-align: center;
}
.g-ready h2 { color: #fff; margin: 0 0 0.5rem; }
.g-ready p { color: #b8b2aa; margin: 0 0 1.35rem; }

/* 4-col footer */
.site-foot {
  background: var(--g-dark);
  color: #d8d2ca;
  padding: 3rem 1.5rem 2rem;
}
.g-foot-grid {
  max-width: var(--g-max);
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
}
.site-foot-logo { height: 56px; width: auto; display: block; margin-bottom: 0.75rem; }
.g-foot-grid h3 {
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
}
.g-foot-grid a { color: #d8d2ca; text-decoration: none; display: block; margin: 0 0 0.45rem; font-size: 0.92rem; }
.g-foot-grid a:hover { color: #fff; }
.site-foot-social { display: flex; gap: 0.5rem; margin-top: 0.75rem; }
.site-social-btn { color: #fff !important; display: inline-flex; }
.site-foot-bottom {
  max-width: var(--g-max);
  margin: 0 auto;
  border-top: 1px solid #2c2824;
  padding-top: 1.1rem;
  font-size: 0.82rem;
  color: #948c83;
}

/* Interior pages */
.g-page { padding: 3.25rem 0 4.5rem; }
.g-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  margin: 0 0 0.65rem;
}

/* How: 01/02/03 + photo */
.g-how-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}
.g-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.g-step n, .g-step-n {
  display: block;
  font-family: var(--g-mono);
  color: var(--g-red);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
}
.g-step h3 { margin: 0 0 0.4rem; font-size: 1.15rem; }
.g-step p { margin: 0; color: var(--g-muted); line-height: 1.5; }
.g-how-photo { width: 100%; height: 100%; min-height: 280px; object-fit: cover; border-radius: 14px; }

/* FAQ cream accordion */
.g-faq { max-width: 42rem; }
.g-acc {
  border-top: 1px solid var(--g-line);
}
.g-acc summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 2.2rem 1.1rem 0;
  font-weight: 600;
  font-size: 1.05rem;
  position: relative;
}
.g-acc summary::-webkit-details-marker { display: none; }
.g-acc summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--g-muted);
}
.g-acc[open] summary::after { content: "–"; }
.g-acc p { margin: 0 0 1.1rem; color: var(--g-muted); line-height: 1.55; }

/* Zones table */
.g-table-wrap { overflow-x: auto; border-radius: 12px; box-shadow: 0 0 0 1px rgb(22 19 17 / 0.08); }
.g-table { width: 100%; border-collapse: collapse; background: var(--g-cream); }
.g-table th {
  background: var(--g-dark);
  color: #fff;
  text-align: left;
  padding: 0.85rem 1.1rem;
  font-weight: 500;
  font-size: 0.88rem;
}
.g-table td { padding: 0.9rem 1.1rem; border-top: 1px solid var(--g-line); }
.g-zone-extras { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.25rem; }
.g-zone-extra {
  background: var(--g-cream);
  border-radius: 12px;
  padding: 1.2rem;
  box-shadow: 0 0 0 1px rgb(22 19 17 / 0.07);
}

/* Contact two col */
.g-contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}
.g-phone { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 600; letter-spacing: -0.03em; }
.g-phone a { color: var(--g-ink); text-decoration: none; }
.g-phone a:hover { color: var(--g-red); }
.g-form label { display: block; font-size: 0.85rem; font-weight: 500; margin: 0 0 0.3rem; }
.g-form input, .g-form textarea {
  width: 100%;
  border: 1px solid var(--g-line);
  background: var(--g-cream);
  border-radius: 8px;
  padding: 0.7rem 0.8rem;
  font: inherit;
  margin-bottom: 0.85rem;
  box-sizing: border-box;
}

.g-book-back { margin: 0 0 0.15rem; font-size: 0.92rem; }
.g-book-back a { font-weight: 500; text-decoration: none; }
.g-book-back a:hover { text-decoration: underline; }

/* Book request — same language as fleet / contact */
.g-book {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 1.25rem;
}
.g-book-aside img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 0 1px rgb(22 19 17 / 0.07);
}
.g-book-aside h1 { margin: 0 0 0.45rem; }
.g-book-facts {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--g-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.g-book-facts li { padding: 0.35rem 0; border-top: 1px solid var(--g-line); }
.g-book-facts li:first-child { border-top: 0; }
.g-book-call { margin: 1.15rem 0 0; font-size: 0.95rem; }
.g-book-form {
  background: var(--g-cream);
  border-radius: 14px;
  padding: 1.5rem 1.4rem 1.6rem;
  box-shadow: 0 0 0 1px rgb(22 19 17 / 0.07);
}
.g-book-form input,
.g-book-form textarea {
  background: #fff;
}
.g-book-form-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--g-red);
  font-weight: 600;
  margin: 0 0 1rem;
}
.g-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.g-form-row p { margin: 0 0 0.15rem; }
.g-book-form h2 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: none;
  margin: 0 0 0.5rem;
}
.g-book-form button.btn { width: 100%; margin-top: 0.35rem; }
.g-book-form .facts { margin: 0; display: block; }
.g-book-form .facts div { padding: 0.55rem 0; border-top: 1px solid var(--g-line); }
.g-book-form .facts div:first-child { border-top: 0; }
@media (max-width: 800px) {
  .g-book, .g-form-row { grid-template-columns: 1fr; }
  .g-book-aside img { height: 200px; }
}

/* Book pages still use site-* cards */
.site-section { max-width: var(--g-max); margin: 0 auto; padding: 2.5rem 1.5rem; }
.site-page-hero { max-width: var(--g-max); margin: 0 auto; padding: 2.5rem 1.5rem 0.25rem; }
.site-page-hero h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin: 0 0 0.5rem; }
.site-lede { color: var(--g-muted); max-width: 36rem; }
.site-product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.15rem; }
.site-product-card {
  background: var(--g-cream);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgb(22 19 17 / 0.07);
}
.site-product-img img { width: 100%; height: 180px; object-fit: cover; display: block; }
.site-product-body { padding: 1.15rem; }
.site-product-body h3 { margin: 0 0 0.4rem; }

/* Kill leftover overlay slabs if any template still references them */
.site-faq-band, .site-avail-bar, .site-hero-avail { display: none !important; }

/* Briefing (ops) */
.g-brief-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--g-red);
  font-weight: 600;
  margin: 0 0 0.35rem;
}
.g-quick {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
  margin: 1.25rem 0 1.5rem;
}
.g-quick a {
  background: var(--g-cream);
  color: var(--g-ink);
  text-decoration: none;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font-weight: 500;
  box-shadow: 0 0 0 1px rgb(22 19 17 / 0.07);
}
.g-quick a:hover { color: var(--g-red); }
.g-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.g-tile {
  background: var(--g-cream);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  box-shadow: 0 0 0 1px rgb(22 19 17 / 0.07);
}
.g-tile strong { display: block; font-size: 1.75rem; letter-spacing: -0.03em; }
.g-tile span { color: var(--g-muted); font-size: 0.85rem; }
.g-rtable { width: 100%; border-collapse: collapse; background: var(--g-cream); border-radius: 12px; overflow: hidden; }
.g-rtable th {
  text-align: left;
  padding: 0.7rem 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--g-muted);
  border-bottom: 1px solid var(--g-line);
}
.g-rtable td { padding: 0.8rem 0.9rem; border-bottom: 1px solid #eee8df; }
.g-rtable a { color: var(--g-ink); font-weight: 600; text-decoration: none; }

@media (max-width: 900px) {
  .g-stats, .g-shops, .g-steps, .g-how-grid, .g-contact, .g-foot-grid, .g-quick, .g-tiles, .g-zone-extras {
    grid-template-columns: 1fr 1fr;
  }
  .g-zones { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
  .site-nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--g-paper);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 1rem;
    border-bottom: 1px solid var(--g-line);
  }
  .site-nav.open { display: flex; }
  .site-top-inner { position: relative; }
  .g-stats, .g-shops, .g-zones, .g-steps, .g-how-grid, .g-contact, .g-foot-grid, .g-quick, .g-tiles, .g-zone-extras {
    grid-template-columns: 1fr;
  }
  .g-stat { border-right: 0; border-bottom: 1px solid var(--g-line); }
}
