/* ===================================================
   WALKER ROAD STUDIOS — styles.css v2
   Aesthetic: BOTB card frames, wood grain, rock & roll
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@400;500;700&family=Lora:ital,wght@0,400;0,600;1,400&family=Source+Sans+3:wght@400;600&display=swap');

:root {
  --black:    #0D0D0D;
  --white:    #FFFFFF;
  --red:      #C8102E;
  --amber:    #7A5A10;
  --wood:     #8B5E2A;
  --paper:    #F2EDE3;
  --smoke:    #E4DDD0;
  --charcoal: #2A2A2A;
  --mid:      #5A4F40;
  --card-border: #5C3D1A;

  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-head:    'Oswald', sans-serif;
  --font-body:    'Lora', Georgia, serif;
  --font-util:    'Source Sans 3', system-ui, sans-serif;

  --max-w: 1140px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.6;
  color: var(--black);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
a:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* CARD LABEL — type badge treatment from BOTB */
.card-label {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
  margin-bottom: 1rem;
}

/* CARD FRAME — the wood-frame card aesthetic from BOTB */
.card-frame {
  border: 4px solid var(--card-border);
  border-radius: 8px;
  box-shadow:
    inset 0 0 0 2px rgba(255,220,140,0.2),
    0 8px 30px rgba(0,0,0,0.6),
    0 2px 6px rgba(0,0,0,0.4);
  background: linear-gradient(160deg, #6B3F14 0%, #4A2A0A 40%, #3A2008 100%);
  padding: 6px;
}

/* ===== NAVIGATION ===================================== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 3px solid var(--red);
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-wordmark {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.06em;
  color: var(--white);
  text-decoration: none;
}
.nav-wordmark span { color: var(--red); }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--red); border-bottom-color: var(--red); }
.nav-pay a { color: var(--red) !important; border-bottom-color: var(--red) !important; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ========================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}

.hero-bg-texture {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 0;
  pointer-events: none;
}

/* Scattered cards fanning out in background */
.hero-cardback {
  position: absolute;
  width: 220px;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.8);
  opacity: 0.35;
  filter: saturate(0.7);
}
.cb1 { top: -20px; right: 5%; transform: rotate(8deg); width: 200px; }
.cb2 { top: 10%; right: 18%; transform: rotate(-5deg); width: 190px; }
.cb3 { bottom: -30px; right: 8%; transform: rotate(12deg); width: 200px; }
.cb4 { bottom: 10%; right: 22%; transform: rotate(-8deg); width: 175px; }
.cb5 { top: 30%; right: 30%; transform: rotate(3deg); width: 160px; opacity: 0.18; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.97) 0%,
    rgba(0,0,0,0.88) 45%,
    rgba(0,0,0,0.4) 75%,
    rgba(0,0,0,0.1) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 6rem 2rem 4rem;
}

.hero-eyebrow {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 11vw, 9rem);
  line-height: 0.93;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 2rem;
}
.hero-headline em { font-style: normal; color: var(--red); }

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero-tagline {
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1rem;
  display: inline-block;
}

/* ===== BUTTONS ======================================= */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border-radius: 2px;
}
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover, .btn-primary:focus-visible { background: transparent; color: var(--red); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-outline:hover, .btn-outline:focus-visible { border-color: var(--white); }
.btn-dark { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-dark:hover, .btn-dark:focus-visible { background: var(--red); border-color: var(--red); }
.btn-pay {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  font-size: 1rem;
  padding: 16px 36px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-pay:hover, .btn-pay:focus-visible { background: var(--red); border-color: var(--red); color: var(--white); }
.pay-icon { font-size: 1.3rem; }

/* ===== SERVICES ====================================== */
.services {
  background: var(--paper);
  padding: 5rem 0;
}
.section-header { margin-bottom: 3rem; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--black);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Service cards with BOTB card-frame aesthetic */
.service-card {
  background: linear-gradient(160deg, #6B3F14 0%, #4A2A0A 40%, #3A2008 100%);
  border: 4px solid #5C3D1A;
  border-radius: 10px;
  box-shadow:
    inset 0 0 0 2px rgba(255,220,140,0.15),
    0 12px 40px rgba(0,0,0,0.4);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* Inner light panel matching BOTB card title strip */
.service-img-wrap {
  position: relative;
  background: rgba(0,0,0,0.3);
  border-bottom: 3px solid rgba(255,220,140,0.2);
}
.service-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: saturate(0.85);
}

/* The title bar overlay — like BOTB card title strip */
.service-img-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.75);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-align: center;
  padding: 6px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--red);
}

.service-card-body {
  padding: 1.5rem;
  background: rgba(255,255,255,0.04);
}
.service-number {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: rgba(255,220,140,0.15);
  margin-bottom: 0.25rem;
}
.service-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.service-card .card-label { color: rgba(255,180,80,0.8); border-bottom-color: rgba(255,180,80,0.4); }
.service-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  margin: 0.75rem 0 1rem;
}
.service-examples {
  list-style: none;
  margin-bottom: 1.5rem;
}
.service-examples li {
  font-family: var(--font-util);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  gap: 8px;
  align-items: center;
}
.service-examples li::before { content: '→'; color: var(--red); flex-shrink: 0; }

/* ===== CARD STRIP — scrolling gallery ================ */
.card-strip {
  background: var(--black);
  padding: 2rem 0;
  overflow: hidden;
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
}
.card-strip-inner {
  display: flex;
  gap: 1rem;
  animation: strip-scroll 35s linear infinite;
  width: max-content;
}
@keyframes strip-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.strip-card {
  width: 120px;
  height: 168px;
  object-fit: cover;
  object-position: top center;
  border-radius: 6px;
  border: 3px solid #5C3D1A;
  box-shadow: 0 4px 16px rgba(0,0,0,0.6);
  flex-shrink: 0;
  filter: saturate(0.8);
  transition: filter 0.3s, transform 0.3s;
}
.card-strip:hover .card-strip-inner { animation-play-state: paused; }
.strip-card:hover { filter: saturate(1.1); transform: scale(1.06) translateY(-4px); }

/* ===== HOW IT WORKS ================================== */
.how {
  background: var(--black);
  padding: 5rem 0;
}
.how .section-title { color: var(--white); }
.how .card-label { /* already red */ }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 2px solid rgba(255,255,255,0.12);
  margin-top: 3rem;
}
.process-step {
  padding: 2rem;
  border-right: 2px solid rgba(255,255,255,0.1);
  position: relative;
}
.process-step:last-child { border-right: none; }
/* Subtle warm line at top — like a card's title strip */
.process-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, transparent 100%);
}
.step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.step-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.step-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* ===== ONE HOUR ====================================== */
.one-hour {
  position: relative;
  padding: 5rem 0;
  background: var(--black);
  overflow: hidden;
}
.one-hour-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.one-hour-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.15;
  filter: saturate(0.4);
}
.one-hour-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.95) 40%, rgba(0,0,0,0.5) 100%);
}
.one-hour-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: center;
}
.one-hour-price {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 9rem);
  line-height: 1;
  color: var(--red);
}
.one-hour-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.one-hour-list { list-style: none; margin-bottom: 2rem; }
.one-hour-list li {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  gap: 10px;
}
.one-hour-list li::before { content: '✓'; color: var(--red); font-weight: bold; flex-shrink: 0; }

/* ===== PRICING ======================================= */
.pricing {
  background: var(--paper);
  padding: 5rem 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

/* Pricing cards styled like BOTB cards */
.pricing-card {
  background: linear-gradient(160deg, #6B3F14 0%, #4A2A0A 50%, #3A2008 100%);
  border: 4px solid #5C3D1A;
  border-radius: 10px;
  box-shadow: inset 0 0 0 2px rgba(255,220,140,0.12), 0 6px 24px rgba(0,0,0,0.35);
  overflow: hidden;
  transition: transform 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--red);
  box-shadow: inset 0 0 0 2px rgba(200,16,46,0.3), 0 10px 40px rgba(200,16,46,0.2);
}

.pricing-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 160px;
}
.pricing-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.7);
}
.pricing-card.featured .pricing-card-img { filter: saturate(1); }

.pricing-card-body {
  padding: 1.25rem 1.25rem 1.5rem;
}
.pricing-tier {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,180,80,0.7);
  margin-bottom: 0.25rem;
}
.pricing-card.featured .pricing-tier { color: var(--red); }
.pricing-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  line-height: 1;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.per { font-size: 1.1rem; }
.pricing-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.75rem;
}
.pricing-desc {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
}
.pricing-credo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  border-color: rgba(255,255,255,0.1);
}
.credo-text {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  line-height: 1.9;
  padding: 1.5rem;
}

/* ===== BLUES BROTHERS ================================ */
.blues {
  background: var(--black);
  border-top: 4px solid var(--red);
  border-bottom: 4px solid rgba(255,255,255,0.08);
  padding: 5rem 0;
}
.blues-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: center;
}
.blues-symbol {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: rgba(255,255,255,0.06);
  writing-mode: vertical-lr;
  letter-spacing: 0.05em;
}
.blues-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 1rem;
}
.blues-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin-bottom: 0.5rem;
}
.blues-note {
  font-family: var(--font-util);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  font-style: italic;
  margin-bottom: 2rem;
}

/* ===== ABOUT ========================================= */
.about {
  background: var(--paper);
  padding: 5rem 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0.03em;
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 1.5rem;
}
.about-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.creds-list { list-style: none; margin-bottom: 2rem; }
.creds-list li {
  font-family: var(--font-util);
  font-size: 0.875rem;
  color: var(--mid);
  padding: 8px 0;
  border-bottom: 1px solid var(--smoke);
  display: flex;
  gap: 10px;
}
.creds-list li::before { content: '—'; color: var(--red); flex-shrink: 0; }

/* Stacked card trio for about section */
.about-card-stack {
  position: relative;
  height: 280px;
  margin-top: 1rem;
}
.about-card {
  position: absolute;
  width: 155px;
  border-radius: 8px;
  border: 4px solid #5C3D1A;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  filter: saturate(0.85);
}
.ac1 { top: 0; left: 0; transform: rotate(-6deg); z-index: 1; }
.ac2 { top: 20px; left: 70px; transform: rotate(2deg); z-index: 2; }
.ac3 { top: 10px; left: 145px; transform: rotate(10deg); z-index: 3; }

/* ===== WORK GRID ===================================== */
.work {
  background: var(--black);
  padding: 5rem 0;
}
.work .section-title { color: var(--white); }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.08);
  margin-top: 3rem;
}
.work-card {
  background: var(--black);
  padding: 2rem 1.75rem;
  border-top: 3px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.work-card:hover { border-top-color: var(--red); background: #111; }
.work-icon { font-size: 2rem; margin-bottom: 1rem; }
.work-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.work-desc { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.65; }

/* ===== FINAL CTA ===================================== */
.cta-final {
  background: var(--red);
  padding: 5rem 0;
  text-align: center;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}
.cta-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cta-final .btn-outline { border-color: rgba(255,255,255,0.5); }
.cta-final .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ===== PAYMENT ======================================= */
.payment {
  background: var(--paper);
  padding: 5rem 0;
  border-top: 4px solid var(--black);
}
.payment-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.payment-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 0.5rem;
}
.payment-sub {
  font-size: 0.95rem;
  color: var(--mid);
  margin-bottom: 2.5rem;
}
.payment-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.payment .btn-pay { color: var(--black); background: var(--white); border: 2px solid var(--black); }
.payment .btn-pay:hover { background: var(--black); color: var(--white); }
.payment-disclaimer {
  font-family: var(--font-util);
  font-size: 0.78rem;
  color: var(--mid);
  font-style: italic;
  border-top: 1px solid var(--smoke);
  padding-top: 1rem;
}

/* ===== FOOTER ======================================== */
.site-footer {
  background: var(--black);
  padding: 3.5rem 0 2rem;
  border-top: 3px solid rgba(255,255,255,0.08);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-wordmark {
  font-family: var(--font-display);
  font-size: 1.9rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.footer-wordmark span { color: var(--red); }
.footer-tagline {
  font-family: var(--font-util);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.5rem;
}
.footer-location { font-size: 0.82rem; color: rgba(255,255,255,0.3); margin-bottom: 1.25rem; }
.footer-contact-list { list-style: none; }
.footer-contact-list li { font-size: 0.78rem; color: rgba(255,255,255,0.2); font-style: italic; padding: 3px 0; }
.footer-nav-title {
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 0.75rem;
}
.footer-nav-links { list-style: none; }
.footer-nav-links li + li { margin-top: 5px; }
.footer-nav-links a {
  font-family: var(--font-util);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.25rem;
  font-family: var(--font-util);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===== RESPONSIVE ==================================== */

/* ===== CONTACT FORM ================================== */
.contact-section {
  background: var(--black);
  padding: 5rem 0;
  border-top: 3px solid rgba(255,255,255,0.08);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-left {
  min-width: 0;
}

.contact-right {
  min-width: 0;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1;
}

.contact-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-options {
  list-style: none;
}
.contact-options li {
  font-family: var(--font-util);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  line-height: 1.5;
}
.co-label {
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-head);
  letter-spacing: 0.05em;
}

.contact-form {
  background: linear-gradient(160deg, #1a1008 0%, #0f0a04 100%);
  border: 4px solid #5C3D1A;
  border-radius: 10px;
  box-shadow: inset 0 0 0 2px rgba(255,220,140,0.08), 0 12px 40px rgba(0,0,0,0.5);
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,180,80,0.7);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  background: rgba(0,0,0,0.5);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 3px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder {
  color: rgba(255,255,255,0.2);
}

.form-input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.15);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C8102E' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-select option {
  background: #1a1008;
  color: var(--white);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
}

.form-note {
  font-family: var(--font-util);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
  font-style: italic;
}

.form-success {
  display: none;
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: rgba(0,180,80,0.1);
  border: 2px solid rgba(0,180,80,0.3);
  border-radius: 4px;
  text-align: center;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.form-success.visible { display: block; }
.form-success-icon {
  display: block;
  font-size: 2rem;
  color: #4caf50;
  margin-bottom: 0.5rem;
}

.form-input.error { border-color: var(--red); }
.field-error {
  font-family: var(--font-util);
  font-size: 0.75rem;
  color: var(--red);
  margin-top: 0.35rem;
  display: block;
}

/* ===== RESPONSIVE ==================================== */
@media (max-width: 960px) {
  .services-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(1), .process-step:nth-child(2) { border-bottom: 2px solid rgba(255,255,255,0.1); }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-card-stack { height: 220px; }
  .ac1 { width: 130px; }
  .ac2 { width: 130px; left: 55px; }
  .ac3 { width: 130px; left: 115px; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .one-hour-inner { gap: 2rem; }
  .blues-inner { gap: 2rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 60px; left: 0; right: 0;
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1rem 2rem;
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open a { display: block; padding: 12px 0; font-size: 1rem; }
  .nav-toggle { display: flex; }
  .site-nav { position: relative; }

  .hero-cardback { display: none; }
  .cb1 { display: block; width: 140px; opacity: 0.2; }

  .services-grid, .pricing-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 2px solid rgba(255,255,255,0.1); }
  .process-step:last-child { border-bottom: none; }
  .one-hour-inner { grid-template-columns: 1fr; }
  .blues-inner { grid-template-columns: 1fr; }
  .blues-symbol { display: none; }
  .work-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .payment-buttons { flex-direction: column; align-items: center; }
  .about-card-stack { display: none; }
  .contact-form { padding: 1.5rem; }
}

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