/* ===================================
   BEST IN LA BARBERSHOP — STYLESHEET
   =================================== */

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

:root {
  --black:    #0a0a0a;
  --dark:     #111111;
  --dark-2:   #181818;
  --dark-3:   #222222;
  --gold:     #c9a84c;
  --gold-lt:  #e0c06e;
  --gold-dk:  #a07a2e;
  --white:    #ffffff;
  --off-white:#f0ede6;
  --grey:     #888888;
  --grey-lt:  #bbbbbb;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --font-script:'Dancing Script', cursive;

  --radius: 4px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }


/* --- TYPOGRAPHY HELPERS --- */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}

.section-rule {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.5rem auto 0;
}
.section-rule.left { margin-left: 0; }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.script { font-family: var(--font-script); color: var(--gold); font-style: normal; }
.gold   { color: var(--gold); }


/* ============================
   NAV
   ============================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(10,10,10,0.96);
  box-shadow: 0 1px 30px rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(201,168,76,0.3);
  transition: border-color var(--transition);
}
.nav-logo:hover img { border-color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-lt);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }

.btn-nav {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
}
.btn-nav:hover {
  background: var(--gold-lt) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 90vw);
  height: 100vh;
  background: var(--dark);
  z-index: 99;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  padding: 100px 2rem 2rem;
  border-left: 1px solid rgba(201,168,76,0.15);
}
.mobile-menu.open { right: 0; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 2rem; }
.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--grey-lt);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--white); }
.btn-mobile {
  display: inline-block;
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}


/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,168,76,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 60%);
  /* Barber pole pattern overlay */
}

/* Diagonal stripe texture */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(201,168,76,0.015) 40px,
    rgba(201,168,76,0.015) 41px
  );
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.98) 0%, rgba(10,10,10,0.85) 60%, rgba(10,10,10,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 6rem;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 700px;
}
.hero-title .script {
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  line-height: 1.1;
  display: block;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--grey-lt);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.badge { text-align: center; }
.badge-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.badge-label {
  font-size: 0.75rem;
  color: var(--grey);
  letter-spacing: 0.05em;
}
.badge-divider {
  width: 1px;
  height: 48px;
  background: rgba(201,168,76,0.25);
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--grey);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}


/* ============================
   BUTTONS
   ============================ */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(201,168,76,0.25);
}
.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.25);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-ghost-sm {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--gold);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition);
}
.btn-ghost-sm:hover {
  background: var(--gold);
  color: var(--black);
}


/* ============================
   SERVICES
   ============================ */
.services {
  padding: 7rem 0;
  background: var(--dark);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold), var(--gold-dk));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.2);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card.featured {
  border-color: rgba(201,168,76,0.3);
  background: linear-gradient(135deg, var(--dark-2) 0%, rgba(201,168,76,0.04) 100%);
}
.service-card.featured::before { transform: scaleX(1); }

.service-badge-tag {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
}

.service-icon {
  width: 56px;
  height: 56px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.7;
}

.services-cta {
  text-align: center;
  margin-top: 3.5rem;
}
.services-cta p {
  color: var(--grey);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}


/* ============================
   ABOUT
   ============================ */
.about {
  padding: 7rem 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.about::after {
  content: '';
  position: absolute;
  top: 50%; right: -200px;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}

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

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-logo-wrap {
  position: relative;
  z-index: 2;
}
.about-logo {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201,168,76,0.25);
  box-shadow:
    0 0 0 12px rgba(201,168,76,0.04),
    0 0 0 24px rgba(201,168,76,0.02),
    0 30px 80px rgba(0,0,0,0.6);
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
}
.about-logo:hover {
  border-color: rgba(201,168,76,0.5);
  box-shadow:
    0 0 0 12px rgba(201,168,76,0.06),
    0 0 0 24px rgba(201,168,76,0.03),
    0 30px 80px rgba(0,0,0,0.6);
}

.about-logo-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  z-index: -1;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.05); }
}

/* Barber pole decoration */
.about-pole {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 220px;
  border-radius: 8px;
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.2);
  overflow: hidden;
}
.pole-stripe {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    180deg,
    rgba(201,168,76,0.5) 0px,
    rgba(201,168,76,0.5) 12px,
    transparent 12px,
    transparent 24px,
    rgba(200,50,50,0.4) 24px,
    rgba(200,50,50,0.4) 36px,
    transparent 36px,
    transparent 48px
  );
  animation: poleSpin 4s linear infinite;
}
@keyframes poleSpin {
  from { background-position: 0 0; }
  to   { background-position: 0 72px; }
}

.about-content {}

.about-text {
  color: var(--grey-lt);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 2rem 0;
}
.highlight {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--grey-lt);
}
.highlight svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.testimonial {
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--gold);
  background: rgba(201,168,76,0.05);
  border-radius: 0 6px 6px 0;
}
.testimonial p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--off-white);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.testimonial cite {
  font-size: 0.78rem;
  color: var(--gold);
  font-style: normal;
  letter-spacing: 0.05em;
}


/* ============================
   HOURS
   ============================ */
.hours {
  padding: 7rem 0;
  background: var(--dark);
  position: relative;
}
.hours::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.hours-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.hours-table-wrap {}
.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table td {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.95rem;
}
.hours-table tr:last-child td { border-bottom: none; }
.hours-table .day {
  color: var(--grey-lt);
  font-weight: 500;
  width: 50%;
}
.hours-table .time {
  color: var(--grey);
  text-align: right;
}
.hours-table .highlight-time {
  color: var(--gold);
  font-weight: 500;
}
.hours-note {
  margin-top: 1.25rem;
  font-size: 0.78rem;
  color: var(--grey);
  font-style: italic;
}

.hours-card {
  background: var(--dark-2);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 8px;
  padding: 2.5rem;
  position: sticky;
  top: 100px;
}
.hours-card-icon {
  width: 56px;
  height: 56px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hours-card-icon svg { width: 100%; height: 100%; }
.hours-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.hours-card p {
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.7;
}
.divider-sm {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 1.75rem 0;
}
.hours-btns {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}


/* ============================
   CONTACT
   ============================ */
.contact {
  padding: 7rem 0;
  background: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {}
.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}
.contact-icon svg { width: 100%; height: 100%; }
.contact-item h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.contact-item p {
  color: var(--grey-lt);
  font-size: 0.95rem;
  line-height: 1.6;
}
.link-gold {
  color: var(--gold);
  font-size: 0.85rem;
  transition: color var(--transition);
  display: inline-block;
  margin-top: 0.3rem;
}
.link-gold:hover { color: var(--gold-lt); }

.contact-socials {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.social-badge {
  display: inline-block;
  padding: 0.45rem 1.1rem;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--grey-lt);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.social-badge:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}

.contact-map {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.12);
  position: relative;
}
.contact-map::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(201,168,76,0.12);
  border-radius: 8px;
  pointer-events: none;
}
.contact-map iframe { display: block; filter: grayscale(40%) contrast(1.1); }


/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 3.5rem 2rem 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3rem;
  align-items: center;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-logo img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(201,168,76,0.2);
}
.footer-center { text-align: center; }
.footer-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.footer-address, .footer-phone {
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: 0.2rem;
}
.footer-phone a { color: var(--gold); transition: color var(--transition); }
.footer-phone a:hover { color: var(--gold-lt); }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: right;
}
.footer-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--grey);
  letter-spacing: 0.04em;
}


/* ============================
   SCROLL ANIMATIONS
   ============================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }


/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-visual {
    justify-content: flex-start;
  }
  .about-logo {
    width: 240px;
    height: 240px;
  }
  .about-pole { display: none; }

  .hours-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hours-card { position: static; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-logo { margin: 0 auto; }
  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 1rem 2rem;
  }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero-title .script { font-size: clamp(2.8rem, 11vw, 4.5rem); }
  .hero-scroll { display: none; }
  .hero-badges { gap: 1.2rem; }
  .badge-num { font-size: 1.5rem; }

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

  .about-highlights { grid-template-columns: 1fr; }
  .about-logo { width: 200px; height: 200px; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; }
  .hours-btns { flex-direction: column; }
}
