/* ============================================================
   Heath's Paint Center — Premium Interactive Website
   Dark Studio Theme · OKLCH Color System
   ============================================================ */

:root {
  /* Backgrounds */
  --bg:        oklch(9%  0.008 260);
  --surface:   oklch(13% 0.008 260);
  --surface-2: oklch(17% 0.008 260);
  --surface-3: oklch(21% 0.008 260);

  /* Text */
  --text:        oklch(96% 0.004 80);
  --text-muted:  oklch(68% 0.008 80);
  --text-subtle: oklch(45% 0.006 80);

  /* Borders */
  --border:      oklch(22% 0.008 260);
  --border-soft: oklch(26% 0.008 260);

  /* Accent — crimson red (paint brand) */
  --accent:       oklch(58% 0.22 22);
  --accent-light: oklch(68% 0.18 22);

  /* Paint palette (used in canvas — hex for compatibility) */
  --paint-crimson: #E8192C;
  --paint-orange:  #FF6B35;
  --paint-yellow:  #F9C846;
  --paint-teal:    #00C9A7;
  --paint-cobalt:  #4A7FFF;
  --paint-purple:  #8B5CF6;
  --paint-green:   #22C55E;

  /* Type */
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body:    'Barlow', sans-serif;

  /* Layout */
  --max-w: 1320px;
  --pad-x: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(5rem, 10vw, 9rem);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

img { display: block; max-width: 100%; }
a  { color: inherit; }

/* ── Typography ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  font-weight: 800;
  color: var(--text);
}
h1 { font-size: clamp(3rem, 7.5vw, 7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; }
h4 { font-size: clamp(1rem, 1.6vw, 1.25rem); font-weight: 700; }
p  { color: var(--text-muted); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── Layout helpers ─────────────────────────────────────── */
.container {
  width: 90%;
  max-width: var(--max-w);
  margin-inline: auto;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 3px;
  text-decoration: none;
  cursor: none;
  border: none;
  transition: filter 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--text); }
.btn-primary:hover { filter: brightness(1.2); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid oklch(30% 0.008 260);
}
.btn-ghost:hover { border-color: oklch(50% 0.008 260); }
.btn-outline {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-full { width: 100%; justify-content: center; }

/* ── Custom Cursor ──────────────────────────────────────── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
}

.cursor-dot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--text);
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s, background 0.3s, opacity 0.25s;
}

.cursor-ring {
  position: absolute;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid oklch(58% 0.22 22 / 0.55);
  transform: translate(-50%, -50%);
  transition: width 0.35s ease, height 0.35s ease, border-color 0.3s, opacity 0.3s;
}

/* Hover state: links/buttons */
.cursor.on-link .cursor-dot  { width: 14px; height: 14px; }
.cursor.on-link .cursor-ring { width: 52px; height: 52px; opacity: 0.9; }

/* Brush state: over paint-reveal images */
.cursor.on-brush .cursor-dot {
  width: 52px; height: 52px;
  background: var(--brush-color, #E8192C);
  opacity: 0.22;
}
.cursor.on-brush .cursor-ring {
  width: 56px; height: 56px;
  border-color: var(--brush-color, #E8192C);
  opacity: 0.7;
}

/* ── Nav ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 1.25rem var(--pad-x);
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: oklch(9% 0.008 260 / 0.88);
  backdrop-filter: blur(18px);
  border-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: var(--max-w);
  margin-inline: auto;
}

.nav-logo img { height: 46px; width: auto; object-fit: contain; }

.nav-links {
  display: flex;
  gap: 2.25rem;
  margin-left: auto;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
  cursor: none;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  padding: 0.5rem 1.25rem;
  background: var(--accent);
  color: var(--text);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 3px;
  transition: filter 0.2s;
  cursor: none;
}
.nav-cta:hover { filter: brightness(1.2); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
  margin-left: auto;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: all 0.3s; }

.mobile-menu {
  display: none;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  background: var(--surface);
  border-top: 1px solid var(--border);
  transition: max-height 0.4s ease;
}
.mobile-menu.open { max-height: 400px; }
.mobile-menu a {
  display: block;
  padding: 1rem var(--pad-x);
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  transition: color 0.2s, padding 0.2s;
  cursor: none;
}
.mobile-menu a:hover { color: var(--text); padding-left: calc(var(--pad-x) + 10px); }
.mobile-cta { color: var(--accent) !important; font-weight: 600; }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
  z-index: 0;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

#drip-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
}

/* Soft vignette for text readability — no solid black, just a dark center haze */
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%,
      oklch(5% 0.008 260 / 0.55) 0%,
      transparent 100%
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 var(--pad-x);
}

.hero-tag {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(18px);
}

.hero-title {
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(22px);
  text-shadow: 0 4px 40px oklch(0% 0 0 / 0.7);
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: oklch(70% 0.008 80);
  max-width: 58ch;
  margin: 0 auto 2.5rem;
  opacity: 0;
  transform: translateY(18px);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(18px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-subtle);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, transparent, var(--text-muted));
  animation: scrollpulse 1.8s ease-in-out infinite;
}
@keyframes scrollpulse {
  0%, 100% { opacity: 0.25; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── Heritage Strip ─────────────────────────────────────── */
.heritage-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.75rem 0;
}

.heritage-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.heritage-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}

.heritage-num {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.heritage-num sup { font-size: 0.5em; vertical-align: super; }

.heritage-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
  font-weight: 600;
}

.heritage-rule {
  width: 1px; height: 36px;
  background: var(--border);
}

/* ── Marquee ────────────────────────────────────────────── */
.marquee-section {
  overflow: hidden;
  background: var(--accent);
  padding: 0.8rem 0;
}
.marquee-track { overflow: hidden; white-space: nowrap; }
.marquee-content {
  display: inline-flex;
  gap: 1.75rem;
  animation: marquee 32s linear infinite;
}
.marquee-content span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}
.marquee-content .sep { opacity: 0.5; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Paint Reveal (shared) ──────────────────────────────── */
.paint-reveal {
  position: relative;
  overflow: hidden;
  display: block;
  cursor: none;
}
.paint-reveal .reveal-img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}
.reveal-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.reveal-hint {
  position: absolute;
  top: 1rem; right: 1rem;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.4s;
}
.reveal-hint span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: oklch(9% 0.008 260 / 0.72);
  backdrop-filter: blur(10px);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.reveal-hint span::before { content: '🖌'; font-size: 0.65rem; }
.paint-reveal.brushing .reveal-hint { opacity: 0; }

/* ── Services ───────────────────────────────────────────── */
.services-section { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
}

.services-img-col { position: relative; }
.services-img-col .paint-reveal {
  height: 100%;
  min-height: 640px;
}

.services-text-col {
  padding: var(--section-y) clamp(2rem, 5%, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
  background: var(--bg);
}

.services-header { display: flex; flex-direction: column; gap: 1rem; }
.services-header h2 { margin-bottom: 0.25rem; }
.services-header p { max-width: 45ch; }

.services-cols {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.col-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.service-list li::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  opacity: 0.7;
}

/* ── Brands ─────────────────────────────────────────────── */
.brands-section {
  background: var(--surface);
  padding: var(--section-y) 0;
  border-top: 1px solid var(--border);
}

.brands-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 3rem;
}
.brands-header p { max-width: 50ch; margin-inline: auto; }

.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.brand-item {
  background: var(--surface);
  padding: 2.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  transition: background 0.25s;
  min-height: 150px;
}
.brand-item:hover { background: var(--surface-2); }
.brand-item img {
  max-height: 55px;
  max-width: 110px;
  object-fit: contain;
  filter: brightness(0.85) saturate(0.7);
  transition: filter 0.3s;
}
.brand-item:hover img { filter: brightness(1) saturate(1); }
.brand-item span {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
  font-weight: 600;
  text-align: center;
}
.brand-wordmark {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.25;
}

/* ── About ──────────────────────────────────────────────── */
.about-section {
  background: var(--bg);
  padding: var(--section-y) 0;
  border-top: 1px solid var(--border);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-text h2 { margin-bottom: 0.25rem; }

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.about-tags span {
  font-size: 0.72rem;
  padding: 0.35rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: border-color 0.2s, color 0.2s;
}
.about-tags span:hover { border-color: var(--accent); color: var(--text); }

.about-img-col { position: relative; }
.about-img-col .paint-reveal {
  border-radius: 4px;
  overflow: hidden;
  height: 520px;
}

.about-badge {
  position: absolute;
  bottom: -1.75rem; left: -1.75rem;
  background: var(--accent);
  padding: 1.25rem 1.5rem;
  border-radius: 4px;
  text-align: center;
  z-index: 2;
  box-shadow: 0 12px 40px oklch(58% 0.22 22 / 0.3);
}
.badge-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.badge-text {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: oklch(95% 0.05 22);
  line-height: 1.45;
}

/* ── Panoramic Strip ─────────────────────────────────────── */
.panoramic-section {
  position: relative;
  border-top: 1px solid var(--border);
}

.panoramic-reveal {
  height: 320px;
  width: 100%;
}
.panoramic-img { object-position: center 40%; }

.panoramic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    oklch(9% 0.008 260 / 0.85) 0%,
    oklch(9% 0.008 260 / 0.4) 50%,
    transparent 100%
  );
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: center;
}

.panoramic-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 480px;
  pointer-events: all;
}
.panoramic-text h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

/* ── Callout Cards ──────────────────────────────────────── */
.callout-section {
  background: var(--surface);
  padding: var(--section-y) 0;
  border-top: 1px solid var(--border);
}

.callout-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.callout-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: border-color 0.3s, transform 0.3s;
}
.callout-card:hover {
  border-color: oklch(38% 0.15 22);
  transform: translateY(-4px);
}
.callout-icon { font-size: 1.75rem; }
.callout-card h4 { margin-bottom: 0; }
.callout-card p { font-size: 0.88rem; }

/* ── Contact ─────────────────────────────────────────────── */
.contact-section {
  background: var(--bg);
  padding: var(--section-y) 0;
  border-top: 1px solid var(--border);
}

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

.contact-left { display: flex; flex-direction: column; gap: 1.75rem; }
.contact-left h2 { margin-bottom: 0.25rem; }

.contact-details { display: flex; flex-direction: column; }

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:first-child { border-top: 1px solid var(--border); }
.contact-link { text-decoration: none; transition: opacity 0.2s; cursor: none; }
.contact-link:hover { opacity: 0.75; }

.contact-key {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-subtle);
  font-weight: 700;
}
.contact-item span { font-size: 1rem; color: var(--text-muted); }

.hours { display: flex; flex-direction: column; gap: 0.3rem; }
.hours > div {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Form */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.5rem;
}
.form-card h3 { margin-bottom: 1.75rem; font-size: 1.5rem; }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
  font-weight: 700;
}
.form-group input,
.form-group textarea {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  width: 100%;
  transition: border-color 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-subtle); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: oklch(45% 0.14 22);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-note {
  font-size: 0.72rem;
  color: var(--text-subtle);
  text-align: center;
}

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: oklch(7% 0.008 260);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
}

.footer-left { display: flex; flex-direction: column; gap: 1rem; }
.footer-logo { height: 48px; width: auto; object-fit: contain; }
.footer-left p { font-size: 0.875rem; line-height: 1.7; }
.footer-social {
  display: inline-block;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: opacity 0.2s;
  cursor: none;
}
.footer-social:hover { opacity: 0.7; }

.footer-nav { display: flex; flex-direction: column; gap: 0.7rem; padding-top: 0.25rem; }
.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
  cursor: none;
}
.footer-nav a:hover { color: var(--text); }

.footer-right { display: flex; flex-direction: column; gap: 0.75rem; padding-top: 0.25rem; }
.footer-phone {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  cursor: none;
}
.footer-hours { display: flex; flex-direction: column; gap: 0.25rem; }
.footer-hours p { font-size: 0.8rem; color: var(--text-subtle); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.75rem; color: var(--text-subtle); }

/* ── Scroll Reveals (initial hidden state) ──────────────── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  will-change: opacity, transform;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .brands-grid { grid-template-columns: repeat(4, 1fr); }
  .callout-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 4rem; }
  .about-img-col .paint-reveal { height: 380px; }
  .about-badge { bottom: -1rem; left: 1rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-left { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .services-img-col .paint-reveal { min-height: 380px; height: 380px; }
  .services-text-col { padding: 3rem 5%; }

  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .callout-inner { grid-template-columns: 1fr; }
  .panoramic-reveal { height: 240px; }
  .panoramic-overlay { background: oklch(9% 0.008 260 / 0.75); }

  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.25rem; }

  .heritage-rule { display: none; }

  /* restore native cursor on touch/mobile */
  body { cursor: auto; }
  .cursor { display: none; }
}
