/* VS Traders & VS Rental - Premium Style Sheet */

/* ===== Imports ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

/* ===== Design System Variables ===== */
:root {
  /* Colors */
  --charcoal: #1E1D1B;
  --charcoal-soft: #3D3A37;
  --plaster: #F4F0E6;
  --plaster-light: #FBF9F5;
  --plaster-dark: #E6E1D3;
  --white: #FFFFFF;
  
  --brick: #C8502F;
  --brick-dark: #A33A1D;
  --brick-light: #E07D5D;
  --brick-glow: rgba(200, 80, 47, 0.15);
  
  --teal: #1F4E45;
  --teal-dark: #13332D;
  --teal-light: #34766A;
  --teal-glow: rgba(31, 78, 69, 0.15);
  
  --caution: #E3A72F;
  --caution-dark: #C28B20;
  --caution-glow: rgba(227, 167, 47, 0.15);
  
  --steel: #7E807A;
  --steel-light: #D4D2C9;
  
  /* Fonts */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;
  
  /* Layout Metrics */
  --tape-w: 64px;
  --border-radius: 6px;
  --border-radius-sm: 4px;
  --transition-smooth: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.15s ease;
  
  /* Tactile Shadow */
  --shadow-tactile: 4px 4px 0px 0px var(--charcoal);
  --shadow-tactile-hover: 7px 7px 0px 0px var(--charcoal);
}

/* ===== Resets ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* offset sticky header */
}

body {
  background-color: var(--plaster);
  color: var(--charcoal);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  /* Blueprint Grid background pattern */
  background-image: 
    linear-gradient(rgba(30, 29, 27, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 29, 27, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  line-height: 1.1;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brick);
  display: inline-block;
  margin-bottom: 8px;
}

/* ===== Layout Structure ===== */
.page-shell {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

section {
  padding: 100px 0;
  border-bottom: 2px dashed rgba(30, 29, 27, 0.1);
  position: relative;
}

section:last-of-type {
  border-bottom: none;
}

/* ===== Sticky Glassmorphic Header ===== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 240, 230, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--charcoal);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.brandmark {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brandmark .t1 { color: var(--brick); }
.brandmark .div-slash { color: var(--steel); font-family: var(--font-mono); font-size: 1.1rem; }
.brandmark .t2 { color: var(--teal); }

.header-actions {
  display: flex;
  gap: 12px;
}

/* ===== Buttons (Tactile Neo-Brutalist) ===== */
.btn {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  padding: 10px 18px;
  border-radius: var(--border-radius-sm);
  border: 2px solid var(--charcoal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  cursor: pointer;
  background: var(--white);
  color: var(--charcoal);
  box-shadow: var(--shadow-tactile);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-tactile-hover);
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0px 0px var(--charcoal);
}

.btn-brick {
  background: var(--brick);
  color: var(--white);
  border-color: var(--charcoal);
}
.btn-brick:hover {
  background: var(--brick-dark);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--charcoal);
}
.btn-teal:hover {
  background: var(--teal-dark);
}

.btn-caution {
  background: var(--caution);
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-caution:hover {
  background: var(--caution-dark);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
}
.btn-outline:hover {
  background: rgba(30, 29, 27, 0.05);
}

/* ===== Left Tape Measure (Ruler Widget) ===== */
.tape {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--tape-w);
  height: 100%;
  background: 
    repeating-linear-gradient(
      to bottom,
      var(--caution) 0px, var(--caution) 2px,
      transparent 2px, transparent 20px
    ),
    linear-gradient(to bottom, #F1D8A0 0%, var(--caution) 8%, var(--caution) 100%);
  border-right: 3px solid var(--charcoal);
  z-index: 10;
}

.tape::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(
      to bottom,
      var(--charcoal) 0px, var(--charcoal) 2.5px,
      transparent 2.5px, transparent 100px
    );
  opacity: 0.75;
}

.tape-label {
  position: absolute;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 0;
  font-family: var(--font-mono);
  z-index: 20;
}

.tape-label .m {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--charcoal);
  background: var(--white);
  border: 2px solid var(--charcoal);
  border-radius: var(--border-radius-sm);
  padding: 1px 5px;
  white-space: nowrap;
  box-shadow: 2px 2px 0px var(--charcoal);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.tape-label:hover .m {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0px var(--charcoal);
  background: var(--plaster-light);
}

.tape-label:active .m {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0px var(--charcoal);
}

.tape-label .tick-line {
  width: 16px;
  height: 2px;
  background: var(--charcoal);
}

.tape-reading {
  position: fixed;
  left: 12px;
  bottom: 20px;
  z-index: 120;
  background: var(--charcoal);
  color: var(--caution);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: var(--border-radius-sm);
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 6px;
}

.tape-reading::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--caution);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Mobile top progress bar */
.mobile-progress {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 6px;
  background: var(--caution);
  z-index: 130;
  width: 0%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* ===== Hero Section ===== */
.hero {
  padding: 140px 0 100px;
  background-image: radial-gradient(rgba(200, 80, 47, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero .hero-box {
  max-width: 960px;
}

.hero .eyebrow-container {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  border: 2px solid var(--charcoal);
  padding: 6px 12px;
  border-radius: var(--border-radius-sm);
  box-shadow: 2px 2px 0px var(--charcoal);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  letter-spacing: -0.02em;
  line-height: 1.0;
  margin-bottom: 24px;
}

.hero h1 .accent-brick {
  color: var(--brick);
  background: linear-gradient(180deg, transparent 65%, var(--plaster-dark) 65%);
}

.hero h1 .accent-teal {
  color: var(--teal);
  background: linear-gradient(180deg, transparent 65%, var(--plaster-dark) 65%);
}

.hero p.sub {
  font-size: 1.15rem;
  max-width: 680px;
  color: var(--charcoal-soft);
  margin-bottom: 36px;
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 2px solid var(--charcoal);
  border-radius: var(--border-radius);
  background: var(--white);
  box-shadow: var(--shadow-tactile);
  overflow: hidden;
}

.hero-strip .cell {
  padding: 20px 24px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  border-right: 2px solid var(--charcoal);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-strip .cell:last-child {
  border-right: none;
}

.hero-strip .cell b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 4px;
}

/* ===== Section Headers ===== */
.section-head {
  max-width: 720px;
  margin-bottom: 60px;
}

.section-head h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-top: 8px;
  margin-bottom: 16px;
}

.section-head p {
  font-size: 1.05rem;
  color: var(--charcoal-soft);
  font-weight: 500;
}

/* ===== Yards Split Grid (About) ===== */
.yards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.yard {
  border: 2px solid var(--charcoal);
  border-radius: var(--border-radius);
  padding: 44px;
  color: var(--white);
  box-shadow: var(--shadow-tactile);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.yard:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0px 0px var(--charcoal);
}

.yard::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.yard.traders {
  background: var(--brick);
  background-image: linear-gradient(135deg, var(--brick) 0%, var(--brick-dark) 100%);
}

.yard.rental {
  background: var(--teal);
  background-image: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
}

.yard .icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-sm);
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.yard h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.yard p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 28px;
  min-height: 72px;
}

.yard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.yard .tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 4px 10px;
  border-radius: var(--border-radius-sm);
  background: rgba(255, 255, 255, 0.08);
}

/* ===== Ledgers (Tables) ===== */
.ledger {
  border: 2px solid var(--charcoal);
  border-radius: var(--border-radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-tactile);
}

.ledger-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 2px solid var(--plaster-dark);
  gap: 16px;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.ledger-row:last-child {
  border-bottom: none;
}

.ledger-row:nth-child(even) {
  background-color: var(--plaster-light);
}

.ledger-row:hover {
  background-color: rgba(227, 167, 47, 0.05);
}

.ledger-row .code {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  padding: 5px 0;
  text-align: center;
  border-radius: var(--border-radius-sm);
  border: 1.5px solid var(--charcoal);
  letter-spacing: 0.05em;
  box-shadow: 2px 2px 0px var(--charcoal);
}

.materials .code { background: var(--brick); }
.rental .code { background: var(--teal); }

.ledger-row .name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--charcoal);
}

.ledger-row .unit {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--steel);
  font-weight: 500;
}

.ledger-note {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--charcoal-soft);
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ledger-note::before {
  content: "⚡";
  font-size: 1rem;
}

/* ===== Materials & Rental Estimator Widget ===== */
.estimator-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.estimator-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.estimator-group {
  border: 2px solid var(--charcoal);
  border-radius: var(--border-radius);
  background: var(--white);
  padding: 28px;
  box-shadow: var(--shadow-tactile);
}

.estimator-group-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--plaster-dark);
  padding-bottom: 12px;
}

.estimator-group-title h3 {
  font-size: 1.3rem;
}

.estimator-group-title .icon-badge {
  width: 32px;
  height: 32px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: bold;
}

.traders-estimator .icon-badge { background: var(--brick); }
.rental-estimator .icon-badge { background: var(--teal); }

.estimator-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.estimator-item {
  display: grid;
  grid-template-columns: 1fr 120px;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--plaster-dark);
}

.estimator-item:last-child {
  border-bottom: none;
}

.estimator-item-info {
  display: flex;
  flex-direction: column;
}

.estimator-item-info .item-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.estimator-item-info .item-desc {
  font-size: 0.78rem;
  color: var(--steel);
  font-family: var(--font-mono);
}

.estimator-item-ctrl {
  display: flex;
  align-items: center;
  border: 2px solid var(--charcoal);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  height: 36px;
  background: var(--plaster);
}

.estimator-item-ctrl button {
  width: 30px;
  height: 100%;
  border: none;
  background: none;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  color: var(--charcoal);
  transition: background var(--transition-fast);
}

.estimator-item-ctrl button:hover {
  background: var(--plaster-dark);
}

.estimator-item-ctrl input {
  width: 56px;
  height: 100%;
  border: none;
  border-left: 2px solid var(--charcoal);
  border-right: 2px solid var(--charcoal);
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--white);
  color: var(--charcoal);
}

.estimator-item-ctrl input:focus {
  outline: none;
}

/* Estimate Summary Box (Invoice Look) */
.estimator-summary {
  border: 2px solid var(--charcoal);
  border-radius: var(--border-radius);
  background: var(--white);
  padding: 32px;
  box-shadow: var(--shadow-tactile);
  position: sticky;
  top: 100px;
  background-image: 
    radial-gradient(var(--charcoal) 10%, transparent 11%),
    radial-gradient(var(--charcoal) 10%, transparent 11%);
  background-size: 12px 12px;
  background-position: 0 0, 6px 6px;
  background-color: var(--white);
}

/* torn paper slip styling */
.summary-slip {
  background: var(--white);
  border: 1px solid var(--plaster-dark);
  padding: 24px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.summary-slip::before {
  content: "";
  position: absolute;
  top: -6px; left: 0; right: 0;
  height: 6px;
  background-image: linear-gradient(-45deg, var(--white) 4px, transparent 0), linear-gradient(45deg, var(--white) 4px, transparent 0);
  background-size: 8px 12px;
}

.summary-title {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--steel);
  border-bottom: 2px dashed var(--charcoal);
  padding-bottom: 12px;
  margin-bottom: 18px;
  display: flex;
  justify-content: space-between;
}

.summary-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 240px;
  overflow-y: auto;
  margin-bottom: 20px;
  padding-right: 4px;
}

/* custom scrollbar for invoice items */
.summary-items::-webkit-scrollbar {
  width: 4px;
}
.summary-items::-webkit-scrollbar-thumb {
  background: var(--charcoal);
  border-radius: 2px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  font-family: var(--font-mono);
}

.summary-row .label {
  font-weight: 500;
  color: var(--charcoal-soft);
  max-width: 160px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.summary-row .val {
  font-weight: 700;
  color: var(--charcoal);
}

.summary-empty {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--steel);
  text-align: center;
  padding: 30px 0;
  border: 1.5px dashed var(--steel-light);
  border-radius: var(--border-radius-sm);
  background: var(--plaster-light);
}

.summary-total {
  border-top: 2px dashed var(--charcoal);
  padding-top: 14px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-total .total-lbl {
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
}

.summary-total .total-count {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.05rem;
  background: var(--charcoal);
  color: var(--white);
  padding: 2px 8px;
  border-radius: var(--border-radius-sm);
}

.estimator-send-btn {
  width: 100%;
}

/* ===== Why Us Section Badges ===== */
.badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.badge {
  border: 2px solid var(--charcoal);
  border-radius: 50%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  background: var(--white);
  position: relative;
  box-shadow: var(--shadow-tactile);
  transform: rotate(-2.5deg);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.badge:nth-child(even) {
  transform: rotate(2.5deg);
}

.badge:hover {
  transform: scale(1.05) rotate(0deg);
  box-shadow: 6px 6px 0px 0px var(--charcoal);
}

.badge span {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--charcoal);
}

/* ===== FAQs Section ===== */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 2px solid var(--charcoal);
  border-radius: var(--border-radius);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-tactile);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-item:hover {
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0px 0px var(--charcoal);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
}

.faq-question {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  text-transform: uppercase;
}

.faq-icon {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--brick);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--teal);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.active .faq-content {
  max-height: 200px;
  padding-bottom: 20px;
  border-top: 1px dashed var(--plaster-dark);
  padding-top: 16px;
}

.faq-content p {
  font-size: 0.95rem;
  color: var(--charcoal-soft);
}

/* ===== Location & Maps Grid ===== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.location-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  border: 2px solid var(--charcoal);
  border-radius: var(--border-radius);
  background: var(--white);
  padding: 32px;
  box-shadow: var(--shadow-tactile);
}

.info-card h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-card h3::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 20px;
  border-radius: 2px;
}

.traders-col .info-card h3::before { background: var(--brick); }
.rental-col .info-card h3::before { background: var(--teal); }

.info-row {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.info-row:last-child {
  margin-bottom: 0;
}

.info-row .k {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--brick);
  font-weight: 700;
  min-width: 80px;
  letter-spacing: 0.05em;
  padding-top: 2px;
}

.rental-col .info-row .k {
  color: var(--teal);
}

.info-row .v {
  color: var(--charcoal-soft);
  font-weight: 500;
}

.info-row .v a {
  border-bottom: 1.5px solid var(--charcoal);
  font-weight: 700;
  color: var(--charcoal);
}

.info-row .v a:hover {
  color: var(--brick);
  border-color: var(--brick);
}

.rental-col .info-row .v a:hover {
  color: var(--teal);
  border-color: var(--teal);
}

.map-frame {
  border: 2px solid var(--charcoal);
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 320px;
  box-shadow: var(--shadow-tactile);
  background: var(--plaster-dark);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== Footer ===== */
footer {
  background: var(--charcoal);
  color: var(--plaster);
  padding: 70px 0 40px;
  margin-top: auto;
  border-top: 4px solid var(--caution);
}

footer .foot-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 28px;
}

footer h3 {
  color: var(--white);
  font-size: 1.7rem;
  margin-bottom: 8px;
}

footer p.desc {
  max-width: 440px;
  color: var(--steel-light);
  font-size: 0.95rem;
}

footer .foot-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

footer .fine {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--steel-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

footer .fine a {
  border-bottom: 1px solid var(--steel-light);
}

footer .fine a:hover {
  color: var(--caution);
  border-color: var(--caution);
}

/* ===== Responsive Adaptations ===== */
@media (min-width: 992px) {
  header .header-inner, main, footer {
    padding-left: 0;
  }
  .page-shell {
    margin-left: var(--tape-w);
  }
}

@media (max-width: 991px) {
  .tape, .tape-reading {
    display: none;
  }
  .mobile-progress {
    display: block;
  }
  header .header-inner {
    padding: 16px 20px;
  }
  section {
    padding: 70px 0;
  }
  .hero {
    padding: 100px 0 70px;
  }
  .hero-strip {
    grid-template-columns: 1fr;
  }
  .hero-strip .cell {
    border-right: none;
    border-bottom: 2px solid var(--charcoal);
  }
  .hero-strip .cell:last-child {
    border-bottom: none;
  }
  .estimator-layout {
    grid-template-columns: 1fr;
  }
  .estimator-summary {
    position: static;
    margin-top: 16px;
  }
}

@media (max-width: 840px) {
  .yards {
    grid-template-columns: 1fr;
  }
  .location-grid {
    grid-template-columns: 1fr;
  }
  .badges {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .header-actions .btn-label {
    display: none;
  }
  .header-actions .btn {
    padding: 10px 14px;
  }
  .badges {
    grid-template-columns: 1fr;
  }
  .badge {
    max-width: 240px;
    margin: 0 auto;
  }
  .footer .fine {
    flex-direction: column;
    align-items: flex-start;
  }
}
