/* ============================================
   AUTO & TRADE TEMPLATE v3.0
   Williamson Automation — Premium Overhaul
   Customized for Oakwood Service Center
   ============================================ */

/* --- RESET & VARIABLES --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand: #D4790E;
  --brand-light: #E8922A;
  --brand-dark: #B06208;
  --brand-rgb: 212, 121, 14;
  --bg: #0c0c0c;
  --bg-alt: #131313;
  --bg-card: #181818;
  --bg-card-hover: #1e1e1e;
  --bg-light: #F5F2ED;
  --text: #F0EDE8;
  --text-muted: #8A8580;
  --text-dark: #2D2622;
  --border: rgba(212, 121, 14, 0.1);
  --border-subtle: rgba(255, 255, 255, 0.04);
  --heading-font: 'Teko', sans-serif;
  --body-font: 'Work Sans', sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body-font);
  font-size: clamp(15px, 0.9vw + 13px, 17px);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* --- UTILITIES --- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }

/* Noise texture (reusable) */
.noise-overlay {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 200px 200px;
}

/* ============================================
   SCROLL REVEAL SYSTEM — VARIED DIRECTIONS
   ============================================ */
[data-reveal] {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              clip-path 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].revealed { opacity: 1; transform: none; clip-path: none; }

/* Default: gentle slide up */
[data-reveal="up"],
[data-reveal] { transform: translateY(24px); }
/* Slide from left */
[data-reveal="left"] { transform: translateX(-30px); }
/* Slide from right */
[data-reveal="right"] { transform: translateX(30px); }
/* Scale in */
[data-reveal="scale"] { transform: scale(0.95); }
/* Clip reveal (wipe from bottom) */
[data-reveal="clip"] {
  transform: none;
  clip-path: inset(0 0 100% 0);
}
[data-reveal="clip"].revealed { clip-path: inset(0 0 0% 0); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  [data-reveal], .hero-anim { opacity: 1 !important; transform: none !important; clip-path: none !important; animation: none !important; }
}

/* --- SECTION TYPOGRAPHY --- */
.section-label {
  font-family: var(--body-font); font-size: clamp(11px, 0.7vw + 9px, 13px);
  font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 14px;
  display: flex; align-items: center; gap: 14px;
}
.section-label::before {
  content: ''; width: 0; height: 2px; background: var(--brand); flex-shrink: 0;
  transition: width 0.6s var(--ease-out) 0.3s;
}
.revealed .section-label::before,
[data-reveal].revealed .section-label::before { width: 36px; }

.section-heading {
  font-family: var(--heading-font); font-weight: 600;
  font-size: clamp(2.2rem, 5vw + 0.8rem, 3.8rem);
  letter-spacing: 0.04em; text-transform: uppercase; line-height: 1.0; margin-bottom: 16px;
}
.section-sub {
  font-size: clamp(14px, 0.9vw + 12px, 16px); color: var(--text-muted);
  max-width: 48ch; line-height: 1.6;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body-font); font-weight: 600;
  font-size: clamp(13px, 0.8vw + 11px, 15px); letter-spacing: 0.06em; text-transform: uppercase;
  padding: 16px 36px; border-radius: 3px;
  transition: all 0.35s var(--ease-out);
  min-height: 48px; position: relative;
}
.btn--primary { background: var(--brand); color: #111; }
.btn--primary:hover {
  background: var(--brand-light); transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(var(--brand-rgb), 0.25);
}
.btn--glow {
  box-shadow: 0 0 20px rgba(var(--brand-rgb), 0.2), 0 0 60px rgba(var(--brand-rgb), 0.08);
}
.btn--glow:hover {
  box-shadow: 0 0 28px rgba(var(--brand-rgb), 0.35), 0 0 80px rgba(var(--brand-rgb), 0.12);
}
.btn--outline {
  border: 2px solid rgba(var(--brand-rgb), 0.4); color: var(--brand); background: transparent;
}
.btn--outline:hover {
  border-color: var(--brand); background: rgba(var(--brand-rgb), 0.06); transform: translateY(-2px);
}
.btn--large { padding: 20px 48px; font-size: clamp(14px, 0.9vw + 12px, 16px); }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0; transition: all 0.4s var(--ease-out);
}
.nav.scrolled {
  background: rgba(12, 12, 12, 0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--border-subtle), 0 8px 32px rgba(0,0,0,0.4);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__brand {
  font-family: var(--heading-font); font-weight: 600;
  font-size: clamp(1.2rem, 1.8vw + 0.6rem, 1.6rem);
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--text); line-height: 1;
}
.nav__brand-accent, .footer__brand-accent { color: var(--brand); font-weight: 700; }
.nav__links { display: flex; align-items: center; gap: clamp(20px, 2.5vw, 36px); }
.nav__link {
  font-weight: 500; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); transition: color 0.3s; position: relative;
}
.nav__link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--brand); transition: width 0.3s var(--ease-out);
}
.nav__link:hover { color: var(--text); }
.nav__link:hover::after { width: 100%; }
.nav__cta {
  background: var(--brand); color: #111; font-weight: 700; font-size: 13px;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 12px 24px; border-radius: 3px;
  transition: all 0.3s var(--ease-out); min-height: 48px;
  display: inline-flex; align-items: center; gap: 8px;
}
.nav__cta:hover {
  background: var(--brand-light); transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(var(--brand-rgb), 0.3);
}

/* Hamburger */
.nav__hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 6px;
  width: 48px; height: 48px; padding: 12px;
}
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--text); transition: all 0.35s var(--ease-out); transform-origin: center; }
.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* Mobile menu */
.nav__mobile {
  display: none; position: fixed; inset: 0;
  background: rgba(12, 12, 12, 0.97); backdrop-filter: blur(24px);
  z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
.nav__mobile.open { display: flex; }
.nav__mobile-link {
  font-family: var(--heading-font); font-size: 2.2rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); transition: color 0.3s;
}
.nav__mobile-link:hover { color: var(--brand); }
.nav__cta--mobile { font-family: var(--heading-font); font-size: 1.4rem; padding: 16px 40px; margin-top: 12px; }

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center;
  padding: clamp(100px, 14vh, 160px) 0 clamp(60px, 8vh, 100px);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; background: var(--bg); }
.hero__media img.img-error { opacity: 0; }

/* Fallback gradient — cinematic directional lighting */
.hero__fallback {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(var(--brand-rgb), 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(var(--brand-rgb), 0.08) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 100%, rgba(30, 22, 10, 0.6) 0%, transparent 60%),
    linear-gradient(150deg, #0a0908 0%, #141008 30%, #0c0a06 60%, #0c0c0c 100%);
}

/* Grid lines — masked for organic fade */
.hero__grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(var(--brand-rgb), 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--brand-rgb), 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 25% 65%, rgba(0,0,0,0.5) 0%, transparent 50%);
  -webkit-mask-image: radial-gradient(ellipse at 25% 65%, rgba(0,0,0,0.5) 0%, transparent 50%);
}

/* Noise */
.hero__noise {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 200px 200px;
}

/* Dark overlay — lighter so gradient shows through */
.hero__overlay {
  position: absolute; inset: 0; z-index: 3;
  background:
    linear-gradient(to top, var(--bg) 0%, rgba(12,12,12,0.5) 25%, rgba(12,12,12,0.1) 50%, rgba(12,12,12,0.3) 100%),
    linear-gradient(to right, rgba(12,12,12,0.4) 0%, transparent 70%);
}

/* AMBIENT GLOW ORBS — the depth that makes it premium */
.hero__glow {
  position: absolute; pointer-events: none; z-index: 2; border-radius: 50%;
  will-change: transform;
}
.hero__glow--top {
  top: 5%; right: -5%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(var(--brand-rgb), 0.18) 0%, transparent 65%);
}
.hero__glow--bottom {
  bottom: 5%; left: -3%; width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(var(--brand-rgb), 0.2) 0%, transparent 60%);
}

/* Content */
.hero__content { position: relative; z-index: 5; max-width: 720px; }

/* Hero entrance animations — VARIED DIRECTIONS */
.hero-anim { opacity: 0; animation-fill-mode: forwards; animation-duration: 1.1s; animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1); animation-delay: var(--d, 0s); }
.hero-anim[style*="--dir:scale"] { transform: scale(0.85); animation-name: heroScale; }
.hero-anim[style*="--dir:left"]  { transform: translateX(-40px); animation-name: heroLeft; }
.hero-anim[style*="--dir:fade"]  { animation-name: heroFade; }
.hero-anim[style*="--dir:up"]    { transform: translateY(30px); animation-name: heroUp; }

@keyframes heroScale { to { opacity: 1; transform: scale(1); } }
@keyframes heroLeft  { to { opacity: 1; transform: translateX(0); } }
@keyframes heroFade  { to { opacity: 1; } }
@keyframes heroUp    { to { opacity: 1; transform: translateY(0); } }

/* Badge */
.hero__badge {
  display: inline-flex; flex-direction: column; align-items: center;
  background: var(--brand); color: #111;
  padding: 14px 18px 10px; border-radius: 3px; margin-bottom: 24px; line-height: 1;
  box-shadow: 0 0 40px rgba(var(--brand-rgb), 0.3), 0 0 80px rgba(var(--brand-rgb), 0.1);
}
.hero__badge-number { font-family: var(--heading-font); font-weight: 700; font-size: 2rem; letter-spacing: 0.02em; }
.hero__badge-label { font-weight: 700; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; }

.hero__overline {
  font-size: clamp(12px, 0.7vw + 10px, 14px); font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px;
}
.hero__title {
  font-family: var(--heading-font); font-weight: 700;
  font-size: clamp(3.2rem, 8vw + 0.5rem, 6.5rem);
  letter-spacing: 0.03em; text-transform: uppercase; line-height: 0.92; color: var(--text);
  margin-bottom: 18px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.hero__tagline {
  font-size: clamp(0.95rem, 1.3vw + 0.5rem, 1.2rem); font-weight: 400;
  color: var(--text-muted); margin-bottom: 36px; max-width: 460px; line-height: 1.55;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* Scroll indicator */
.hero__scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero__scroll-text { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }
.hero__scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--brand), transparent); animation: scrollPulse 2.5s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }

@media (max-width: 768px) {
  .hero { padding-bottom: clamp(60px, 10vh, 100px); }
  .hero__scroll { display: none; }
  .hero__cta .btn--outline { display: none; }
  .hero__glow--top { width: 350px; height: 350px; top: 0; right: -20%; animation: none; }
  .hero__glow--bottom { width: 250px; height: 250px; animation: none; }
  .hero__grid { animation: none; }
  .hero__title { font-size: clamp(2.6rem, 11vw, 3.8rem); }
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  position: relative; padding: clamp(32px, 5vw, 56px) 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(var(--brand-rgb), 0.06) 0%, transparent 60%),
    var(--bg-alt);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.trust-strip__glow {
  position: absolute; top: -80%; left: 25%; width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(var(--brand-rgb), 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.trust-strip__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: center;
  position: relative; z-index: 1;
  max-width: 900px; margin: 0 auto;
}
.trust-strip__item {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 8px 0;
}
.trust-strip__number {
  font-family: var(--heading-font); font-weight: 700;
  font-size: clamp(2rem, 3vw + 0.6rem, 3rem);
  color: var(--brand); line-height: 1;
}
.trust-strip__number--text { font-size: clamp(0.9rem, 1.2vw + 0.4rem, 1.2rem); font-weight: 600; }
.trust-strip__label {
  font-size: clamp(10px, 0.6vw + 8px, 12px); font-weight: 600;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.12em;
}

@media (max-width: 600px) {
  .trust-strip__grid { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
}

/* ============================================
   SERVICES — ASYMMETRIC LAYOUT
   ============================================ */
.services {
  position: relative; background: var(--bg-alt);
  padding: clamp(5rem, 10vw, 8rem) 0;
  overflow: hidden;
}
.services__glow {
  position: absolute; top: 15%; right: -15%; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(var(--brand-rgb), 0.06) 0%, transparent 65%);
  pointer-events: none;
}
.services__noise {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 200px;
}
.services .container { position: relative; z-index: 1; }
.services__header { margin-bottom: clamp(36px, 5vw, 56px); }

/* Featured service — full width, horizontal layout */
.services__featured { margin-bottom: 20px; }
.service-card--featured {
  display: flex; align-items: center; gap: clamp(24px, 3vw, 40px);
  background: var(--bg-card); border: 1px solid var(--border);
  padding: clamp(28px, 3vw, 44px); border-radius: 3px;
  transition: all 0.4s var(--ease-out);
}
.service-card--featured:hover {
  border-color: rgba(var(--brand-rgb), 0.25);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 60px rgba(var(--brand-rgb), 0.06);
  transform: translateY(-2px);
}
.service-card--featured .service-card__icon { width: 56px; height: 56px; flex-shrink: 0; }
.service-card--featured .service-card__body { flex: 1; }

/* 3-column grid for remaining services */
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

.service-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  padding: clamp(28px, 3vw, 40px); border-radius: 3px;
  transition: all 0.4s var(--ease-out); position: relative;
}
.service-card:hover {
  border-color: var(--border);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 40px rgba(var(--brand-rgb), 0.05);
}
.service-card__icon { width: 40px; height: 40px; color: var(--brand); margin-bottom: 20px; transition: transform 0.4s var(--ease-out); }
.service-card:hover .service-card__icon { transform: scale(1.1) rotate(-3deg); }
.service-card__icon svg { width: 100%; height: 100%; }
.service-card__name {
  font-family: var(--heading-font); font-weight: 500;
  font-size: clamp(1.3rem, 1.8vw + 0.4rem, 1.7rem);
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--text); margin-bottom: 8px;
}
.service-card__desc { font-size: clamp(13px, 0.7vw + 11px, 15px); color: var(--text-muted); line-height: 1.7; max-width: 45ch; }

@media (max-width: 900px) {
  .service-card--featured { flex-direction: column; align-items: flex-start; }
  .services__grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .services { padding: clamp(3.5rem, 8vw, 5rem) 0; }
  .service-card { margin-left: -20px; margin-right: -20px; border-radius: 0; border-left: none; border-right: none; }
  .services__featured .service-card { margin-left: -20px; margin-right: -20px; border-radius: 0; border-left: none; border-right: none; }
}

/* ============================================
   PROCESS — NUMBERED STEPS
   ============================================ */
.process {
  position: relative; background: var(--bg);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle);
}
.process__grid { display: flex; gap: clamp(20px, 3vw, 40px); justify-content: center; }
.process__step { flex: 1; max-width: 300px; text-align: center; padding: 0 clamp(8px, 1.5vw, 20px); }
.process__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid var(--brand); color: var(--brand);
  font-family: var(--heading-font); font-weight: 600; font-size: 1.3rem;
  margin-bottom: 16px;
  transition: all 0.4s var(--ease-out);
}
.process__step:hover .process__num {
  background: var(--brand); color: #111;
  box-shadow: 0 0 24px rgba(var(--brand-rgb), 0.3);
}
.process__title {
  font-family: var(--heading-font); font-weight: 500;
  font-size: clamp(1.1rem, 1.3vw + 0.4rem, 1.4rem);
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--text); margin-bottom: 8px;
}
.process__desc { font-size: clamp(13px, 0.7vw + 11px, 14px); color: var(--text-muted); line-height: 1.6; }

@media (max-width: 700px) {
  .process__grid { flex-direction: column; align-items: center; gap: 32px; }
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
  position: relative; background: var(--bg);
  padding: clamp(5rem, 10vw, 8rem) 0; overflow: hidden;
}
.reviews__glow {
  position: absolute; bottom: -25%; left: -15%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(var(--brand-rgb), 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.reviews__header { margin-bottom: clamp(36px, 5vw, 52px); position: relative; z-index: 1; }

.reviews__grid {
  display: grid; grid-template-columns: 1.2fr 1fr; grid-template-rows: auto auto;
  gap: 20px; position: relative; z-index: 1;
}
.review-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 3px;
  padding: clamp(24px, 3vw, 36px); display: flex; flex-direction: column; gap: 12px;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.review-card:hover { border-color: var(--border); }
.review-card--featured {
  grid-row: 1 / 3;
  border-left: 3px solid var(--brand);
  padding: clamp(28px, 3.5vw, 48px);
}
.review-card--featured:hover {
  box-shadow: 0 0 40px rgba(var(--brand-rgb), 0.06);
}
.review-card__stars { display: flex; gap: 3px; color: var(--brand); }
.review-card__text {
  font-size: clamp(14px, 0.8vw + 12px, 16px); color: var(--text);
  line-height: 1.75; font-style: normal; flex: 1;
}
.review-card--featured .review-card__text {
  font-size: clamp(16px, 1vw + 13px, 19px); line-height: 1.8; font-weight: 400;
}
.review-card__author { font-weight: 600; font-size: 13px; color: var(--text-muted); letter-spacing: 0.04em; }

@media (max-width: 700px) {
  .reviews__grid { grid-template-columns: 1fr; }
  .review-card--featured { grid-row: auto; }
}

/* ============================================
   ABOUT — LIGHT SECTION
   ============================================ */
.about {
  position: relative; color: var(--text-dark);
  padding: clamp(5rem, 10vw, 9rem) 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(200, 180, 140, 0.12) 0%, transparent 50%),
    linear-gradient(180deg, #F0ECE4 0%, var(--bg-light) 40%, #F8F6F2 100%);
}
.about__layout {
  display: grid; grid-template-columns: 0.45fr 0.55fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
}
.about__visual {
  position: relative; border-radius: 6px; overflow: hidden; aspect-ratio: 4 / 5;
  background: #ddd8d0;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
/* Light gray photo placeholder with camera icon — clearly visible */
.about__visual::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-color: #ddd8d0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 240' fill='none'%3E%3Crect x='55' y='75' width='90' height='68' rx='6' stroke='rgba(0,0,0,0.18)' stroke-width='1.5'/%3E%3Ccircle cx='100' cy='109' r='18' stroke='rgba(0,0,0,0.18)' stroke-width='1.5'/%3E%3Ccircle cx='100' cy='109' r='9' fill='rgba(0,0,0,0.04)' stroke='rgba(0,0,0,0.12)' stroke-width='1'/%3E%3Cpath d='M80 75l6-12h28l6 12' stroke='rgba(0,0,0,0.18)' stroke-width='1.5' stroke-linejoin='round'/%3E%3Ccircle cx='130' cy='85' r='3' fill='rgba(0,0,0,0.1)'/%3E%3Ctext x='100' y='172' text-anchor='middle' fill='rgba(0,0,0,0.22)' font-family='sans-serif' font-size='12' letter-spacing='3' font-weight='600'%3EPHOTO%3C/text%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center center; background-size: 55%;
}
/* Image sits on top — hides placeholder when loaded */
.about__visual img {
  width: 100%; height: 100%; object-fit: cover;
  position: relative; z-index: 1;
  background: #ddd8d0;
}
.about__visual img.img-error {
  opacity: 0;
}

/* Est badge — inside the image, bottom-right */
.about__est-badge {
  position: absolute; bottom: 16px; right: 16px;
  background: rgba(12, 12, 12, 0.85); backdrop-filter: blur(8px);
  color: var(--bg-light); padding: 12px 16px; border-radius: 2px;
  display: flex; flex-direction: column; align-items: center; line-height: 1; gap: 2px;
  z-index: 2;
}
.about__est-badge span { font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }
.about__est-badge strong { font-family: var(--heading-font); font-size: 1.8rem; font-weight: 600; }

.about__content .section-label { color: var(--brand-dark); }
.about__content .section-label::before { background: var(--brand-dark); }
.about__content .section-heading { color: var(--text-dark); }
.about__rule { width: 48px; height: 3px; background: var(--brand); margin-bottom: 24px; border: none; }
.about__text {
  font-size: clamp(15px, 0.8vw + 13px, 16px); color: #5C5550;
  line-height: 1.8; margin-bottom: 20px; max-width: 50ch;
}
.about__owner-row {
  display: flex; align-items: center; gap: 14px; margin-bottom: 24px;
}
.about__owner-avatar {
  width: 52px; height: 52px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  background: rgba(212,121,14,0.06); border: 1.5px solid rgba(212,121,14,0.2);
  display: flex; align-items: center; justify-content: center;
}
.about__owner-avatar svg { width: 36px; height: 36px; }
.about__owner { font-weight: 700; font-size: 15px; color: var(--text-dark); margin-bottom: 0; }
.about__owner-role { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.about__certs { display: flex; flex-wrap: wrap; gap: 10px; }
.cert-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--text-dark); color: var(--bg-light);
  font-weight: 600; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 10px 16px; border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}
.cert-badge:hover {
  background: #1a1714;
  box-shadow: 0 0 20px rgba(var(--brand-rgb), 0.15);
}
.cert-badge svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--brand); }

@media (max-width: 768px) {
  .about__layout { grid-template-columns: 1fr; }
  .about__visual { aspect-ratio: 16 / 10; max-height: 350px; }
}

/* ============================================
   GALLERY (hidden by default)
   ============================================ */
.gallery { position: relative; background: var(--bg-alt); padding: clamp(5rem, 10vw, 8rem) 0; }
.gallery.template-hidden { display: none; }
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.gallery__item { border-radius: 3px; overflow: hidden; aspect-ratio: 4 / 3; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.gallery__item:hover img { transform: scale(1.05); }
@media (max-width: 600px) { .gallery__grid { grid-template-columns: 1fr 1fr; } }

/* ============================================
   HOURS + LOCATION
   ============================================ */
.location {
  position: relative; padding: clamp(5rem, 10vw, 8rem) 0; overflow: hidden;
  background:
    radial-gradient(ellipse at 85% 50%, rgba(var(--brand-rgb), 0.06) 0%, transparent 50%),
    linear-gradient(to left, rgba(25, 22, 18, 1) 0%, var(--bg) 50%);
}
.location__header { margin-bottom: clamp(36px, 5vw, 52px); }
.location__layout {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 64px); align-items: start;
}

/* Hours table — premium design */
.hours-table {
  width: 100%; border-collapse: collapse;
  background: var(--bg-card); border-radius: 6px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.hours-table tr {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.3s;
}
.hours-table tr:last-child { border-bottom: none; }
.hours-table tr:hover { background: rgba(var(--brand-rgb), 0.04); }
.hours-table td {
  padding: 15px 20px; font-size: clamp(13px, 0.7vw + 11px, 15px);
}
.hours-table td:first-child {
  font-weight: 600; color: var(--text);
  letter-spacing: 0.01em;
}
.hours-table td:last-child {
  text-align: right; color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}
.location__info { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.location__info-item { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text-muted); }
.location__info-item svg { width: 20px; height: 20px; color: var(--brand); flex-shrink: 0; margin-top: 2px; }
.location__info-item a { color: var(--text); transition: color 0.3s; }
.location__info-item a:hover { color: var(--brand); }
.location__call-btn { display: none; width: 100%; margin-top: 20px; }
.location__map { border-radius: 3px; overflow: hidden; aspect-ratio: 4 / 3; background: var(--bg-card); border: 1px solid var(--border-subtle); }
.location__map iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 768px) {
  .location__layout { grid-template-columns: 1fr; }
  .location__map { aspect-ratio: 16 / 10; min-height: 280px; }
}

/* ============================================
   CTA — SPOTLIGHT + GLOW
   ============================================ */
.cta-section { position: relative; padding: clamp(6rem, 12vw, 10rem) 0; text-align: center; overflow: hidden; }
.cta-section__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(var(--brand-rgb), 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 70%, rgba(var(--brand-rgb), 0.08) 0%, transparent 45%),
    linear-gradient(140deg, #14110a 0%, #1a1508 40%, #120f08 100%);
}
.cta-section__noise {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 200px;
}
/* Spotlight — radial glow centered on CTA */
.cta-section__spotlight {
  position: absolute; top: 25%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(var(--brand-rgb), 0.1) 0%, transparent 70%);
  pointer-events: none; z-index: 1;
}
.cta-section__content { position: relative; z-index: 5; }
.cta-section__overline {
  font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 14px;
}
.cta-section__heading { color: var(--text); margin-bottom: 14px; }
.cta-section__sub {
  font-size: clamp(14px, 0.9vw + 12px, 17px); color: var(--text-muted);
  margin-bottom: 40px; max-width: 460px; margin-left: auto; margin-right: auto; line-height: 1.6;
}
.cta-section__phone {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--heading-font); font-weight: 600;
  font-size: clamp(1.6rem, 3.5vw + 0.8rem, 2.8rem);
  letter-spacing: 0.05em; color: #111; background: var(--brand);
  padding: 20px clamp(28px, 4vw, 52px); border-radius: 3px;
  transition: all 0.35s var(--ease-out); margin-bottom: 20px;
  box-shadow: 0 0 30px rgba(var(--brand-rgb), 0.25), 0 0 80px rgba(var(--brand-rgb), 0.08);
}
.cta-section__phone:hover {
  background: var(--brand-light); transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(var(--brand-rgb), 0.4), 0 16px 48px rgba(0,0,0,0.3);
}
.cta-section__phone svg { width: 26px; height: 26px; }
.cta-section__address { font-size: 14px; color: var(--text-muted); }

@media (max-width: 600px) {
  .cta-section__phone { width: 100%; justify-content: center; font-size: clamp(1.4rem, 5vw, 2rem); padding: 18px 24px; }
  .cta-section__spotlight { width: 350px; height: 250px; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #060606 100%);
  padding: clamp(36px, 5vw, 56px) 0;
  border-top: 1px solid var(--border-subtle);
}
.footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer__brand { font-family: var(--heading-font); font-weight: 500; font-size: 1.15rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.footer__info { display: flex; align-items: center; gap: 24px; font-size: 13px; color: var(--text-muted); flex-wrap: wrap; }
.footer__info a { transition: color 0.3s; }
.footer__info a:hover { color: var(--brand); }
.footer__credit { font-size: 12px; color: var(--text-muted); opacity: 0.5; }
.footer__credit a { color: var(--text-muted); transition: color 0.3s; }
.footer__credit a:hover { color: var(--brand); }
@media (max-width: 600px) {
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer__info { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed; bottom: 24px; right: 24px; width: 48px; height: 48px;
  background: var(--brand); color: #111; border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: all 0.35s var(--ease-out); z-index: 900;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(var(--brand-rgb), 0.3); }
.back-to-top svg { width: 20px; height: 20px; }

/* Selection */
::selection { background: rgba(var(--brand-rgb), 0.3); color: var(--text); }
