/* ============================================
   HIGH DESERT HAULING LLC — STYLES
   Light theme · Logo-driven (black + gold + cream)
   ============================================ */

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

:root {
  /* Brand */
  --gold: #c9a44a;
  --gold-dark: #a48334;
  --gold-light: #e5c477;
  --gold-glow: rgba(201, 164, 74, 0.35);

  --rust: #c44528;
  --rust-dark: #9b3017;
  --rust-glow: rgba(196, 69, 40, 0.35);

  /* Neutrals */
  --cream: #f7f2e8;
  --cream-2: #efe7d6;
  --sand: #e8dcc4;
  --white: #ffffff;
  --black: #14110d;
  --ink: #1a1814;
  --ink-2: #2d2820;

  /* Text */
  --text: #1a1814;
  --text-muted: #5b524a;
  --text-dim: #847a6e;

  /* Borders / shadows */
  --border: rgba(20, 17, 13, 0.08);
  --border-strong: rgba(20, 17, 13, 0.18);
  --shadow-sm: 0 2px 8px rgba(20, 17, 13, 0.06);
  --shadow-md: 0 8px 24px rgba(20, 17, 13, 0.1);
  --shadow-lg: 0 20px 50px rgba(20, 17, 13, 0.18);

  --container: 1180px;
  --container-narrow: 760px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);

  --font-display: "Oswald", Impact, "Arial Narrow Bold", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.container-narrow { max-width: var(--container-narrow); }

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--rust);
  color: white;
  padding: 12px 20px;
  z-index: 1000;
  font-weight: 600;
}
.skip-link:focus { top: 0; }

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================
   TOP BANNER
   ============================================ */
.top-banner {
  background: var(--black);
  color: var(--cream);
  font-size: 13px;
  padding: 9px 0;
}
.top-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.top-banner-pill {
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  text-transform: uppercase;
  font-size: 12px;
}
.top-banner-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.top-banner-phone:hover { color: var(--gold-light); }
.top-banner-phone svg { color: var(--gold-light); }

/* ============================================
   NAV
   ============================================ */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 242, 232, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
}

nav {
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}
.nav-logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  font-size: 17px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
}
.nav-logo-text span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
  color: var(--gold-dark);
  background: rgba(201, 164, 74, 0.12);
}
.nav-links .nav-cta {
  background: var(--black);
  color: var(--cream);
  margin-left: 6px;
  padding: 10px 18px;
}
.nav-links .nav-cta:hover {
  background: var(--ink);
  color: var(--gold-light);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  position: relative;
  z-index: 2;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary,
.btn-secondary,
.btn-tertiary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.005em;
  transition: transform 0.15s var(--ease), background 0.2s, box-shadow 0.2s, color 0.2s;
  white-space: nowrap;
  font-family: var(--font-body);
}
.btn-block { width: 100%; }

.btn-primary {
  background: var(--rust);
  color: var(--white);
  box-shadow: 0 6px 16px var(--rust-glow);
}
.btn-primary:hover {
  background: var(--rust-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(196, 69, 40, 0.5);
}

.btn-secondary {
  background: var(--black);
  color: var(--cream);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--gold-light);
  transform: translateY(-1px);
}
.btn-secondary-light {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--border-strong);
}
.btn-secondary-light:hover {
  background: var(--cream);
  color: var(--rust);
  border-color: var(--rust);
}

.btn-tertiary {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 6px 16px var(--gold-glow);
}
.btn-tertiary:hover {
  background: var(--gold-dark);
  color: var(--cream);
  transform: translateY(-1px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 60px 24px 80px;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201, 164, 74, 0.18), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(196, 69, 40, 0.1), transparent 60%),
    var(--cream);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 40%, rgba(20, 17, 13, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 60% 80%, rgba(20, 17, 13, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.5;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rust);
  box-shadow: 0 0 0 4px rgba(196, 69, 40, 0.18);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 22px;
  color: var(--black);
}
.hero h1 .highlight {
  color: var(--rust);
  position: relative;
  display: inline-block;
}
.hero h1 .highlight::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 6px;
  background: var(--gold);
  z-index: -1;
  opacity: 0.6;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 520px;
}

.hero-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 360px;
  margin-bottom: 36px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  max-width: 480px;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
}
.hero-meta-item strong {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}
.hero-meta-item span {
  font-size: 12px;
  color: var(--text-muted);
}
.hero-meta-divider {
  width: 1px;
  height: 28px;
  background: var(--border-strong);
}

.hero-logo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
}
.hero-logo-glow {
  position: absolute;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 164, 74, 0.35) 0%, transparent 70%);
  filter: blur(20px);
}
.hero-logo-img {
  width: 100%;
  max-width: 460px;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 14px 30px rgba(20, 17, 13, 0.22));
}

/* ============================================
   TAGLINE STRIP
   ============================================ */
.tagline-strip {
  background: var(--black);
  color: var(--cream);
  padding: 18px 0;
  overflow: hidden;
}
.tagline-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(0.95rem, 1.6vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.08em;
}
.tagline-word { color: var(--cream); }
.tagline-dot { color: var(--gold); font-size: 1.2em; line-height: 1; }

/* ============================================
   SECTIONS / HEADERS
   ============================================ */
section { padding: 96px 0; }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-label {
  display: inline-block;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--black);
}
.section-title.centered { text-align: center; }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.section-sub.centered {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 40px;
}

/* ============================================
   MATERIALS SECTION (product cards)
   ============================================ */
.materials-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  position: relative;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
@media (max-width: 1000px) {
  .materials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .material-card-featured {
    grid-column: span 2;
  }
}
@media (max-width: 640px) {
  .materials-grid {
    grid-template-columns: 1fr;
  }
  .material-card-featured {
    grid-column: auto;
  }
}

.material-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
}
.material-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.material-card-img {
  height: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 18px;
  position: relative;
  overflow: hidden;
}
.material-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.7;
}
.material-label {
  position: relative;
  z-index: 1;
  background: rgba(20, 17, 13, 0.85);
  color: var(--gold-light);
  padding: 6px 12px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
}
.material-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--rust);
  color: var(--white);
  padding: 5px 11px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  z-index: 1;
  box-shadow: 0 4px 12px var(--rust-glow);
}

.material-rock {
  background:
    repeating-radial-gradient(circle at 20% 30%, #6b6256 0px, #6b6256 4px, #58504a 4px, #58504a 8px),
    linear-gradient(135deg, #7a7166 0%, #5a5249 100%);
}
.material-rock .material-pattern {
  background-image:
    radial-gradient(circle at 15% 25%, #4a4239 12px, transparent 13px),
    radial-gradient(circle at 75% 45%, #524a40 18px, transparent 19px),
    radial-gradient(circle at 40% 75%, #5e564c 14px, transparent 15px),
    radial-gradient(circle at 85% 80%, #463e36 10px, transparent 11px),
    radial-gradient(circle at 55% 15%, #574f45 8px, transparent 9px);
}
.material-bark {
  background: linear-gradient(135deg, #6b3a1d 0%, #4a2614 100%);
}
.material-bark .material-pattern {
  background-image:
    repeating-linear-gradient(70deg, transparent 0px, transparent 6px, rgba(0,0,0,0.22) 6px, rgba(0,0,0,0.22) 8px),
    repeating-linear-gradient(110deg, transparent 0px, transparent 10px, rgba(0,0,0,0.18) 10px, rgba(0,0,0,0.18) 12px);
}
.material-soil {
  background: linear-gradient(135deg, #3d2818 0%, #251610 100%);
}
.material-soil .material-pattern {
  background-image:
    radial-gradient(circle at 25% 30%, rgba(255,255,255,0.05) 2px, transparent 3px),
    radial-gradient(circle at 65% 50%, rgba(255,255,255,0.06) 3px, transparent 4px),
    radial-gradient(circle at 80% 25%, rgba(255,255,255,0.04) 2px, transparent 3px),
    radial-gradient(circle at 30% 75%, rgba(255,255,255,0.05) 2px, transparent 3px),
    radial-gradient(circle at 55% 85%, rgba(255,255,255,0.07) 3px, transparent 4px);
  background-size: 80px 80px;
}

.material-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.material-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--black);
}
.material-card-body p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.55;
  margin-bottom: 6px;
  flex: 1;
}

.material-card-featured {
  border: 2px solid var(--gold);
}

.materials-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.97rem;
  margin-top: 8px;
}
.materials-note a {
  color: var(--rust);
  font-weight: 700;
  border-bottom: 2px solid var(--gold);
}

/* ============================================
   BANNER SECTIONS (alternating, rollingops-style)
   ============================================ */
.banner-section {
  padding: 0;
}
.banner-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 90px 24px;
}
.banner-inner-reverse {
  grid-template-columns: 1fr 1.3fr;
}

.banner-junk {
  background:
    linear-gradient(120deg, var(--black) 0%, var(--ink-2) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.banner-junk::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(201, 164, 74, 0.18), transparent 50%);
}

.banner-about {
  background: var(--cream-2);
}

.banner-copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.banner-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.banner-label-light { color: var(--gold-dark); }

.banner-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin-bottom: 18px;
  color: inherit;
}
.banner-junk .banner-copy h2 { color: var(--white); }
.banner-about .banner-copy h2 { color: var(--black); }

.banner-copy p {
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 28px;
  color: inherit;
  opacity: 0.92;
}
.banner-junk .banner-copy p { color: rgba(247, 242, 232, 0.85); }
.banner-about .banner-copy p { color: var(--text-muted); opacity: 1; }

.banner-cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.banner-art {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.banner-icon {
  color: var(--gold);
  opacity: 0.85;
  filter: drop-shadow(0 12px 32px rgba(201, 164, 74, 0.3));
}
.banner-photo {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  border: 3px solid rgba(201, 164, 74, 0.4);
  transform: rotate(-1.5deg);
  transition: transform 0.4s var(--ease);
}
.banner-photo:hover {
  transform: rotate(0deg) scale(1.01);
}
.banner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.banner-circle {
  width: 100%;
  max-width: 360px;
}
.banner-circle img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 14px 30px rgba(20, 17, 13, 0.18));
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-section {
  background: var(--cream-2);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 18px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  background: var(--ink);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.gallery-item-wide {
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 100%;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 50px 22px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(20, 17, 13, 0.85) 100%);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 2px;
  pointer-events: none;
}
.gallery-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.gallery-caption {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--cream);
}

@media (max-width: 880px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item-wide {
    grid-column: span 2;
    grid-row: auto;
    aspect-ratio: 16 / 9;
  }
}
@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item-wide {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--black) 0%, var(--ink-2) 100%);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin-bottom: 8px;
  color: var(--black);
}
.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================
   PROCESS
   ============================================ */
#process {
  background: var(--cream-2);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.process-step {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.process-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  margin: 0 auto 18px;
  font-family: var(--font-display);
  box-shadow: 0 8px 20px rgba(20, 17, 13, 0.18);
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--black);
}
.process-step p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews-section {
  background: var(--cream);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 44px;
  width: 100%;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 24px;
  right: 36px;
  font-size: 96px;
  line-height: 1;
  font-family: Georgia, serif;
  color: var(--gold);
  opacity: 0.25;
  pointer-events: none;
}
.review-stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
}
.review-text {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
.review-text.expanded {
  display: block;
  overflow: visible;
}
.review-toggle {
  background: none;
  border: none;
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
  align-self: flex-start;
  margin-top: -10px;
}
.review-toggle:hover { color: var(--gold); }
.review-footer {
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--black) 0%, var(--ink-2) 100%);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.review-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
}
.review-source {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  margin-top: 3px;
  color: #1877f2;
  font-weight: 600;
}
.review-source.yelp {
  color: #d32323;
}

/* Review platform buttons */
.review-platforms {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 44px;
}
.review-platforms-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}
.review-platforms-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.btn-platform {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid var(--border-strong);
  background: var(--white);
  color: var(--ink);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.btn-platform:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-platform-yelp:hover { color: #d32323; border-color: #d32323; }
.btn-platform-facebook:hover { color: #1877f2; border-color: #1877f2; }
.btn-platform-google:hover { color: #4285f4; border-color: #4285f4; }

/* ============================================
   SERVICE AREA
   ============================================ */
#area {
  background: var(--cream);
}
.area-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}
.area-intro {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 16px 0 28px;
}
.area-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}
.area-item {
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.97rem;
  font-weight: 700;
  text-align: center;
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.area-item:hover {
  border-color: var(--gold);
  background: var(--cream-2);
  transform: translateY(-2px);
}
.area-note {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.95rem;
}

.area-callout {
  background: linear-gradient(135deg, var(--black) 0%, var(--ink-2) 100%);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  color: var(--cream);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.area-callout::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(201, 164, 74, 0.25), transparent 60%);
}
.area-callout > * { position: relative; z-index: 1; }
.area-callout-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: rgba(201, 164, 74, 0.18);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.area-callout h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.area-callout p {
  margin-bottom: 22px;
  opacity: 0.9;
  line-height: 1.55;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
  background: var(--cream-2);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item[open] {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--gold-dark);
  line-height: 1;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 22px 20px;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.97rem;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section {
  background: var(--cream);
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 56px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), border-color 0.2s, box-shadow 0.2s;
}

/* When 3 cards collapse to 2-col, span the orphaned last card full width */
@media (max-width: 820px) {
  .contact-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}
.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.contact-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--black) 0%, var(--ink-2) 100%);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.contact-card-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.contact-card-value {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--black);
}
.contact-card-sub {
  font-size: 13px;
  color: var(--text-muted);
}

/* Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin-bottom: 6px;
  color: var(--black);
}
.contact-form-sub {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 0.97rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.contact-form label {
  display: block;
  margin-bottom: 14px;
}
.contact-form label span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.contact-form label span em {
  font-style: normal;
  color: var(--text-muted);
  font-weight: 500;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--cream);
  border: 1.5px solid var(--border-strong);
  border-radius: 10px;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.97rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 164, 74, 0.25);
}
.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  font-size: 16px;
  padding: 16px;
}
.form-note {
  text-align: center;
  margin-top: 14px;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
  min-height: 22px;
}

/* File upload */
.form-file {
  cursor: pointer;
  padding: 10px 14px !important;
}
.form-file::file-selector-button {
  font-family: inherit;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink);
  background: var(--sand);
  border: none;
  border-radius: 8px;
  padding: 9px 14px;
  margin-right: 12px;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}
.form-file::file-selector-button:hover {
  background: var(--gold-light);
}

/* Success message after submit */
.form-success {
  max-width: 720px;
  margin: 0 auto 28px;
  background: #ecf6ec;
  border: 1.5px solid #5a9e5b;
  color: #1f5a23;
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  font-size: 0.97rem;
  box-shadow: var(--shadow-sm);
}
.form-success strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.005em;
  margin-bottom: 4px;
}

/* "or reach us directly" divider */
.contact-or {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dim);
  margin: 32px auto 24px;
  position: relative;
  max-width: 420px;
}
.contact-or::before,
.contact-or::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: var(--border-strong);
}
.contact-or::before { left: 0; }
.contact-or::after { right: 0; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--black);
  color: var(--cream);
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand p {
  color: rgba(247, 242, 232, 0.65);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 16px;
  max-width: 340px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
}
.footer-logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--cream);
}
.footer-logo-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

footer h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 18px;
}
footer ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer ul li,
footer ul li a {
  color: rgba(247, 242, 232, 0.7);
  font-size: 0.95rem;
  transition: color 0.2s;
}
footer ul li a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(247, 242, 232, 0.08);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(247, 242, 232, 0.45);
  font-size: 13px;
}

/* ============================================
   FLOATING CALL
   ============================================ */
.float-call {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--rust);
  color: var(--white);
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px var(--rust-glow);
  z-index: 90;
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(196, 69, 40, 0.55); }
  50% { box-shadow: 0 8px 36px rgba(196, 69, 40, 0.85); }
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-badge {
    align-self: center;
  }
  .hero-logo-wrap {
    min-height: auto;
    order: -1;
  }
  .hero-logo-img {
    max-width: 360px;
  }
  .hero-cta-stack {
    width: 100%;
    max-width: 400px;
  }
  .hero-meta {
    justify-content: center;
    max-width: 100%;
  }
  .hero-sub {
    max-width: 100%;
  }
  .banner-inner,
  .banner-inner-reverse {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 32px;
  }
  .banner-inner-reverse .banner-art { order: -1; }
  .banner-photo {
    transform: rotate(-0.5deg);
    max-width: 100%;
  }
  .area-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(247, 242, 232, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 0 24px;
    border-bottom: 1px solid var(--border);
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease), padding 0.3s var(--ease), gap 0.3s;
    box-shadow: none;
  }
  .nav-links.open {
    max-height: 520px;
    padding: 16px 24px 24px;
    gap: 2px;
    box-shadow: var(--shadow-md);
  }
  .nav-links a {
    padding: 14px 16px;
    font-size: 15px;
  }
  .nav-links .nav-cta {
    margin: 8px 0 0;
    text-align: center;
  }
  .nav-toggle { display: flex; }
  .float-call { display: flex; }
  .top-banner-pill { display: none; }
  .top-banner-inner { justify-content: center; }
}

@media (max-width: 640px) {
  section { padding: 60px 0; }
  .container { padding: 0 20px; }

  /* Hero */
  .hero { padding: 32px 20px 52px; }
  .hero-inner { gap: 24px; }
  .hero h1 { font-size: clamp(2.3rem, 10vw, 3rem); }
  .hero-badge { font-size: 12px; padding: 7px 14px; margin-bottom: 18px; }
  .hero-sub { font-size: 0.97rem; margin-bottom: 24px; }
  .hero-cta-stack { max-width: 100%; gap: 10px; margin-bottom: 24px; }
  .hero-meta { gap: 12px; padding-top: 20px; flex-wrap: nowrap; justify-content: space-around; }
  .hero-meta-divider { display: none; }
  .hero-meta-item strong { font-size: 15px; }
  .hero-meta-item span { font-size: 11px; }
  .hero-logo-img { max-width: 300px; }

  /* Section headers */
  .section-header { margin-bottom: 36px; }
  .section-title { font-size: clamp(1.75rem, 7vw, 2.4rem); }

  /* Tagline */
  .tagline-strip { padding: 14px 0; }
  .tagline-strip-inner { gap: 8px; font-size: 0.82rem; letter-spacing: 0.05em; }
  .tagline-dot { display: none; }

  /* Banners */
  .banner-inner, .banner-inner-reverse { padding: 48px 20px; gap: 24px; }
  .banner-copy h2 { font-size: clamp(1.65rem, 7vw, 2.1rem); }
  .banner-copy p { font-size: 0.97rem; margin-bottom: 20px; }
  .banner-circle { max-width: 280px; }
  .banner-photo { transform: rotate(0deg); }
  .banner-cta-row { gap: 10px; }
  .banner-cta-row .btn-primary,
  .banner-cta-row .btn-secondary,
  .banner-cta-row .btn-secondary-light { flex: 1; min-width: 0; }

  /* Materials */
  .material-card-img { height: 160px; }
  .material-card-body { padding: 18px 18px 20px; gap: 10px; }
  .material-card-body h3 { font-size: 1.35rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .service-card { padding: 20px 16px; }
  .service-icon { width: 44px; height: 44px; border-radius: 10px; margin-bottom: 12px; }
  .service-card h3 { font-size: 1.05rem; }
  .service-card p { font-size: 0.88rem; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; gap: 12px; }
  .process-step { padding: 26px 20px; }
  .process-num { width: 50px; height: 50px; font-size: 20px; margin-bottom: 12px; }
  .process-step h3 { font-size: 1.05rem; }
  .process-step p { font-size: 0.92rem; }

  /* Area */
  .area-list { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .area-item { padding: 12px 10px; font-size: 0.85rem; }
  .area-callout { padding: 32px 20px; border-radius: var(--radius-lg); }
  .area-callout-icon { width: 56px; height: 56px; border-radius: 14px; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { padding: 28px 24px; }
  .review-card::before { font-size: 72px; top: 18px; right: 24px; }
  .review-text { font-size: 1rem; }

  /* Contact */
  .contact-cards { gap: 10px; margin-bottom: 36px; }
  .contact-card { padding: 22px 18px; }
  .contact-form { padding: 24px 18px; border-radius: var(--radius-lg); }
  .contact-form h3 { font-size: 1.35rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 4px; }

  /* Nav */
  .nav-logo-text { display: none; }
  .nav-logo-img { height: 40px; width: auto; }

  /* Top banner */
  .top-banner-phone { font-size: 14px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  section { padding: 52px 0; }

  .hero { padding: 28px 16px 44px; }
  .hero-inner { gap: 20px; }
  .hero h1 { font-size: clamp(2.1rem, 10.5vw, 2.8rem); }
  .hero-logo-img { max-width: 260px; }
  .hero-logo-wrap { padding: 0 32px; }

  .banner-inner, .banner-inner-reverse { padding: 40px 16px; gap: 20px; }
  .banner-copy h2 { font-size: clamp(1.55rem, 7.5vw, 1.9rem); }

  .section-header { margin-bottom: 28px; }
  .section-title { font-size: clamp(1.65rem, 8vw, 2.1rem); }

  .btn-primary, .btn-secondary, .btn-tertiary { padding: 13px 18px; font-size: 14px; }

  /* Revert to single column on small phones — 2-col is too cramped at 375px */
  .services-grid { grid-template-columns: 1fr; gap: 10px; }
  .service-card { padding: 20px 18px; }
  .service-icon { width: 44px; height: 44px; }
  .service-card h3 { font-size: 1.1rem; }
  .service-card p { font-size: 0.92rem; }

  .process-grid { grid-template-columns: 1fr; gap: 10px; }
  .process-step { padding: 28px 20px; }
  .process-num { width: 50px; height: 50px; font-size: 20px; margin-bottom: 14px; }
  .process-step h3 { font-size: 1.1rem; }

  .material-card-img { height: 140px; }

  .contact-form { padding: 20px 16px; }
  .area-callout { padding: 28px 16px; }
  .area-callout h3 { font-size: 1.2rem; }

  .footer-grid { gap: 24px; }
  footer { padding-top: 48px; }
}

/* ===================================================
   MATERIAL TAGS
   =================================================== */
.material-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.material-tag {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--text-muted);
  background: var(--cream-2);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  padding: 4px 10px;
}

/* ===================================================
   DELIVERY PRICING
   =================================================== */
.delivery-pricing {
  margin-top: 52px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.delivery-pricing-head {
  padding: 22px 28px;
  background: var(--cream-2);
  border-bottom: 1px solid var(--border-strong);
}

.delivery-pricing-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink);
  margin-bottom: 4px;
}

.delivery-pricing-note {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin: 0;
}

.delivery-zones {
  display: grid;
}

.delivery-zone {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 28px;
  border-bottom: 1px solid var(--border);
}

.delivery-zone-last {
  border-bottom: none;
}

.zone-area {
  font-size: 0.94rem;
  color: var(--text);
}

.zone-price {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--gold-dark);
  white-space: nowrap;
  flex-shrink: 0;
}

.zone-cta {
  text-decoration: none;
  color: var(--gold-dark);
}

.zone-cta:hover {
  color: var(--gold);
  text-decoration: underline;
}

.delivery-math {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 28px;
  background: rgba(201, 164, 74, 0.08);
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text);
  flex-wrap: wrap;
}

.delivery-math-eg {
  font-size: 0.83rem;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .delivery-pricing-head,
  .delivery-zone,
  .delivery-math {
    padding-left: 20px;
    padding-right: 20px;
  }

  .delivery-zone {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }

  .delivery-math {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .float-call {
    animation: none !important;
  }
}
