/* ═══════════════════════════════════════════════════════
   AUDI MECHANIC — FACTORY TRAINED
   Geometric Bold / German Precision
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Crimson+Pro:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Mono:wght@300;400;500&display=swap');

/* ── Custom Properties ── */
:root {
  --anthracite: #1C1C1E;
  --anthracite-90: rgba(28, 28, 30, 0.9);
  --anthracite-80: rgba(28, 28, 30, 0.8);
  --anthracite-60: rgba(28, 28, 30, 0.6);
  --anthracite-30: rgba(28, 28, 30, 0.3);
  --anthracite-10: rgba(28, 28, 30, 0.1);
  --anthracite-05: rgba(28, 28, 30, 0.05);
  --platinum: #F4F2ED;
  --platinum-warm: #EBE8E1;
  --platinum-cool: #E8E6E0;
  --cognac: #C4841D;
  --cognac-light: #D4972F;
  --cognac-dark: #A06B14;
  --cognac-15: rgba(196, 132, 29, 0.15);
  --cognac-08: rgba(196, 132, 29, 0.08);
  --steel: #7B8FA1;
  --steel-light: #96A7B6;
  --steel-dark: #5D6F7E;
  --white: #FAFAF8;
  --text-primary: #1C1C1E;
  --text-secondary: #4A4A4C;
  --text-tertiary: #8E8E93;
  --text-on-dark: #F4F2ED;
  --text-on-dark-muted: rgba(244, 242, 237, 0.6);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Crimson Pro', serif;
  --font-mono: 'DM Mono', monospace;
  --grid-gap: clamp(1rem, 2vw, 2rem);
  --section-pad: clamp(4rem, 10vw, 8rem);
  --border-fine: 1px solid var(--anthracite-10);
  --border-fine-dark: 1px solid rgba(244, 242, 237, 0.1);
}

/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--platinum);
  overflow-x: hidden;
}

/* ── Grain Overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.headline-xl {
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.headline-lg {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.headline-md {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
}

.label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.label-lg {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.container--narrow {
  max-width: 1100px;
}

.container--wide {
  max-width: 1600px;
}

section {
  position: relative;
}

/* ── Horizontal Rules ── */
.rule {
  width: 100%;
  height: 1px;
  background: var(--anthracite-10);
  border: none;
}

.rule--dark {
  background: rgba(244, 242, 237, 0.1);
}

.rule--accent {
  height: 2px;
  background: var(--cognac);
  width: 60px;
}

/* ═══════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--platinum);
  padding: 0 0 var(--section-pad);
  position: relative;
  overflow: hidden;
}

/* Geometric accent lines */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 8vw;
  width: 1px;
  height: 40%;
  background: linear-gradient(to bottom, var(--cognac), transparent);
  animation: lineReveal 1.8s ease-out 0.5s both;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: calc(8vw + 40px);
  width: 1px;
  height: 25%;
  background: linear-gradient(to bottom, var(--anthracite-10), transparent);
  animation: lineReveal 1.8s ease-out 0.8s both;
}

@keyframes lineReveal {
  from { height: 0; opacity: 0; }
  to { opacity: 1; }
}

.hero__top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.5rem clamp(1.25rem, 4vw, 3rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  animation: fadeDown 0.8s ease-out 0.3s both;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.hero__appointment-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--cognac);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cognac);
}

.hero__appointment-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--cognac);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero__content {
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.hero__location {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease-out 0.6s both;
}

.hero__location-line {
  width: 40px;
  height: 1px;
  background: var(--cognac);
}

.hero__location-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.hero__title {
  margin-bottom: 2rem;
  animation: fadeUp 0.9s ease-out 0.8s both;
}

.hero__title-line {
  display: block;
}

.hero__title-line--accent {
  color: var(--cognac);
  -webkit-text-stroke: 0;
}

.hero__title-line--outline {
  -webkit-text-stroke: 1.5px var(--anthracite);
  color: transparent;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: var(--border-fine);
  animation: fadeUp 0.8s ease-out 1s both;
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-secondary);
  max-width: 500px;
}

.hero__cta-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hero__phone-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: var(--anthracite);
  color: var(--text-on-dark);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.hero__phone-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cognac);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__phone-cta:hover::before {
  transform: translateX(0);
}

.hero__phone-cta span {
  position: relative;
  z-index: 1;
}

.hero__phone-cta svg {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* Rating badge */
.hero__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  animation: fadeUp 0.8s ease-out 1.2s both;
}

.hero__rating-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--anthracite);
  position: relative;
}

.hero__rating-number::after {
  content: '★';
  font-size: 1rem;
  color: var(--cognac);
  position: absolute;
  top: 0.3rem;
  right: -1.2rem;
}

.hero__rating-count {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

/* ═══════════════════════════════════════════════════════
   PRECISION STATS BAR
   ═══════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--anthracite);
  color: var(--text-on-dark);
  padding: 0;
  overflow: hidden;
}

.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-bar__item {
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 2vw, 2rem);
  text-align: center;
  border-right: var(--border-fine-dark);
  position: relative;
}

.stats-bar__item:last-child {
  border-right: none;
}

.stats-bar__item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--cognac);
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stats-bar__item:hover::after {
  width: 100%;
}

.stats-bar__number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.4rem;
  color: var(--cognac);
}

.stats-bar__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}

/* ═══════════════════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════════════════ */
.services {
  padding: var(--section-pad) 0;
  background: var(--platinum);
}

.services__header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 2rem;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.services__header-label {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  padding-bottom: 0.5rem;
}

.services__header-title {
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--anthracite);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: var(--border-fine);
  border-bottom: none;
}

.service-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-bottom: var(--border-fine);
  border-right: var(--border-fine);
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
  overflow: hidden;
}

.service-card:nth-child(3n) {
  border-right: none;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cognac-08);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cognac);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover::after {
  width: 100%;
}

.service-card__number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cognac);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.service-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 600;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.service-card__accent {
  width: 20px;
  height: 1px;
  background: var(--anthracite-30);
  margin-top: 1rem;
  transition: width 0.4s ease, background 0.4s ease;
  position: relative;
  z-index: 1;
}

.service-card:hover .service-card__accent {
  width: 40px;
  background: var(--cognac);
}

/* ═══════════════════════════════════════════════════════
   REVIEWS SECTION — SHOWSTOPPER
   ═══════════════════════════════════════════════════════ */
.reviews {
  padding: var(--section-pad) 0;
  background: var(--anthracite);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}

/* Geometric background accents */
.reviews::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(196, 132, 29, 0.08);
  transform: rotate(45deg);
  pointer-events: none;
}

.reviews::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(196, 132, 29, 0.05);
  transform: rotate(45deg);
  pointer-events: none;
}

.reviews__header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.reviews__header-left {
  max-width: 600px;
}

.reviews__header-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.reviews__header-line {
  width: 40px;
  height: 2px;
  background: var(--cognac);
}

.reviews__header-text {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cognac);
}

.reviews__rating-display {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.reviews__rating-big {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--cognac);
}

.reviews__rating-stars {
  font-size: 1.2rem;
  color: var(--cognac);
  letter-spacing: 0.1em;
}

.reviews__rating-meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  margin-top: 0.5rem;
}

/* Review Grid — Masonry-like */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.review-card {
  background: rgba(244, 242, 237, 0.04);
  border: 1px solid rgba(244, 242, 237, 0.06);
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card:hover {
  background: rgba(244, 242, 237, 0.07);
  border-color: rgba(196, 132, 29, 0.2);
  transform: translateY(-3px);
}

.review-card--featured {
  grid-column: span 2;
  background: rgba(196, 132, 29, 0.06);
  border-color: rgba(196, 132, 29, 0.15);
}

.review-card--featured:hover {
  background: rgba(196, 132, 29, 0.1);
}

.review-card--tall {
  grid-row: span 2;
}

.review-card__quote-mark {
  font-family: var(--font-body);
  font-size: 4rem;
  line-height: 1;
  color: var(--cognac);
  opacity: 0.3;
  margin-bottom: -1rem;
  display: block;
}

.review-card__text {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  line-height: 1.75;
  color: rgba(244, 242, 237, 0.85);
  font-weight: 300;
}

.review-card--featured .review-card__text {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.review-card__pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--cognac);
  margin: 1.5rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--cognac);
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(244, 242, 237, 0.06);
}

.review-card__author-avatar {
  width: 32px;
  height: 32px;
  background: var(--cognac);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--anthracite);
}

.review-card__author-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-on-dark);
}

.review-card__author-stars {
  margin-left: auto;
  font-size: 0.7rem;
  color: var(--cognac);
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════════════════
   ABOUT / MEET JOE
   ═══════════════════════════════════════════════════════ */
.about {
  padding: var(--section-pad) 0;
  background: var(--platinum);
  position: relative;
}

.about__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.about__left {
  position: sticky;
  top: 2rem;
}

.about__label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.about__label-line {
  width: 40px;
  height: 2px;
  background: var(--cognac);
}

.about__label-text {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cognac-dark);
}

.about__name {
  margin-bottom: 1.5rem;
}

.about__name-sub {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.about__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: var(--cognac-08);
  border: 1px solid var(--cognac-15);
  margin-bottom: 2rem;
}

.about__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--cognac);
  border-radius: 50%;
}

.about__badge-text {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cognac-dark);
}

.about__right {
  padding-top: 2rem;
}

.about__text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.about__text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.about__highlights {
  list-style: none;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: var(--border-fine);
}

.about__highlights li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.about__highlights li::before {
  content: '—';
  color: var(--cognac);
  font-weight: 600;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════ */
.contact {
  padding: var(--section-pad) 0;
  background: var(--anthracite);
  color: var(--text-on-dark);
  position: relative;
}

.contact__layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
}

.contact__label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact__label-line {
  width: 40px;
  height: 2px;
  background: var(--cognac);
}

.contact__label-text {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cognac);
}

.contact__title {
  margin-bottom: 1.5rem;
}

.contact__subtitle {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-on-dark-muted);
  margin-bottom: 3rem;
  max-width: 450px;
}

.contact__phone-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2.5rem;
  background: var(--cognac);
  color: var(--anthracite);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact__phone-link:hover {
  background: var(--cognac-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(196, 132, 29, 0.3);
}

.contact__phone-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.contact__details {
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact__detail-group {
  padding-bottom: 1.5rem;
  border-bottom: var(--border-fine-dark);
}

.contact__detail-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  margin-bottom: 0.5rem;
}

.contact__detail-value {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-on-dark);
  line-height: 1.6;
}

.contact__detail-value a {
  color: var(--cognac);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact__detail-value a:hover {
  color: var(--cognac-light);
}

.contact__appointment-note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(196, 132, 29, 0.08);
  border-left: 2px solid var(--cognac);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cognac);
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
  padding: 2rem 0;
  background: var(--anthracite);
  border-top: var(--border-fine-dark);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}

.footer__copy {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(244, 242, 237, 0.3);
}

/* ═══════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }
.reveal-delay-8 { transition-delay: 0.8s; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:nth-child(3n) {
    border-right: var(--border-fine);
  }

  .service-card:nth-child(2n) {
    border-right: none;
  }

  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-card--featured {
    grid-column: span 2;
  }

  .review-card--tall {
    grid-row: span 1;
  }

  .about__layout {
    grid-template-columns: 1fr;
  }

  .about__left {
    position: static;
  }

  .contact__layout {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .hero__top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .hero__bottom {
    grid-template-columns: 1fr;
  }

  .hero__cta-group {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .hero__phone-cta {
    width: 100%;
    justify-content: center;
  }

  .hero__title-line--outline {
    -webkit-text-stroke-width: 1px;
  }

  .stats-bar__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-bar__item:nth-child(2) {
    border-right: none;
  }

  .stats-bar__item:nth-child(1),
  .stats-bar__item:nth-child(2) {
    border-bottom: var(--border-fine-dark);
  }

  .services__header {
    grid-template-columns: 1fr;
  }

  .services__header-label {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .service-card:nth-child(2n),
  .service-card:nth-child(3n) {
    border-right: none;
  }

  .reviews__grid {
    grid-template-columns: 1fr;
  }

  .review-card--featured {
    grid-column: span 1;
  }

  .contact__phone-link {
    width: 100%;
    justify-content: center;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════════════
   METALLIC SHIMMER EFFECT — Brushed Aluminum
   ═══════════════════════════════════════════════════════ */
.shimmer-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--anthracite-10) 20%,
    var(--cognac-15) 50%,
    var(--anthracite-10) 80%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer 8s linear infinite;
}

.shimmer-line--dark {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(244, 242, 237, 0.05) 20%,
    rgba(196, 132, 29, 0.15) 50%,
    rgba(244, 242, 237, 0.05) 80%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer 8s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
