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

:root {
  --ink: #0d0d0d;
  --cream: #f5f1eb;
  --gold: #b8922a;
  --gold-light: #d4aa4a;
  --mid: #6b6560;
  --rule: rgba(184, 146, 42, 0.25);
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' 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-size: 200px 200px;
  opacity: 0.5;
}

/* ── GARAGE / TYRE BACKGROUND SCENE ── */
.bg-scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-tyre {
  position: absolute;
  opacity: 0.045;
  animation: slowSpin linear infinite;
}
.bg-tyre:nth-child(1)  { width: 320px; top: 5%;  left: -80px;  animation-duration: 40s; }
.bg-tyre:nth-child(2)  { width: 180px; top: 18%; right: 4%;    animation-duration: 55s; animation-direction: reverse; }
.bg-tyre:nth-child(3)  { width: 260px; top: 42%; left: 38%;    animation-duration: 70s; }
.bg-tyre:nth-child(4)  { width: 140px; top: 62%; left: 8%;     animation-duration: 45s; animation-direction: reverse; }
.bg-tyre:nth-child(5)  { width: 300px; top: 70%; right: -60px; animation-duration: 60s; }
.bg-tyre:nth-child(6)  { width: 110px; top: 88%; left: 55%;    animation-duration: 35s; animation-direction: reverse; }

.bg-garage {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.04;
}

@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  background: rgba(245, 241, 235, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.25s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ink);
  padding: 0.7rem 1.6rem;
  text-decoration: none;
  border: 1px solid var(--ink);
  transition: background 0.25s, color 0.25s;
}

.nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 6rem;
  position: relative;
  z-index: 1;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--mid);
  max-width: 400px;
  margin-bottom: 3rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ink);
  padding: 1rem 2.2rem;
  text-decoration: none;
  border: 1px solid var(--ink);
  transition: background 0.25s, color 0.25s;
}

.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.btn-outline {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  padding: 1rem 2.2rem;
  text-decoration: none;
  border: 1px solid var(--ink);
  transition: background 0.25s, color 0.25s;
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
}

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
}

.hero-visual {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/5;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.hero-visual-inner {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(184, 146, 42, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(184, 146, 42, 0.1) 0%, transparent 50%),
    linear-gradient(145deg, #1a1714 0%, #0d0d0d 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
}

.tire-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  opacity: 0.12;
  width: 320px;
  height: 320px;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: rgba(184, 146, 42, 0.2);
  border: 1px solid rgba(184, 146, 42, 0.2);
}

.hero-stat {
  background: rgba(13, 13, 13, 0.9);
  padding: 1.4rem 1.2rem;
}

.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.hero-stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.hero-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  line-height: 1.4;
}

/* ── DIVIDER ── */
.divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 4rem;
  position: relative;
  z-index: 1;
  margin: 0;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: var(--rule);
}

.divider-text {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  white-space: nowrap;
}

/* ── SERVICES ── */
#services {
  padding: 7rem 4rem;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
}

.section-title em {
  font-style: italic;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.service-card:hover {
  background: var(--white);
}

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

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  display: block;
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.8rem;
}

.service-desc {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--mid);
}

/* ── ABOUT ── */
#about {
  padding: 7rem 4rem;
  background: var(--ink);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

#about::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 146, 42, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.about-left .section-eyebrow {
  color: var(--gold-light);
}

.about-left .section-title {
  color: var(--white);
  text-align: left;
}

.about-body {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 1.5rem;
}

.about-body strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

.owner-sig {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(184, 146, 42, 0.2);
}

.owner-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold-light);
}

.owner-title {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.3rem;
}

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(184, 146, 42, 0.15);
  border: 1px solid rgba(184, 146, 42, 0.15);
}

.pillar {
  padding: 2rem 1.8rem;
  background: rgba(255, 255, 255, 0.02);
}

.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.pillar-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.pillar-desc {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.38);
}

/* ── CONTACT ── */
#contact {
  padding: 7rem 4rem;
  position: relative;
  z-index: 1;
}

.contact-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

.contact-info .section-title {
  text-align: left;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 1.8rem;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-item-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.3rem;
}

.contact-item-value {
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.5;
}

.contact-item-value a {
  color: var(--ink);
  text-decoration: none;
}

.contact-item-value a:hover {
  color: var(--gold);
}

.map-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--ink);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rule);
}

.map-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1714, #0d0d0d);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.map-pin {
  font-size: 2.5rem;
}

.map-address {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.map-link {
  margin-top: 0.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 146, 42, 0.3);
  padding-bottom: 2px;
}

.map-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(184, 146, 42, 0.15);
  padding: 2.5rem 4rem;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
}

.footer-brand span {
  color: var(--gold);
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.08em;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow { animation: fadeUp 0.7s ease both; }
.hero-title   { animation: fadeUp 0.7s 0.12s ease both; }
.hero-sub     { animation: fadeUp 0.7s 0.22s ease both; }
.hero-btns    { animation: fadeUp 0.7s 0.32s ease both; }
.hero-right   { animation: fadeUp 0.8s 0.2s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 5rem; }
  .hero-left { padding: 3rem 1.5rem 2rem; }
  .hero-right { padding: 1rem 1.5rem 3rem; }
  .hero-visual { max-width: 100%; }
  #services, #about, #contact { padding: 5rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid, .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .divider { padding: 0 1.5rem; }
  footer { padding: 2rem 1.5rem; flex-direction: column; text-align: center; }
}
