/* ═══════════════════════════════════════════════════
   YONGE NORTH AUTO LTD — Luxury Refined
   Japanese workshop minimalism × premium auto service
   ═══════════════════════════════════════════════════ */

/* --- Custom Properties --- */
:root {
  --stone: #f5f0e8;
  --stone-light: #faf7f2;
  --stone-deep: #e8e0d4;
  --linen: #f9f6f0;
  --charcoal: #2a2a28;
  --charcoal-soft: #3d3d3a;
  --slate: #5a5a56;
  --slate-light: #8a8a84;
  --gold: #b09a6f;
  --gold-muted: #c4b492;
  --gold-deep: #8f7d58;
  --forest: #3a4a3a;
  --forest-light: #4a5e4a;
  --cream: #fffdf7;
  --hairline: rgba(42, 42, 40, 0.12);
  --hairline-gold: rgba(176, 154, 111, 0.3);
  --shadow-soft: 0 2px 20px rgba(42, 42, 40, 0.06);
  --shadow-card: 0 4px 30px rgba(42, 42, 40, 0.08);
  --shadow-elevated: 0 8px 40px rgba(42, 42, 40, 0.12);
  --grain-opacity: 0.03;
  --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-elegant: cubic-bezier(0.19, 1, 0.22, 1);
}

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

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

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--stone);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: var(--grain-opacity);
  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-repeat: repeat;
  background-size: 200px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
}

.label {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate-light);
}

.label--gold { color: var(--gold); }

/* --- Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.container--narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

section {
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
}

.section-divider {
  width: 60px;
  height: 1px;
  background: var(--gold-muted);
  margin: 0 auto 1.5rem;
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--transition-elegant), transform 0.8s var(--transition-elegant);
}

.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; }

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--stone-light);
  position: relative;
  overflow: hidden;
  padding: 2rem 1.5rem;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--stone));
  pointer-events: none;
}

/* Subtle decorative lines */
.hero__lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__lines::before,
.hero__lines::after {
  content: '';
  position: absolute;
  background: var(--hairline-gold);
}

.hero__lines::before {
  width: 1px;
  height: 120px;
  left: 12%;
  top: 10%;
  animation: lineReveal 1.5s var(--transition-elegant) 0.5s both;
}

.hero__lines::after {
  width: 1px;
  height: 80px;
  right: 15%;
  bottom: 20%;
  animation: lineReveal 1.5s var(--transition-elegant) 0.8s both;
}

@keyframes lineReveal {
  from { transform: scaleY(0); opacity: 0; }
  to { transform: scaleY(1); opacity: 1; }
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__location {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  animation: fadeUp 1s var(--transition-elegant) 0.2s both;
}

.hero__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  animation: fadeUp 1s var(--transition-elegant) 0.4s both;
}

.hero__name em {
  font-style: italic;
  color: var(--charcoal-soft);
}

.hero__tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--slate);
  margin-bottom: 2.5rem;
  animation: fadeUp 1s var(--transition-elegant) 0.6s both;
}

/* Rating badge — quiet confidence */
.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--hairline-gold);
  background: rgba(255, 253, 247, 0.6);
  backdrop-filter: blur(10px);
  margin-bottom: 2.5rem;
  animation: fadeUp 1s var(--transition-elegant) 0.8s both;
}

.hero__rating-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1;
}

.hero__rating-stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 0.75rem;
}

.hero__rating-count {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-light);
}

.hero__rating-divider {
  width: 1px;
  height: 24px;
  background: var(--hairline-gold);
}

.hero__cta {
  animation: fadeUp 1s var(--transition-elegant) 1s both;
}

.hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--charcoal);
  text-decoration: none;
  padding: 0.85rem 2rem;
  border: 1px solid var(--charcoal);
  transition: all 0.4s var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.hero__phone::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--charcoal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--transition-smooth);
}

.hero__phone:hover {
  color: var(--cream);
}

.hero__phone:hover::before {
  transform: scaleX(1);
}

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

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

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeUp 1s var(--transition-elegant) 1.5s both;
}

.hero__scroll-text {
  font-family: 'Outfit', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--slate-light);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: var(--gold-muted);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}

/* ═══════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════ */
.services {
  background: var(--stone);
}

.services__header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.services__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-top: 0.75rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

.service-item {
  background: var(--stone-light);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  transition: all 0.4s var(--transition-smooth);
  cursor: default;
}

.service-item:hover {
  background: var(--cream);
}

.service-item:hover .service-item__number {
  color: var(--gold);
}

.service-item__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: var(--stone-deep);
  margin-bottom: 0.75rem;
  transition: color 0.4s var(--transition-smooth);
}

.service-item__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--charcoal);
}

.service-item__line {
  width: 20px;
  height: 1px;
  background: var(--gold-muted);
  margin-top: 1rem;
  transition: width 0.4s var(--transition-smooth);
}

.service-item:hover .service-item__line {
  width: 40px;
}

/* ═══════════════════════════════════════════════════
   REVIEWS — THE SHOWSTOPPER
   ═══════════════════════════════════════════════════ */
.reviews {
  background: var(--cream);
  overflow: hidden;
}

.reviews__header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.reviews__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-top: 0.75rem;
}

.reviews__subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--slate);
  margin-top: 1rem;
}

/* Featured pull quote */
.reviews__pullquote {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
  position: relative;
}

.reviews__pullquote::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: var(--gold-muted);
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  opacity: 0.5;
}

.reviews__pullquote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--charcoal);
  position: relative;
  z-index: 1;
}

.reviews__pullquote cite {
  display: block;
  margin-top: 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Review cards — masonry-like */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.review-card {
  background: var(--stone-light);
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid var(--hairline);
  position: relative;
  transition: all 0.5s var(--transition-smooth);
}

.review-card:hover {
  border-color: var(--hairline-gold);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.review-card--featured {
  grid-column: 1 / -1;
  background: var(--stone-light);
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 2px solid var(--gold-muted);
}

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

.review-card__stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 0.65rem;
  margin-bottom: 1rem;
}

.review-card__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-style: italic;
  line-height: 1.65;
  color: var(--charcoal-soft);
  margin-bottom: 1.25rem;
}

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

.review-card__author {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-light);
  padding-top: 1rem;
  border-top: 1px solid var(--hairline);
}

/* ═══════════════════════════════════════════════════
   ABOUT — PAK & HILDA
   ═══════════════════════════════════════════════════ */
.about {
  background: var(--charcoal);
  color: var(--stone);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, var(--cream), var(--charcoal));
  pointer-events: none;
}

.about .container {
  position: relative;
  z-index: 1;
}

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

.about__header {
  margin-bottom: 2rem;
}

.about__label {
  color: var(--gold-muted);
}

.about__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--stone);
  margin-top: 0.75rem;
}

.about__text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--stone-deep);
  margin-bottom: 1.5rem;
}

.about__text strong {
  color: var(--stone);
  font-weight: 400;
}

.about__sidebar {
  position: relative;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(176, 154, 111, 0.2);
  background: rgba(255, 253, 247, 0.03);
}

.about__sidebar-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--stone-deep);
  margin-bottom: 1.5rem;
}

.about__sidebar-cite {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.about__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(176, 154, 111, 0.15);
}

.about__value-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.about__value-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-top: 0.35rem;
}

/* ═══════════════════════════════════════════════════
   HOURS
   ═══════════════════════════════════════════════════ */
.hours {
  background: var(--stone);
}

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

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

.hours__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

.hours__note {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--slate);
  line-height: 1.6;
}

.hours__table {
  width: 100%;
}

.hours__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid var(--hairline);
  transition: all 0.3s var(--transition-smooth);
}

.hours__row:hover {
  padding-left: 0.5rem;
}

.hours__row:last-child {
  border-bottom: none;
}

.hours__day {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.hours__time {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--slate);
}

.hours__row--closed .hours__time {
  color: var(--slate-light);
  font-style: italic;
}

/* ═══════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════ */
.contact {
  background: var(--stone-light);
  text-align: center;
}

.contact__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-top: 0.75rem;
  margin-bottom: 2rem;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  max-width: 700px;
  margin: 0 auto;
  align-items: center;
}

.contact__divider {
  height: 60px;
  background: var(--hairline-gold);
}

.contact__item-label {
  margin-bottom: 0.5rem;
}

.contact__phone-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.3s;
}

.contact__phone-link:hover {
  color: var(--gold-deep);
}

.contact__address {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--charcoal-soft);
  line-height: 1.5;
}

.contact__cta {
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.contact__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  padding: 1rem 2.5rem;
  background: var(--charcoal);
  border: 1px solid var(--charcoal);
  transition: all 0.4s var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.contact__button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--transition-smooth);
}

.contact__button:hover {
  border-color: var(--gold-deep);
}

.contact__button:hover::before {
  transform: scaleX(1);
}

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

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
  background: var(--charcoal);
  padding: 2.5rem 0;
  text-align: center;
}

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

.footer__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--stone-deep);
}

.footer__divider {
  width: 30px;
  height: 1px;
  background: rgba(176, 154, 111, 0.3);
}

.footer__location {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate-light);
}

.footer__copy {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  color: var(--slate);
  margin-top: 1rem;
}

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

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

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

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

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

  .hours__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hours__header {
    position: static;
  }
}

@media (max-width: 600px) {
  .services__grid {
    grid-template-columns: 1fr;
  }

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

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact__divider {
    width: 60px;
    height: 1px;
    margin: 0 auto;
  }

  .hero__rating {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
  }

  .hero__rating-divider {
    width: 30px;
    height: 1px;
  }

  .about__values {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer__content {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer__divider {
    display: none;
  }
}
