/* ================================================================
   Felt Studios LLC — Shared Stylesheet (Dark Edition)
   https://feltxstudios.com
   ================================================================ */

/* Google Fonts loaded in each HTML <head> */

:root {
  /* ── Dark palette ── */
  --bg:        #0C0C0E;   /* page ground */
  --bg-2:      #141417;   /* nav, footer */
  --bg-3:      #1C1C22;   /* cards, panels */
  --bg-4:      #26262E;   /* hover states, inputs */
  --bg-5:      #2E2E38;   /* input focus, borders */

  --text:      #F0EFec;   /* primary */
  --text-2:    #9A9AAA;   /* secondary */
  --text-3:    #5A5A6A;   /* muted */

  --accent:    #FFC300;   /* brand yellow */
  --accent-dk: #E8B300;   /* hover darken */
  --accent-dim: rgba(255,195,0,.12);

  --rule:      #252530;   /* dividers */
  --rule-2:    #1C1C24;

  --overlay:   rgba(0,0,0,.55);
  --white:     #FFF;

  /* ── Typography ── */
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
  --sans: 'IBM Plex Sans', system-ui, sans-serif;
  --disp: 'Archivo', system-ui, sans-serif;

  /* ── Shape ── */
  --radius:   4px;
  --radius-lg: 8px;
  --shadow:   0 2px 16px rgba(0,0,0,.5);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.6);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  background: var(--bg); color: var(--text);
  font-family: var(--sans); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a     { color: inherit; }
img   { max-width: 100%; display: block; }

/* ── Layout ── */
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* ── Accent stripe ── */
.stripe { height: 3px; background: var(--accent); }

/* ================================================================
   NAV / HEADER
   ================================================================ */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(12,12,14,.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 16px 28px; max-width: 1160px; margin: 0 auto; flex-wrap: wrap;
}
.brand {
  font-family: var(--disp); font-weight: 800; letter-spacing: -.02em;
  font-size: 18px; text-decoration: none; line-height: 1; color: var(--text);
}
.brand span {
  display: block; font-family: var(--mono); font-weight: 400;
  font-size: 9px; letter-spacing: .2em; color: var(--accent); margin-top: 4px;
  text-transform: uppercase;
}
.nav-links { display: flex; gap: 2px; list-style: none; flex-wrap: wrap; }
.nav-links a {
  display: block; color: var(--text-2);
  font-family: var(--sans); font-size: 13.5px; font-weight: 500;
  padding: 8px 13px; cursor: pointer;
  border-radius: var(--radius); text-decoration: none;
  transition: color .15s, background .15s; letter-spacing: .01em;
}
.nav-links a:hover             { color: var(--text); background: var(--bg-4); }
.nav-links a[aria-current="page"] {
  color: var(--accent); background: var(--accent-dim); font-weight: 600;
}
.nav-links a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ================================================================
   HERO — full viewport, photo-ready
   ================================================================ */
.hero {
  position: relative;
  min-height: 100dvh; min-height: 100vh;
  display: flex; align-items: flex-end;
  padding-bottom: 72px;
  overflow: hidden;

  /* Cinematic placeholder — swap for:
     background-image: url('hero.jpg');
     background-size: cover; background-position: center; */
  background:
    linear-gradient(170deg,
      rgba(0,0,0,.72) 0%,
      rgba(0,0,0,.38) 45%,
      rgba(0,0,0,.78) 100%),
    linear-gradient(135deg,
      #0a0a0d 0%, #18181f 30%, #0f0f14 55%, #1a1510 80%, #0c0c0e 100%);
}

/* Grain texture overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 256px;
  pointer-events: none;
}

/* Photo credit slot — visible when a bg photo is loaded */
.hero-photo-credit {
  position: absolute; bottom: 14px; right: 24px; z-index: 10;
  font-family: var(--mono); font-size: 10px; letter-spacing: .1em;
  color: rgba(255,255,255,.3); text-transform: uppercase;
}

.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 28px;
}
.hero .eyebrow {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--accent);
  display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
}
.hero .eyebrow::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--accent);
}
.hero h1 {
  font-family: var(--disp); font-weight: 800;
  font-size: clamp(42px, 7vw, 86px); line-height: .96;
  letter-spacing: -.035em; margin-bottom: 22px; max-width: 14ch; color: var(--white);
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero .lede {
  font-size: clamp(15px, 1.8vw, 18px); max-width: 50ch;
  color: rgba(240,239,236,.65); line-height: 1.65; margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero stat bar */
.hero-stats {
  display: flex; flex-wrap: wrap;
  margin-top: 60px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  gap: 0;
}
.hero-stat {
  flex: 1 1 160px; padding: 0 24px 0 0;
  border-right: 1px solid rgba(255,255,255,.08);
}
.hero-stat:last-child { border-right: 0; }
.hero-stat dt {
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 5px;
}
.hero-stat dd {
  font-family: var(--disp); font-weight: 700; font-size: 16px; color: var(--text);
}

/* ================================================================
   SECTIONS
   ================================================================ */
section { padding: 88px 0; }
section.tight { padding: 64px 0; }
section.alt   { background: var(--bg-2); }
section.dark  { background: var(--bg); }

.sec-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--accent);
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.sec-label::before {
  content: ''; display: block; width: 20px; height: 1px; background: var(--accent);
}
.sec-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; margin-bottom: 40px;
}
.sec-head h2 {
  font-family: var(--disp); font-weight: 800;
  font-size: clamp(26px, 4vw, 42px); letter-spacing: -.025em; line-height: 1.05;
  color: var(--text);
}
.sec-head .see-all {
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-2); text-decoration: none;
  white-space: nowrap; transition: color .15s;
}
.sec-head .see-all:hover { color: var(--accent); }

/* ================================================================
   PHOTO CATEGORY CARDS
   ================================================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cat-card {
  display: block; text-decoration: none; position: relative;
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--bg-3);
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cat-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.cat-img {
  aspect-ratio: 4 / 3;
  position: relative; overflow: hidden;
  background: var(--bg-4);
}
/* Photo placeholder — gradient that reads as moody gear shot */
.cat-img.grip-ph    { background: linear-gradient(150deg,#181820 0%,#252530 40%,#121218 100%); }
.cat-img.light-ph   { background: linear-gradient(150deg,#1a1408 0%,#2a2010 40%,#181410 100%); }
.cat-img.cart-ph    { background: linear-gradient(150deg,#101018 0%,#1e1e28 40%,#0e0e16 100%); }
.cat-img.supp-ph    { background: linear-gradient(150deg,#121214 0%,#1c1c20 40%,#0e0e10 100%); }

/* Photo placeholder label */
.cat-img::before {
  content: attr(data-ph);
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.18);
  z-index: 1;
}
/* Gradient overlay darkening the bottom for legibility */
.cat-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.18) 55%, transparent 100%);
  z-index: 2;
  transition: opacity .3s;
}
.cat-card:hover .cat-img::after { opacity: .7; }

/* Hover "scale" on an inner pseudo-div won't work — use transform on .cat-img itself via wrapper */
.cat-img-inner {
  position: absolute; inset: 0;
  background: inherit;
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.cat-card:hover .cat-img-inner { transform: scale(1.05); }

.cat-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 20px 22px; z-index: 3;
}
.cat-tag {
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 5px; display: block;
}
.cat-body h3 {
  font-family: var(--disp); font-weight: 700; font-size: 19px;
  letter-spacing: -.015em; color: var(--white); margin-bottom: 3px;
}
.cat-body p {
  font-size: 13px; color: rgba(240,239,236,.6);
  overflow: hidden; max-height: 0;
  transition: max-height .3s, opacity .3s;
  opacity: 0; line-height: 1.5;
}
.cat-card:hover .cat-body p { max-height: 80px; opacity: 1; }
.cat-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent);
  margin-top: 10px; opacity: 0;
  transform: translateX(-6px); transition: opacity .25s, transform .25s;
}
.cat-card:hover .cat-arrow { opacity: 1; transform: translateX(0); }

/* ================================================================
   INFO CARDS (How it works, etc.)
   ================================================================ */
.grid { display: grid; gap: 20px; }
.g3   { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.g2   { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.g4   { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

.card {
  background: var(--bg-3); border: 1px solid var(--rule);
  padding: 28px; border-radius: var(--radius-lg);
  transition: border-color .2s;
}
.card:hover { border-color: var(--bg-5); }
.card h3  { font-family: var(--disp); font-weight: 700; font-size: 18px; letter-spacing: -.012em; margin-bottom: 10px; color: var(--text); }
.card p   { font-size: 14px; color: var(--text-2); line-height: 1.6; }
.card .num {
  font-family: var(--mono); font-size: 10px; letter-spacing: .16em;
  color: var(--accent); display: block; margin-bottom: 12px; text-transform: uppercase;
}
.card-icon {
  width: 40px; height: 40px; stroke: var(--accent); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 16px;
}

/* Step number badge */
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent-dim); border: 1px solid rgba(255,195,0,.25);
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  color: var(--accent); margin-bottom: 16px; flex-shrink: 0;
}

/* ================================================================
   STAT ROW
   ================================================================ */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  border: 1px solid var(--rule); border-radius: var(--radius-lg);
  overflow: hidden; margin: 48px 0;
}
.stat {
  padding: 32px 24px; text-align: center;
  border-right: 1px solid var(--rule);
  background: var(--bg-3);
}
.stat:last-child { border-right: 0; }
.stat .big {
  font-family: var(--disp); font-weight: 800; font-size: 38px;
  letter-spacing: -.03em; color: var(--accent); line-height: 1; display: block;
}
.stat p {
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-3); margin-top: 6px;
}

/* ================================================================
   SERVICE AREA
   ================================================================ */
.city-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(175px, 1fr)); gap: 12px;
}
.city-card {
  background: var(--bg-3); border: 1px solid var(--rule);
  padding: 18px 18px; border-radius: var(--radius);
  transition: border-color .2s;
}
.city-card:hover { border-color: var(--bg-5); }
.city-card .city {
  font-family: var(--disp); font-weight: 600; font-size: 15px; color: var(--text);
}
.city-card .dist {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em;
  color: var(--text-3); margin-top: 4px; display: block; text-transform: uppercase;
}

/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.faq-list {
  border: 1px solid var(--rule); border-radius: var(--radius-lg); overflow: hidden;
  background: var(--bg-3);
}
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item:last-child { border-bottom: 0; }
.faq-q {
  width: 100%; background: transparent; border: 0; text-align: left;
  padding: 20px 24px; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: var(--disp); font-weight: 600; font-size: 15.5px; color: var(--text);
  transition: background .12s;
}
.faq-q:hover { background: var(--bg-4); }
.faq-q[aria-expanded="true"] { color: var(--accent); background: var(--bg-4); }
.faq-q svg {
  width: 18px; height: 18px; flex-shrink: 0; stroke: var(--text-3);
  fill: none; stroke-width: 2; stroke-linecap: round; transition: transform .2s;
}
.faq-q[aria-expanded="true"] svg { transform: rotate(45deg); stroke: var(--accent); }
.faq-a {
  display: none; padding: 0 24px 20px;
  font-size: 14px; color: var(--text-2); line-height: 1.65;
}
.faq-a.open { display: block; }
.faq-a a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

/* ================================================================
   RATES TABLE
   ================================================================ */
.terms-wrap {
  background: var(--bg-3); border: 1px solid var(--rule);
  border-radius: var(--radius-lg); overflow: hidden;
}
table.terms { width: 100%; border-collapse: collapse; font-size: 14px; }
table.terms th {
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; text-align: left; color: var(--text-3);
  padding: 14px 20px; border-bottom: 1px solid var(--rule-2);
  vertical-align: top; width: 28%; background: var(--bg-4);
}
table.terms td {
  padding: 14px 20px; border-bottom: 1px solid var(--rule-2);
  color: var(--text-2); vertical-align: top;
}
table.terms tr:last-child th,
table.terms tr:last-child td { border-bottom: 0; }
table.terms strong { color: var(--text); }

/* ================================================================
   CTA BAND
   ================================================================ */
.cta-band {
  background: var(--accent); padding: 72px 0;
  position: relative; overflow: hidden;
}
/* Subtle grid pattern on the CTA band */
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.cta-band .wrap { position: relative; }
.cta-band h2 {
  font-family: var(--disp); font-weight: 800;
  font-size: clamp(28px, 4.5vw, 52px); letter-spacing: -.028em; line-height: 1.02;
  color: var(--bg); margin-bottom: 14px;
}
.cta-band p { font-size: 17px; max-width: 52ch; margin-bottom: 34px; color: rgba(12,12,14,.7); }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ================================================================
   FORMS
   ================================================================ */
.form-wrap {
  background: var(--bg-3); border: 1px solid var(--rule);
  padding: clamp(24px, 4vw, 42px); border-radius: var(--radius-lg);
}
fieldset { border: 0; margin-bottom: 30px; }
legend {
  font-family: var(--mono); font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--accent); padding-bottom: 10px;
  border-bottom: 1px solid var(--rule); width: 100%; margin-bottom: 18px;
}
.fields { display: grid; gap: 15px; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }
.f { display: flex; flex-direction: column; gap: 6px; }
.f.wide { grid-column: 1 / -1; }
label {
  font-family: var(--mono); font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-3);
}
input, select, textarea {
  font-family: var(--sans); font-size: 14.5px; padding: 11px 14px;
  border: 1px solid var(--rule); background: var(--bg-4);
  border-radius: var(--radius); color: var(--text); width: 100%;
  transition: border-color .15s, background .15s;
}
input::placeholder, textarea::placeholder { color: var(--text-3); }
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--accent);
  background: var(--bg-5); box-shadow: 0 0 0 3px var(--accent-dim);
}
textarea { min-height: 100px; resize: vertical; }
input[type="file"] { padding: 9px; font-family: var(--mono); font-size: 12px; }
.hint { font-size: 12.5px; color: var(--text-3); line-height: 1.5; }
.check { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; line-height: 1.5; }
.check input {
  width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px;
  accent-color: var(--accent); background: var(--bg-4);
}
.check label {
  font-family: var(--sans); font-size: 13.5px; letter-spacing: 0;
  text-transform: none; color: var(--text-2);
}

/* ================================================================
   NOTICE
   ================================================================ */
.notice {
  background: rgba(255,195,0,.08); border-left: 3px solid var(--accent);
  padding: 14px 18px; font-size: 13.5px; line-height: 1.55; margin-bottom: 26px;
  border-radius: 0 var(--radius) var(--radius) 0; color: var(--text-2);
}
.notice strong { color: var(--text); font-weight: 600; }
.notice a { color: var(--accent); }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--bg);
  border: 0; font-family: var(--mono); font-weight: 600;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  padding: 15px 28px; cursor: pointer; border-radius: var(--radius);
  text-decoration: none; transition: background .15s, transform .12s;
  line-height: 1;
}
.btn:hover { background: var(--accent-dk); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.btn.dark {
  background: var(--bg-3); color: var(--text);
  border: 1px solid var(--rule);
}
.btn.dark:hover { background: var(--bg-4); border-color: var(--bg-5); }

.btn.ghost {
  background: transparent; color: var(--text-2);
  border: 1px solid var(--rule);
}
.btn.ghost:hover { background: var(--bg-4); color: var(--text); }

.btn.white {
  background: var(--bg); color: var(--text);
}
.btn.white:hover { background: var(--bg-2); }

.btn.outline-accent {
  background: transparent; color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn.outline-accent:hover { background: var(--accent); color: var(--bg); }

/* Large hero button */
.btn.lg { padding: 17px 34px; font-size: 13px; }

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  background: var(--bg-2); padding: 48px 0 52px;
  border-bottom: 1px solid var(--rule);
}
.page-hero h1 {
  font-family: var(--disp); font-weight: 800;
  font-size: clamp(30px, 5vw, 54px); letter-spacing: -.028em; line-height: 1.02;
  color: var(--text); margin: 8px 0 10px;
}
.page-hero .sub { font-size: 15px; color: var(--text-2); max-width: 58ch; line-height: 1.6; }
.page-hero .sub a { color: var(--accent); text-decoration: none; }
.page-hero .sub a:hover { text-decoration: underline; }

/* ================================================================
   BREADCRUMB
   ================================================================ */
.breadcrumb {
  font-family: var(--mono); font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-3);
  display: flex; align-items: center; gap: 8px;
}
.breadcrumb a { color: var(--text-3); text-decoration: none; transition: color .15s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--rule); }

/* ================================================================
   GEAR SHEET (gear.html)
   ================================================================ */
.sheet { background: var(--bg-3); border: 1px solid var(--rule); border-radius: var(--radius-lg); overflow: hidden; }
.sheet-cat {
  background: var(--bg-4); color: var(--text);
  font-family: var(--mono); font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase; padding: 11px 18px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--rule);
}
.sheet-cat svg {
  width: 20px; height: 20px; flex-shrink: 0; stroke: var(--accent);
  fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.cat-tiles {
  display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); margin-bottom: 32px;
}
.tile {
  background: var(--bg-3); border: 1px solid var(--rule);
  padding: 16px 12px; text-align: center; cursor: pointer;
  transition: border-color .15s, background .15s; border-radius: var(--radius);
}
.tile:hover { border-color: var(--accent); background: var(--bg-4); }
.tile svg {
  width: 36px; height: 36px; stroke: var(--text-2); fill: none;
  stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 8px;
  transition: stroke .15s;
}
.tile:hover svg { stroke: var(--accent); }
.tile span {
  display: block; font-family: var(--mono); font-size: 9px;
  letter-spacing: .11em; text-transform: uppercase; color: var(--text-3); line-height: 1.4;
}
.row {
  display: grid; grid-template-columns: 52px 1fr auto;
  gap: 14px; align-items: center; padding: 11px 18px;
  border-bottom: 1px solid var(--rule-2); cursor: pointer; transition: background .12s;
}
.row:hover   { background: var(--bg-4); }
.row.on      { background: rgba(255,195,0,.07); }
.row:last-child { border-bottom: 0; }
.qty  { font-family: var(--mono); font-size: 12.5px; font-weight: 600; text-align: right; color: var(--text-3); }
.row.on .qty { color: var(--accent); }
.item { font-size: 14px; line-height: 1.4; color: var(--text); }
.item small  { display: block; color: var(--text-3); font-size: 12px; margin-top: 1px; }
.pick {
  width: 19px; height: 19px; border: 1.5px solid var(--bg-5); border-radius: 3px;
  display: grid; place-items: center; font-size: 11px; color: transparent; flex-shrink: 0;
}
.row.on .pick { background: var(--accent); border-color: var(--accent); color: var(--bg); }

/* Photo slot (gear page) */
.photo-slot {
  aspect-ratio: 4/3;
  background: var(--bg-3); border: 1px dashed var(--rule);
  border-radius: var(--radius-lg);
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-3); text-align: center; padding: 12px;
}

/* Tray */
.tray {
  position: sticky; bottom: 0; background: rgba(12,12,14,.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  color: var(--text); padding: 14px 28px; display: none; z-index: 40;
  border-top: 2px solid var(--accent);
}
.tray.show { display: block; }
.tray-in {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.tray-count { font-family: var(--mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-2); }
.tray-count b { color: var(--accent); font-size: 15px; }

/* ================================================================
   DOWNLOADS
   ================================================================ */
.dl-list { display: grid; gap: 0; }
.dl {
  display: flex; align-items: center; gap: 18px;
  padding: 20px 0; border-bottom: 1px solid var(--rule);
}
.dl:last-child { border-bottom: 0; }
.dl-ic {
  width: 34px; height: 34px; flex-shrink: 0; stroke: var(--accent);
  fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round;
}
.dl-b { flex: 1; min-width: 190px; }
.dl-b h4 { font-family: var(--disp); font-weight: 600; font-size: 15px; margin-bottom: 3px; color: var(--text); }
.dl-b p  { font-size: 13px; color: var(--text-2); line-height: 1.5; }

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: var(--bg-2); color: var(--text-3);
  padding: 56px 0 36px; font-size: 13.5px;
  border-top: 1px solid var(--rule);
}
footer a { color: var(--text-2); text-decoration: none; transition: color .15s; }
footer a:hover { color: var(--accent); }
.fgrid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); margin-bottom: 32px;
}
footer h4 {
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
footer ul { list-style: none; }
footer li { margin-bottom: 6px; }
.foot-bottom {
  border-top: 1px solid var(--rule); padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: 12.5px;
}

/* ================================================================
   CART BADGE (nav)
   ================================================================ */
.cart-btn {
  position: relative; display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .08em;
  color: var(--text-2); text-decoration: none;
  padding: 7px 12px; border-radius: var(--radius);
  transition: color .15s, background .15s;
}
.cart-btn:hover { color: var(--text); background: var(--bg-4); }
.cart-btn svg {
  width: 16px; height: 16px; stroke: currentColor; fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0;
}
.cart-count {
  display: none; background: var(--accent); color: var(--bg);
  font-size: 9px; font-weight: 700; letter-spacing: 0;
  min-width: 17px; height: 17px; border-radius: 999px;
  padding: 0 4px; text-align: center; line-height: 17px; font-family: var(--mono);
}

/* ================================================================
   PACKAGES PAGE — pkg-grid, pkg-card, disc-bar
   ================================================================ */
.pkg-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; align-items: start;
}
.pkg-card {
  background: var(--bg-3); border: 1px solid var(--rule);
  border-radius: var(--radius-lg); padding: 32px;
  position: relative; display: flex; flex-direction: column;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.pkg-card:hover { border-color: var(--bg-5); transform: translateY(-3px); box-shadow: var(--shadow); }
.pkg-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-lg);
}
.pkg-card.featured:hover { transform: translateY(-3px); }
.pkg-tag {
  display: inline-block; align-self: flex-start;
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .18em;
  text-transform: uppercase; font-weight: 600;
  padding: 4px 10px; border-radius: var(--radius); margin-bottom: 14px;
  background: var(--accent); color: var(--bg);
}
.pkg-tag.tier {
  background: transparent; color: var(--accent);
  border: 1px solid rgba(255,195,0,.3);
}
.pkg-card h3 {
  font-family: var(--disp); font-weight: 800; font-size: 22px;
  letter-spacing: -.018em; color: var(--text); margin-bottom: 4px;
}
.pkg-card .best-for { font-size: 12.5px; color: var(--text-2); line-height: 1.5; margin-bottom: 4px; }
.pkg-price { margin-bottom: 16px; }
.pkg-price .day-rate {
  font-family: var(--disp); font-weight: 800; font-size: 42px;
  letter-spacing: -.03em; color: var(--text); line-height: 1;
}
.pkg-price .period {
  font-family: var(--mono); font-size: 11px; color: var(--text-3);
  letter-spacing: .1em; text-transform: uppercase; margin-left: 2px;
}
.pkg-price .week-rate {
  font-family: var(--mono); font-size: 12px; color: var(--text-2);
  margin-top: 6px; display: block;
}
.pkg-includes { list-style: none; margin: 18px 0 26px; flex: 1; }
.pkg-includes li {
  font-size: 13.5px; color: var(--text-2); padding: 5px 0 5px 22px;
  position: relative; border-bottom: 1px solid var(--rule-2); line-height: 1.4;
}
.pkg-includes li:last-child { border-bottom: 0; }
.pkg-includes li::before {
  content: '✓'; position: absolute; left: 0; top: 6px;
  color: var(--accent); font-size: 11px; font-weight: 700;
}
.pkg-includes li.add-on { color: var(--text-3); }
.pkg-includes li.add-on::before { content: '+'; color: var(--text-3); }
.pkg-cta { width: 100%; justify-content: center; margin-top: auto; }

/* Discount bar */
.disc-bar {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--rule); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--bg-3);
}
.disc-tier { padding: 28px 24px; border-right: 1px solid var(--rule); text-align: center; }
.disc-tier:last-child { border-right: 0; }
.disc-tier .disc-pct {
  font-family: var(--disp); font-weight: 800; font-size: 36px;
  color: var(--accent); letter-spacing: -.03em; display: block; line-height: 1;
}
.disc-tier .disc-days {
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-3); display: block; margin-top: 7px;
}
.disc-tier .disc-label { font-size: 13px; color: var(--text-2); margin-top: 8px; display: block; }

/* Compare table */
.compare-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--rule); }
table.compare { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 480px; }
table.compare th, table.compare td {
  padding: 13px 18px; border-bottom: 1px solid var(--rule-2); text-align: center;
}
table.compare thead th {
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent);
  background: var(--bg-4); border-bottom: 1px solid var(--rule);
}
table.compare thead th:first-child { text-align: left; color: var(--text-3); }
table.compare tbody th {
  text-align: left; font-weight: 500; font-family: var(--sans);
  font-size: 14px; color: var(--text-2); background: var(--bg-3);
  letter-spacing: 0; text-transform: none;
}
table.compare tbody td { color: var(--text-2); background: var(--bg-3); }
table.compare tbody tr:last-child th,
table.compare tbody tr:last-child td { border-bottom: 0; }
table.compare .yes { color: var(--accent); font-weight: 600; }
table.compare .no  { color: var(--text-3); }
table.compare .val { color: var(--text); font-weight: 500; }
table.compare tbody tr:hover th,
table.compare tbody tr:hover td { background: var(--bg-4); }

/* ================================================================
   QUOTE PAGE — two-column cart layout
   ================================================================ */
.quote-layout { display: grid; grid-template-columns: 360px 1fr; gap: 40px; align-items: start; }
@media (max-width: 920px) { .quote-layout { grid-template-columns: 1fr; } }

.cart-summary {
  background: var(--bg-3); border: 1px solid var(--rule);
  border-radius: var(--radius-lg); padding: 24px;
  position: sticky; top: 82px;
}
.cart-summary h3 {
  font-family: var(--mono); font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.cart-empty {
  text-align: center; padding: 28px 0; color: var(--text-3); font-size: 13.5px; line-height: 1.6;
}
.cart-empty a { color: var(--accent); text-decoration: none; }
.cart-empty a:hover { text-decoration: underline; }
.cart-item-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid var(--rule-2); font-size: 13.5px; gap: 10px;
}
.cart-item-row:last-child { border-bottom: 0; }
.cart-item-name { color: var(--text); font-weight: 500; line-height: 1.4; flex: 1; }
.cart-item-meta { font-size: 11px; color: var(--text-3); margin-top: 2px; font-family: var(--mono); }
.cart-item-price { color: var(--text-2); white-space: nowrap; font-family: var(--mono); font-size: 13px; }
.cart-remove {
  background: none; border: none; cursor: pointer;
  color: var(--text-3); font-size: 14px; padding: 0 2px; line-height: 1;
  transition: color .15s;
}
.cart-remove:hover { color: #ff5555; }
.days-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-3); display: block; margin: 18px 0 8px;
}
.days-selector { display: flex; gap: 6px; flex-wrap: wrap; }
.day-btn {
  width: 36px; height: 36px; border-radius: var(--radius);
  border: 1px solid var(--rule); background: var(--bg-4);
  color: var(--text-2); font-family: var(--mono); font-size: 13px; font-weight: 500;
  cursor: pointer; transition: border-color .15s, color .15s, background .15s;
}
.day-btn:hover { border-color: var(--accent); color: var(--text); }
.day-btn.active { background: var(--accent); border-color: var(--accent); color: var(--bg); font-weight: 700; }
.cart-totals { margin-top: 16px; border-top: 1px solid var(--rule); padding-top: 14px; }
.cart-total-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 13.5px; padding: 3px 0; color: var(--text-2);
}
.cart-total-row .amount { font-family: var(--mono); }
.cart-total-row.discount { color: var(--accent); }
.cart-total-row.grand {
  font-family: var(--disp); font-weight: 800; font-size: 22px;
  color: var(--text); padding-top: 12px; margin-top: 8px;
  border-top: 1px solid var(--rule);
}
.cart-total-row.grand .amount { font-family: var(--disp); font-weight: 800; color: var(--accent); }
.cart-actions { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.cart-actions .btn { flex: 1; min-width: 110px; font-size: 11px; padding: 10px 12px; }
.steps-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 32px; }
.step-card { background: var(--bg-3); border: 1px solid var(--rule); border-radius: var(--radius-lg); padding: 24px 22px; }
.step-card h4 { font-family: var(--disp); font-weight: 700; font-size: 16px; margin-bottom: 6px; color: var(--text); }
.step-card p { font-size: 13px; color: var(--text-2); line-height: 1.55; }

/* ================================================================
   UTILITIES
   ================================================================ */
.text-accent { color: var(--accent); }
.text-muted  { color: var(--text-2); }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto !important; }
}

@media (max-width: 768px) {
  .cat-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .nav { flex-direction: column; align-items: flex-start; gap: 10px; }
  .nav-links { gap: 2px; }
  .hero { padding-bottom: 52px; }
  .hero-stats { gap: 0; }
  .hero-stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); flex-basis: 100%; padding: 12px 0; }
  .hero-stat:last-child { border-bottom: 0; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .cat-grid { grid-template-columns: 1fr; }
  .row { grid-template-columns: 44px 1fr auto; gap: 10px; }
  .foot-bottom { flex-direction: column; }
  section { padding: 60px 0; }
}

@media (max-width: 400px) {
  .wrap { padding: 0 16px; }
}

/* ================================================================
   CART BUTTON + BADGE (nav)
   ================================================================ */
.cart-btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--bg-3); border: 1px solid var(--rule);
  border-radius: var(--radius); cursor: pointer;
  color: var(--text-2); transition: background .15s, border-color .15s, color .15s;
}
.cart-btn:hover { background: var(--bg-4); border-color: var(--bg-5); color: var(--text); }
.cart-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.cart-badge {
  position: absolute; top: -6px; right: -6px;
  min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--accent); color: var(--bg);
  border-radius: 999px; border: 2px solid var(--bg-2);
  font-family: var(--mono); font-size: 9px; font-weight: 700;
  display: grid; place-items: center; line-height: 1;
}

/* ================================================================
   PACKAGE CARDS (packages.html)
   ================================================================ */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; align-items: stretch;
}
.pkg-card {
  background: var(--bg-3); border: 1px solid var(--rule);
  border-radius: var(--radius-lg); padding: 32px 28px;
  display: flex; flex-direction: column; gap: 0;
  position: relative; overflow: hidden;
  transition: transform .25s cubic-bezier(.22,1,.36,1), border-color .2s, box-shadow .25s;
}
.pkg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--bg-5); }
.pkg-card.featured {
  border-color: var(--accent); background: var(--bg-3);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-lg);
}
.pkg-card.featured:hover { transform: translateY(-6px) scale(1.01); }
/* Subtle glow behind featured */
.pkg-card.featured::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,195,0,.07) 0%, transparent 70%);
  pointer-events: none;
}
.pkg-tag {
  display: inline-block; align-self: flex-start;
  font-family: var(--mono); font-size: 8.5px; letter-spacing: .2em;
  text-transform: uppercase; font-weight: 700;
  color: var(--bg); background: var(--accent);
  padding: 4px 10px; border-radius: 2px; margin-bottom: 16px;
}
.pkg-name {
  font-family: var(--mono); font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--text-2); margin-bottom: 6px;
}
.pkg-price {
  font-family: var(--disp); font-weight: 800;
  font-size: clamp(38px, 5vw, 56px); letter-spacing: -.04em;
  line-height: 1; color: var(--text); margin-bottom: 4px;
}
.pkg-price sub {
  font-family: var(--mono); font-size: 12px; font-weight: 400;
  letter-spacing: .1em; color: var(--text-3);
  vertical-align: baseline; bottom: 0; margin-left: 4px;
}
.pkg-week {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em;
  color: var(--text-3); margin-bottom: 24px; display: block;
}
.pkg-week b { color: var(--accent); font-weight: 600; }
.pkg-desc {
  font-size: 13.5px; color: var(--text-2); line-height: 1.55;
  margin-bottom: 22px; padding-bottom: 22px;
  border-bottom: 1px solid var(--rule);
}
.pkg-includes {
  list-style: none; margin-bottom: 28px; flex: 1;
  display: flex; flex-direction: column; gap: 7px;
}
.pkg-includes li {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .04em;
  color: var(--text-2); line-height: 1.4;
  display: flex; align-items: flex-start; gap: 8px;
}
.pkg-includes li::before {
  content: '—'; color: var(--accent); flex-shrink: 0; line-height: 1.4;
}
.pkg-includes li.indent { padding-left: 16px; color: var(--text-3); }
.pkg-cta {
  width: 100%; justify-content: center; margin-top: auto;
}

/* ================================================================
   DISCOUNT BAR
   ================================================================ */
.disc-bar {
  display: flex; align-items: stretch;
  background: var(--bg-3); border: 1px solid var(--rule);
  border-radius: var(--radius-lg); overflow: hidden;
  margin: 0 0 40px;
}
.disc-tier {
  flex: 1; padding: 20px 22px;
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 4px;
  position: relative; transition: background .2s;
}
.disc-tier:last-child { border-right: 0; }
.disc-tier.active { background: var(--accent-dim); }
.disc-tier.active::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--accent);
}
.disc-tier-label {
  font-family: var(--mono); font-size: 9px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--text-3);
}
.disc-tier-pct {
  font-family: var(--disp); font-weight: 800; font-size: 22px;
  letter-spacing: -.02em; color: var(--text-2);
}
.disc-tier.active .disc-tier-pct { color: var(--accent); }
.disc-tier-note {
  font-size: 12px; color: var(--text-3);
}

/* ================================================================
   CART DRAWER
   ================================================================ */
.cart-overlay {
  position: fixed; inset: 0; z-index: 190;
  background: rgba(0,0,0,.65);
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 200;
  width: 420px; max-width: 100vw;
  background: var(--bg-2); border-left: 1px solid var(--rule);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.22,1,.36,1);
  box-shadow: var(--shadow-lg);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--rule);
  flex-shrink: 0;
}
.cart-drawer-head h2 {
  font-family: var(--disp); font-weight: 700; font-size: 17px; color: var(--text);
}
.cart-drawer-head button {
  background: transparent; border: 0; cursor: pointer; color: var(--text-3);
  padding: 4px; border-radius: var(--radius); transition: color .15s, background .15s;
}
.cart-drawer-head button:hover { color: var(--text); background: var(--bg-4); }
.cart-drawer-head button svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }

.cart-body { flex: 1; overflow-y: auto; padding: 16px 24px; }

.cart-empty {
  padding: 48px 0; text-align: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-3);
}

.cart-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--rule);
}
.cart-item:last-child { border-bottom: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-family: var(--disp); font-weight: 600; font-size: 14px;
  color: var(--text); line-height: 1.3; margin-bottom: 3px;
}
.cart-item-cat {
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-3);
}
.cart-item-rate {
  font-family: var(--mono); font-size: 11.5px; color: var(--text-2);
  margin-top: 2px;
}
.cart-item-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; flex-shrink: 0; }
.cart-item-price {
  font-family: var(--disp); font-weight: 700; font-size: 15px;
  color: var(--text);
}
.cart-item-remove {
  background: transparent; border: 0; cursor: pointer; color: var(--text-3);
  font-family: var(--mono); font-size: 9px; letter-spacing: .1em;
  text-transform: uppercase; transition: color .15s; padding: 2px 0;
}
.cart-item-remove:hover { color: #ff6b6b; }

.gear-qty {
  display: inline-flex; align-items: center;
  border: 1px solid var(--rule); border-radius: var(--radius);
  overflow: hidden; background: var(--bg-3);
}
.gear-qty button {
  background: transparent; border: 0; cursor: pointer;
  width: 30px; height: 30px; color: var(--text-2);
  font-size: 16px; line-height: 1; display: grid; place-items: center;
  transition: background .12s, color .12s;
}
.gear-qty button:hover { background: var(--bg-4); color: var(--text); }
.gear-qty input {
  width: 36px; height: 30px; text-align: center; border: 0;
  border-left: 1px solid var(--rule); border-right: 1px solid var(--rule);
  background: var(--bg-3); color: var(--text);
  font-family: var(--mono); font-size: 12px; padding: 0;
}
.gear-qty input:focus { outline: none; background: var(--bg-4); }

.cart-footer {
  border-top: 1px solid var(--rule); padding: 20px 24px;
  flex-shrink: 0; background: var(--bg-2);
}
.cart-days-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px; gap: 12px;
}
.cart-days-row label {
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-3);
}
.cart-days-row input[type="number"] {
  width: 70px; text-align: center; padding: 8px 10px;
}
.cart-lines { margin-bottom: 16px; display: flex; flex-direction: column; gap: 7px; }
.cart-line {
  display: flex; justify-content: space-between;
  font-size: 13.5px; color: var(--text-2);
}
.cart-line.discount { color: #4caf84; }
.cart-line.total {
  font-family: var(--disp); font-weight: 700; font-size: 18px;
  color: var(--text); border-top: 1px solid var(--rule); padding-top: 10px; margin-top: 3px;
}
.cart-cta { width: 100%; justify-content: center; }

/* ================================================================
   SERVICE AREA CHIPS
   ================================================================ */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}
.area-chip {
  background: var(--bg-3); border: 1px solid var(--rule);
  border-radius: var(--radius); padding: 14px 16px;
  transition: border-color .15s, background .15s;
  cursor: default;
}
.area-chip:hover { border-color: var(--bg-5); background: var(--bg-4); }
.area-chip .city-name {
  font-family: var(--disp); font-weight: 600; font-size: 14px; color: var(--text);
}
.area-chip .city-dist {
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-3); margin-top: 3px; display: block;
}

/* ================================================================
   ACCOUNT / PORTAL
   ================================================================ */
.portal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px; align-items: start;
}
.portal-nav {
  background: var(--bg-3); border: 1px solid var(--rule);
  border-radius: var(--radius-lg); padding: 12px 8px;
  list-style: none; position: sticky; top: 80px;
}
.portal-nav a {
  display: block; padding: 10px 14px; border-radius: var(--radius);
  font-family: var(--sans); font-size: 13.5px; font-weight: 500;
  color: var(--text-2); text-decoration: none;
  transition: color .15s, background .15s;
}
.portal-nav a:hover { color: var(--text); background: var(--bg-4); }
.portal-nav a.active { color: var(--accent); background: var(--accent-dim); font-weight: 600; }
.portal-nav .portal-sep {
  height: 1px; background: var(--rule); margin: 8px 6px;
}
.portal-card {
  background: var(--bg-3); border: 1px solid var(--rule);
  border-radius: var(--radius-lg); padding: 22px 24px; margin-bottom: 14px;
  transition: border-color .2s;
}
.portal-card:hover { border-color: var(--bg-5); }
.portal-card-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 12px; flex-wrap: wrap;
}
.portal-card h3 {
  font-family: var(--disp); font-weight: 700; font-size: 16px; color: var(--text);
}
.rental-status {
  display: inline-block; padding: 3px 10px; border-radius: 2px;
  font-family: var(--mono); font-size: 9px; letter-spacing: .16em;
  text-transform: uppercase; font-weight: 700;
}
.rental-status.pending  { background: rgba(255,195,0,.15); color: var(--accent); }
.rental-status.confirmed{ background: rgba(76,175,132,.15); color: #4caf84; }
.rental-status.active   { background: rgba(99,102,241,.15); color: #8183f4; }
.rental-status.returned { background: rgba(90,90,106,.15); color: var(--text-3); }

/* ================================================================
   GEAR GRID (enhanced)
   ================================================================ */
.gear-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
.gear-card {
  background: var(--bg-3); border: 1px solid var(--rule);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s cubic-bezier(.22,1,.36,1), border-color .2s, box-shadow .25s;
}
.gear-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--bg-5); }
.gear-card-img {
  aspect-ratio: 4/3; background: var(--bg-4);
  position: relative; overflow: hidden;
}
.gear-card-img::after {
  content: attr(data-label);
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--mono); font-size: 9px; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.2);
}
.gear-card-body { padding: 18px 18px 20px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.gear-card-cat {
  font-family: var(--mono); font-size: 9px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent);
}
.gear-card-name {
  font-family: var(--disp); font-weight: 700; font-size: 15px;
  color: var(--text); line-height: 1.25;
}
.gear-card-specs {
  font-size: 12.5px; color: var(--text-3); line-height: 1.5; flex: 1;
}
.gear-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--rule);
}
.gear-card-price {
  font-family: var(--mono); font-weight: 600; font-size: 13px;
  color: var(--text); letter-spacing: .02em;
}
.gear-card-price sub { font-size: 9px; color: var(--text-3); }

/* ================================================================
   RESPONSIVE — new components
   ================================================================ */
@media (max-width: 900px) {
  .pkg-grid { grid-template-columns: 1fr; }
  .pkg-card.featured { order: -1; }
  .portal-layout { grid-template-columns: 1fr; }
  .portal-nav { position: static; }
}

@media (max-width: 640px) {
  .cart-drawer { width: 100vw; }
  .disc-bar { flex-direction: column; }
  .disc-tier { border-right: 0; border-bottom: 1px solid var(--rule); }
  .disc-tier:last-child { border-bottom: 0; }
  .area-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .gear-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
}
