/* =============================================
   MEDITERRANEAN BARBER — styles.css
   ============================================= */

:root {
  --navy:    #0b1524;
  --navy-2:  #111f35;
  --navy-3:  #162840;
  --gold:    #c9a84c;
  --gold-lt: #e2c47a;
  --gold-dk: #a8852e;
  --white:   #ffffff;
  --off-white: #f5f1ea;
  --grey:    #8a96a8;
  --grey-lt: #d1d8e0;
  --red:     #c0392b;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-heading: 'Bebas Neue', 'Impact', sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 8px 40px rgba(0,0,0,0.4);
  --shadow-gold: 0 4px 24px rgba(201,168,76,0.25);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
}
.btn--gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--sm { padding: 10px 20px; font-size: 0.85rem; }

/* =============================================
   SECTION COMMON
   ============================================= */
.section { padding: 100px 0; }
.section__header { text-align: center; margin-bottom: 64px; }
.section__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
}
.section__divider {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.section__divider::before,
.section__divider::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.section__divider::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.divider-icon {
  color: var(--gold);
  font-size: 0.7rem;
}

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
  padding: 0;
}
.nav.scrolled {
  background: rgba(11,21,36,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
  height: 72px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}
.nav__logo em {
  color: var(--gold);
  font-style: normal;
}
.nav__logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta { margin-left: 8px; padding: 10px 22px; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}
.nav__mobile {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 24px 28px;
  background: rgba(11,21,36,0.98);
  backdrop-filter: blur(12px);
}
.nav__mobile.open { display: flex; }
.nav__mobile-link {
  font-size: 1.1rem;
  font-weight: 500;
  padding: 8px 0;
  color: rgba(255,255,255,0.85);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.05) 0%, transparent 50%),
    linear-gradient(135deg, var(--navy) 0%, #0d1e35 50%, #091420 100%);
}
.hero__stripes {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.012) 40px,
      rgba(255,255,255,0.012) 80px
    );
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 900px;
}
.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.9;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
}
.hero__title--accent {
  color: var(--gold);
  display: block;
  font-size: clamp(5rem, 15vw, 11rem);
}
.hero__tagline {
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin: 28px 0 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.6s;
}
.hero__badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.75s;
}
.badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.9s;
}
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.4s;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
.hero__scroll span {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

/* Barber pole decoration */
.barber-pole {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 240px;
  border-radius: 9px;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.15);
  opacity: 0.3;
}
.barber-pole__inner {
  width: 100%;
  height: 200%;
  background: repeating-linear-gradient(
    -45deg,
    #c0392b 0px, #c0392b 8px,
    white 8px, white 16px,
    #2471a3 16px, #2471a3 24px,
    white 24px, white 32px
  );
  animation: poleSpin 4s linear infinite;
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--navy-2);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 20px 0;
}
.trust-bar__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 28px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.85);
}
.trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(201,168,76,0.3);
}

/* =============================================
   SERVICES
   ============================================= */
.services {
  background: var(--navy);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--navy-2);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.service-card:hover::before { opacity: 1; }
.service-card--featured {
  grid-column: span 1;
  border-color: rgba(201,168,76,0.35);
  background: linear-gradient(135deg, var(--navy-3) 0%, var(--navy-2) 100%);
}
.service-card--featured::after {
  content: 'Signature';
  position: absolute;
  top: 16px;
  right: -28px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 40px;
  transform: rotate(45deg);
}
.service-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 16px;
}
.service-card__tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--gold);
  text-transform: uppercase;
}
.service-card__variants {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.service-card__variants span {
  padding: 4px 14px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.service-card--gift {
  border-style: dashed;
  border-color: rgba(201,168,76,0.4);
  display: flex;
  flex-direction: column;
}
.service-card--gift .btn {
  margin-top: auto;
  align-self: flex-start;
}
.service-card__gift-ribbon {
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 50px 50px 0 0;
  border-color: rgba(201,168,76,0.25) transparent transparent transparent;
}

/* =============================================
   HOURS
   ============================================= */
.hours {
  background: var(--navy-2);
  position: relative;
  overflow: hidden;
}
.hours__bg-text {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-heading);
  font-size: 18vw;
  color: rgba(201,168,76,0.04);
  letter-spacing: 8px;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}
.hours__layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
.hours__intro {
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  font-size: 1rem;
}
.hours__intro strong { color: var(--white); }
.hours__table {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hours__row {
  display: grid;
  grid-template-columns: 160px 1fr 80px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
}
.hours__row:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.hours__row:hover { background: rgba(255,255,255,0.02); }
.day-label {
  font-weight: 600;
  font-size: 0.95rem;
}
.time-slot {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}
.hours__row--split .time-slot:first-child {
  margin-bottom: 2px;
}
.hours__status {
  text-align: right;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}
.hours__status.open {
  background: rgba(39,174,96,0.15);
  color: #2ecc71;
  border: 1px solid rgba(39,174,96,0.3);
}
.hours__status.closed {
  background: rgba(192,57,43,0.12);
  color: #e74c3c;
  border: 1px solid rgba(192,57,43,0.25);
}
.hours__cta-card {
  background: var(--navy-3);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.hours__cta-inner {
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.hours__cta-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}
.hours__cta-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}
.hours__cta-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 8px;
}
.hours__cta-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

/* Barber pole small */
.barber-pole-small {
  position: absolute;
  top: 0; right: 24px;
  width: 10px;
  height: 80px;
  border-radius: 5px;
  overflow: hidden;
  opacity: 0.4;
}
.barber-pole-small__stripe {
  width: 100%;
  height: 200%;
  background: repeating-linear-gradient(
    -45deg,
    #c0392b 0px, #c0392b 4px,
    white 4px, white 8px,
    #2471a3 8px, #2471a3 12px,
    white 12px, white 16px
  );
  animation: poleSpin 3s linear infinite;
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  background: var(--navy);
}
.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__visual {
  display: flex;
  justify-content: center;
}
.about__shop-graphic {
  position: relative;
  width: 100%;
  max-width: 440px;
}
.shop-sign {
  background: var(--navy-3);
  border: 2px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.shop-sign::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: calc(var(--radius-lg) - 4px);
  pointer-events: none;
}
.shop-sign__small {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.shop-sign__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 16px;
}
.shop-sign__services {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}
.shop-sign__icons {
  display: flex;
  justify-content: center;
  gap: 24px;
  opacity: 0.6;
}
.about__est-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  width: 80px;
  height: 80px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-family: var(--font-body);
  box-shadow: var(--shadow-gold);
}
.about__est-badge span {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.about__est-badge strong {
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
}
.about__text p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 0.95rem;
}
.about__pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.pillar {
  display: flex;
  align-items: center;
  gap: 20px;
}
.pillar__number {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
.pillar__text {
  display: flex;
  flex-direction: column;
}
.pillar__text strong {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.pillar__text span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  background: var(--navy-2);
  padding: 100px 0;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.testimonial {
  background: var(--navy-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
}
.testimonial--center {
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-12px);
}
.testimonial:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-4px);
}
.testimonial--center:hover {
  transform: translateY(-16px);
}
.testimonial__stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial cite {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  font-style: normal;
  letter-spacing: 0.5px;
}
.testimonials__google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
  background: var(--navy);
}
.contact__layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: stretch;
  min-height: 440px;
}
.contact__card {
  background: var(--navy-2);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact__icon {
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__label {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact__value {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}
a.contact__value { transition: color var(--transition); }
a.contact__value:hover { color: var(--gold); }
.contact__btn { width: 100%; justify-content: center; margin-top: auto; }
.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
  min-height: 400px;
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  filter: grayscale(20%) invert(90%) hue-rotate(180deg) saturate(0.7) brightness(0.85);
}
.map__directions-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 18px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  z-index: 1;
}
.map__directions-btn:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
}

/* =============================================
   FOOTER
   ============================================= */
.footer__top {
  background: var(--navy-2);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 72px 0 48px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 48px;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}
.footer__brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 6px;
}
.footer__tagline {
  font-size: 0.75rem !important;
  letter-spacing: 1px;
  color: rgba(201,168,76,0.6) !important;
  margin-top: 8px !important;
}
.footer__col h4 {
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__col ul li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.footer__col ul li span:last-child {
  color: rgba(255,255,255,0.4);
  text-align: right;
  font-size: 0.82rem;
}
.footer__phone {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  transition: color var(--transition);
}
.footer__phone:hover { color: var(--gold-lt); }
.footer__col p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}
.footer__walkin {
  font-size: 0.8rem !important;
  color: rgba(255,255,255,0.35) !important;
  font-style: italic;
}
.footer__bottom {
  background: #070e19;
  padding: 20px 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* =============================================
   FLOATING CALL BUTTON
   ============================================= */
.float-call {
  display: none;
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 99;
  width: 56px;
  height: 56px;
  background: var(--gold);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(201,168,76,0.4);
  transition: var(--transition);
  animation: pulse 2.5s ease infinite;
}
.float-call:hover {
  background: var(--gold-lt);
  transform: scale(1.1);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes poleSpin {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(201,168,76,0.4); }
  50%       { box-shadow: 0 4px 40px rgba(201,168,76,0.7); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.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; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--featured { grid-column: span 2; display: grid; grid-template-columns: auto 1fr; gap: 0 32px; }
  .service-card--featured .service-card__icon { grid-row: 1 / 4; }
  .hours__layout { grid-template-columns: 1fr; }
  .hours__cta-card { max-width: 480px; }
  .about__layout { grid-template-columns: 1fr; gap: 48px; }
  .about__visual { order: -1; }
  .about__shop-graphic { max-width: 360px; margin: 0 auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact__layout { grid-template-columns: 1fr; }
  .contact__map { min-height: 360px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .services__grid { grid-template-columns: 1fr; }
  .service-card--featured { grid-column: span 1; display: block; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonial--center { transform: none; }
  .testimonial--center:hover { transform: translateY(-4px); }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom .container { flex-direction: column; text-align: center; }
  .float-call { display: flex; }
  .hours__row { grid-template-columns: 130px 1fr 70px; }
  .barber-pole { display: none; }
  .trust-divider { display: none; }
  .trust-item { padding: 8px 16px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(3rem, 18vw, 5rem); }
  .hero__title--accent { font-size: clamp(4rem, 22vw, 6rem); }
  .container { padding: 0 16px; }
  .hours__row { grid-template-columns: 110px 1fr 60px; gap: 8px; }
  .service-card { padding: 28px 24px; }
  .contact__card { padding: 28px 24px; }
}
