/* ============================================================
   Pinecrest Automotive — Brand Styles
   Palette: deep charcoal, graphite, brushed steel, pine green, warm amber
   ============================================================ */
:root {
  --charcoal: #0d0f11;
  --graphite: #161a1d;
  --graphite-2: #1d2227;
  --steel: #2c3036;
  --steel-border: #3a3f46;
  --steel-light: #6b7480;
  --ink: #edf0f4;
  --ink-muted: rgba(237,240,244,0.62);
  --pine: #3d7a52;
  --pine-dim: rgba(61,122,82,0.18);
  --pine-glow: rgba(61,122,82,0.35);
  --amber: #c97a14;
  --amber-dim: rgba(201,122,20,0.18);
  --amber-bright: #e08c1a;

  --font-display: "Barlow Condensed", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --r: 8px;
  --section-pad: clamp(72px, 10vw, 120px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scrollbar-width: none; scroll-behavior: smooth; }
html::-webkit-scrollbar { display: none; }
body {
  background: var(--charcoal);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   Navigation
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.35s, border-color 0.35s;
}
.site-nav.scrolled {
  background: rgba(13,15,17,0.94);
  border-bottom: 1px solid var(--steel-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}
.logo-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--ink);
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.12em;
  line-height: 1;
  display: flex;
  flex-direction: column;
}
.logo-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--pine);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-muted);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--pine);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--r);
  letter-spacing: 0.03em;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--pine-dim); background: #4a9462; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  z-index: 99;
  background: rgba(13,15,17,0.97);
  border-bottom: 1px solid var(--steel-border);
  padding: 20px 28px 28px;
  flex-direction: column;
  gap: 0;
  backdrop-filter: blur(10px);
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.25s, opacity 0.25s;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-link {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--steel);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--ink); }
.mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 14px 24px;
  background: var(--pine);
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--r);
  transition: background 0.2s;
}
.mobile-cta:hover { background: #4a9462; }

/* ============================================================
   Cinematic scroll sections
   ============================================================ */
.cinematic {
  position: relative;
  height: 500vh;
}
.sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--charcoal);
}
.sticky canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(130% 90% at 50% 50%, transparent 40%, rgba(0,0,0,0.72) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.52) 0%, transparent 22%, transparent 65%, rgba(0,0,0,0.78) 100%);
}
.vignette-pine {
  background:
    radial-gradient(130% 90% at 50% 50%, transparent 35%, rgba(5,14,8,0.78) 100%),
    linear-gradient(180deg, rgba(5,14,8,0.5) 0%, transparent 22%, transparent 65%, rgba(5,14,8,0.85) 100%);
}

/* Hero overlay */
.overlay { position: absolute; inset: 0; z-index: 10; text-align: center; padding: 0 24px; }
.reveal-line {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
  max-width: min(92vw, 900px);
  opacity: 0;
  will-change: opacity, transform;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--pine);
  top: calc(50% - 140px);
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 10vw, 8rem);
  letter-spacing: -0.01em;
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: 0 4px 60px rgba(0,0,0,0.8);
}
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 400;
  color: var(--ink-muted);
  max-width: 520px;
  line-height: 1.5;
  top: calc(50% + 110px);
}
.hero-cta {
  position: absolute;
  left: 50%; top: calc(50% + 170px);
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: var(--amber);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--r);
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background 0.2s;
  opacity: 0;
  will-change: opacity;
}
.hero-cta:hover { background: var(--amber-bright); }
.hero-mid {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 7vw, 5.5rem);
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-transform: uppercase;
}
.hero-mid .amber { color: var(--amber); }

/* Detail overlay */
.detail-overlay { text-align: left; }
.detail-tag {
  position: absolute;
  left: clamp(28px, 8vw, 120px); top: calc(50% - 120px);
  font-family: var(--font-body);
  font-size: clamp(11px, 1.5vw, 14px);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pine);
}
.detail-title {
  position: absolute;
  left: clamp(28px, 8vw, 120px); top: 50%;
  transform: translateY(-50%);
  width: auto;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 8vw, 7rem);
  letter-spacing: -0.01em;
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: 0 4px 60px rgba(0,0,0,0.9);
}
.detail-title .pine-text { color: var(--pine); }
.detail-sub {
  position: absolute;
  left: clamp(28px, 8vw, 120px); top: calc(50% + 120px);
  width: min(520px, 85vw);
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--ink-muted);
  line-height: 1.6;
}
.detail-cta {
  position: absolute;
  left: clamp(28px, 8vw, 120px); top: calc(50% + 195px);
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  border: 1.5px solid var(--pine);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--r);
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  opacity: 0;
  will-change: opacity;
}
.detail-cta:hover { background: var(--pine); color: var(--ink); }

.scroll-hint {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4em;
  color: rgba(237,240,244,0.5);
  animation: bob 2s ease-in-out infinite;
  transition: opacity 0.4s;
}
@keyframes bob {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   Reveal animations
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
  transition-delay: var(--delay, 0ms);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Section scaffolding
   ============================================================ */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--section-pad) 28px;
}
.section-header {
  margin-bottom: 56px;
  max-width: 640px;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pine);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-lead {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--ink-muted);
  line-height: 1.65;
  max-width: 560px;
}

/* ============================================================
   Services section
   ============================================================ */
.services-section {
  background: var(--graphite);
  border-top: 1px solid var(--steel-border);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2px;
  background: var(--steel-border);
  border: 1px solid var(--steel-border);
  border-radius: 12px;
  overflow: hidden;
}
.service-card {
  background: var(--graphite);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.25s;
}
.service-card:hover { background: var(--graphite-2); }
.service-icon {
  width: 44px;
  height: 44px;
}
.service-icon svg { width: 100%; height: 100%; }
.service-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.service-desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink-muted);
  line-height: 1.6;
  flex: 1;
}
.service-actions {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.btn-book {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  background: var(--pine);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}
.btn-book:hover { background: #4a9462; }
.btn-estimate {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border: 1.5px solid var(--steel-border);
  color: var(--ink-muted);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  letter-spacing: 0.03em;
  transition: border-color 0.2s, color 0.2s;
}
.btn-estimate:hover { border-color: var(--pine); color: var(--ink); }

/* ============================================================
   Trust section
   ============================================================ */
.trust-section {
  background: var(--charcoal);
  border-top: 1px solid var(--steel-border);
}
.trust-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.trust-body {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--ink-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.trust-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.pillar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pillar-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.pillar-icon svg { width: 100%; height: 100%; }
.pillar-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.pillar-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ============================================================
   Stats section
   ============================================================ */
.stats-section {
  background: var(--graphite);
  border-top: 1px solid var(--steel-border);
  border-bottom: 1px solid var(--steel-border);
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 60px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-light);
}
.stat-divider {
  width: 1px;
  height: 56px;
  background: var(--steel-border);
  flex-shrink: 0;
}

/* ============================================================
   Reviews section
   ============================================================ */
.reviews-section {
  background: var(--charcoal);
  border-top: 1px solid var(--steel-border);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--graphite);
  border: 1px solid var(--steel-border);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.25s;
}
.review-card:hover { border-color: var(--pine); }
.stars {
  color: var(--amber);
  font-size: 18px;
  letter-spacing: 3px;
}
.review-text {
  font-family: var(--font-body);
  font-size: 0.9625rem;
  color: var(--ink-muted);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.reviewer {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.reviewer-name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.reviewer-info {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--steel-light);
}

/* ============================================================
   Service area section
   ============================================================ */
.area-section {
  background: var(--graphite);
  border-top: 1px solid var(--steel-border);
}
.area-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.area-body {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  padding: 14px 28px;
  background: var(--pine);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--r);
  letter-spacing: 0.03em;
  transition: background 0.2s;
}
.btn-primary:hover { background: #4a9462; }
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: flex-start;
}
.area-tag {
  padding: 8px 16px;
  border: 1.5px solid var(--steel-border);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--steel-light);
  transition: border-color 0.2s, color 0.2s;
}
.area-tag.active {
  border-color: var(--pine);
  color: var(--ink);
  background: var(--pine-dim);
}

/* ============================================================
   Contact + Booking section
   ============================================================ */
.contact-section {
  background: var(--charcoal);
  border-top: 1px solid var(--steel-border);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.info-block {
  margin-bottom: 28px;
}
.info-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pine);
  margin-bottom: 6px;
}
.info-value {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.5;
}
.info-link {
  color: var(--amber);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.info-link:hover { color: var(--amber-bright); }
.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  border-top: 1px solid var(--steel-border);
  padding-top: 20px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink-muted);
  padding: 4px 0;
}
.hours-time {
  font-weight: 600;
  color: var(--ink);
}
.hours-row.closed .hours-time { color: var(--steel-light); }

/* Booking form */
.booking-form {
  background: var(--graphite);
  border: 1px solid var(--steel-border);
  border-radius: 12px;
  padding: 40px;
}
.form-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.appt-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--charcoal);
  border: 1.5px solid var(--steel-border);
  border-radius: 6px;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7480' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pine);
}
.form-group textarea { resize: vertical; min-height: 88px; }
.btn-submit {
  padding: 15px 28px;
  background: var(--amber);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: var(--r);
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--amber-bright); }
.form-note {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--steel-light);
  line-height: 1.5;
}
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 40px 20px;
  min-height: 280px;
}
.form-success svg {
  width: 56px;
  height: 56px;
}
.form-success h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-success p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink-muted);
  line-height: 1.6;
  max-width: 360px;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--graphite);
  border-top: 1px solid var(--steel-border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 28px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.14em;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px;
}
.footer-logo span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--pine);
}
.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--steel-light);
  line-height: 1.6;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--pine); }
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-legal p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--steel-light);
  line-height: 1.5;
}
.copyright { color: var(--steel); }
.footer-pageify {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--steel-light);
  margin-top: 4px;
}
.footer-pageify a {
  color: var(--steel-light);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-pageify a:hover { color: var(--pine); }
.footer-demo {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--amber);
  margin-top: 8px;
  opacity: 0.85;
}

.demo-notice {
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.35);
  border-radius: 6px;
  padding: 10px 14px;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--amber);
  line-height: 1.5;
}

/* ============================================================
   Mobile responsive
   ============================================================ */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .mobile-menu { display: flex; }
  .trust-layout, .area-layout, .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .trust-pillars { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .stats-inner { gap: 0; }
  .stat { padding: 20px 32px; }
  .stat-divider { display: none; }
  .hero-overlay .reveal-line { width: min(88vw, 680px); }
}

@media (max-width: 600px) {
  :root { --section-pad: 56px; }
  .cinematic { height: 450vh; }
  .hero-eyebrow { top: calc(50% - 120px); font-size: 11px; }
  .hero-sub { top: calc(50% + 95px); }
  .hero-cta { top: calc(50% + 155px); padding: 12px 24px; font-size: 14px; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .detail-tag { top: calc(50% - 110px); }
  .detail-sub { top: calc(50% + 105px); }
  .detail-cta { top: calc(50% + 178px); }
  .trust-pillars { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .booking-form { padding: 28px 20px; }
  .stats-inner { flex-direction: column; gap: 0; }
  .stat-divider { width: 80%; height: 1px; margin: 0 auto; }
  .stat { padding: 20px; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; min-height: 44px; }
  .form-group textarea { min-height: 88px; }
  .btn-book,
  .btn-estimate { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  .reveal-line { width: min(88vw, 680px); }
  .hero-mid { font-size: clamp(1.6rem, 5.5vw, 2.8rem); }
  .hero-title { font-size: clamp(2.6rem, 8vw, 5rem); }
  .detail-title { max-width: calc(100vw - 56px); }
}

/* ─── LANDSCAPE ──────────────────────────────────────────── */
@media (max-width: 900px) and (orientation: landscape) {
  .sticky { min-height: 100svh; }
  .hero-title { font-size: clamp(2.5rem, 8vw, 4rem); }
}

/* ─── TOUCH DEVICES ──────────────────────────────────────── */
@media (hover: none) and (pointer: coarse) {
  .btn-book,
  .btn-estimate,
  .btn-submit,
  .btn-primary,
  .btn-outline { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  .btn-book:hover { background: var(--pine); }
  .service-card:hover { background: var(--graphite); }
  .review-card:hover { border-color: var(--steel-border); }
  .pkg-card:hover { transform: none; box-shadow: none; }
  .nav-links a { min-height: 44px; display: flex; align-items: center; }
  .footer-links a { min-height: 44px; display: flex; align-items: center; }
}

/* ─── REDUCED MOTION ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
