/* ============================================================
   UPPER CUTS BARBER SHOP — Premium Styles
   ============================================================ */

/* ---------- Custom Properties ---------- */
:root {
  --color-bg: #0a0a0a;
  --color-bg-alt: #111111;
  --color-bg-card: rgba(255, 255, 255, 0.04);
  --color-surface: #1a1a1a;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-text: #f0ece4;
  --color-text-muted: #8a8680;
  --color-text-dim: #5a5650;
  --color-gold: #c8a44e;
  --color-gold-light: #e2c87d;
  --color-gold-dark: #9a7b2e;
  --color-amber: #d4a843;
  --glass-bg: rgba(20, 18, 15, 0.65);
  --glass-border: rgba(200, 164, 78, 0.12);
  --glass-blur: 20px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-glow: 0 0 30px rgba(200, 164, 78, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-heading: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --nav-height: 72px;
  --container-max: 1200px;
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-gold-light);
}

/* ---------- Utilities ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

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

.section {
  padding: 100px 0;
  position: relative;
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
  position: relative;
  padding: 0 20px;
}

.section__label::before,
.section__label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--color-gold-dark);
}

.section__label::before { right: 100%; }
.section__label::after { left: 100%; }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 16px;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- Glass Card ---------- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.glass-card:hover {
  border-color: rgba(200, 164, 78, 0.25);
  box-shadow: var(--shadow-glow);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn--glow {
  background: linear-gradient(135deg, var(--color-gold), var(--color-amber));
  color: #0a0a0a;
  box-shadow: 0 0 30px rgba(200, 164, 78, 0.3), 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn--glow:hover {
  color: #0a0a0a;
  box-shadow: 0 0 50px rgba(200, 164, 78, 0.5), 0 4px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--outline:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
  background: rgba(200, 164, 78, 0.05);
}

/* ---------- Scroll Animations ---------- */
.anim-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--delay, 0s);
}

.anim-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.nav--scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--color-border);
}

.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}

.nav__logo-upper {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.5px;
}

.nav__logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-base);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition-base);
}

.nav__link:hover {
  color: var(--color-text);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--cta {
  color: #0a0a0a;
  background: var(--color-gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
}

.nav__link--cta::after { display: none; }

.nav__link--cta:hover {
  color: #0a0a0a;
  background: var(--color-gold-light);
  box-shadow: 0 0 20px rgba(200, 164, 78, 0.3);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav__hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.nav__hamburger.is-active .nav__hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.is-active .nav__hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__hamburger.is-active .nav__hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero__parallax {
  position: absolute;
  inset: -20%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.5) 0%,
    rgba(10, 10, 10, 0.7) 50%,
    rgba(10, 10, 10, 0.95) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.hero__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  padding: 8px 24px;
  border: 1px solid rgba(200, 164, 78, 0.3);
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--color-text);
  margin-bottom: 20px;
}

.hero__title-accent {
  color: var(--color-gold);
  display: block;
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--color-text-muted);
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.hero__cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__hours {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--color-text-dim);
  text-transform: uppercase;
}

.hero__hours-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-gold-dark);
}

/* Scroll Indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero__scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-dim);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--color-bg);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about__text p {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

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

.about__stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.about__stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 4px;
}

.about__stat-label {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-dim);
}

/* About Visual */
.about__visual {
  position: relative;
}

.about__image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about__image {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about__image-accent {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200, 164, 78, 0.15);
  pointer-events: none;
}

.about__quote {
  position: absolute;
  bottom: -24px;
  left: -24px;
  padding: 20px 28px;
  max-width: 280px;
}

.about__quote-icon {
  color: var(--color-gold);
  opacity: 0.5;
  margin-bottom: 8px;
  width: 24px;
  height: 24px;
}

.about__quote p {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.5;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--color-bg-alt);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0;
  transition: opacity var(--transition-base), width var(--transition-base);
}

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

.service-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(200, 164, 78, 0.1);
  color: var(--color-gold);
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
}

.service-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 10px;
}

.service-card__desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card__price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  background: var(--color-bg);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__item:hover img {
  transform: scale(1.08);
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
}

.gallery__item-overlay span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  background: var(--color-bg-alt);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  padding: 32px;
}

.review-card:nth-child(4),
.review-card:nth-child(5) {
  /* center last two cards */
}

.review-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
  color: var(--color-gold);
}

.review-card__stars svg {
  width: 16px;
  height: 16px;
}

.review-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  font-style: italic;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #0a0a0a;
}

.review-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text);
}

.review-card__meta {
  font-size: 0.75rem;
  color: var(--color-text-dim);
}

/* ============================================================
   LOCATION
   ============================================================ */
.location {
  background: var(--color-bg);
}

.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

.location__map iframe {
  width: 100%;
  height: 100%;
}

.location__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location__card {
  padding: 28px;
}

.location__card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 12px;
}

.location__card-title svg {
  color: var(--color-gold);
  flex-shrink: 0;
}

.location__card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.location__link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gold);
}

.location__phone {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-gold);
  text-decoration: none;
  display: block;
}

.location__phone:hover {
  color: var(--color-gold-light);
}

.location__phone-note {
  margin-top: 4px;
  font-size: 0.8rem;
  color: var(--color-text-dim);
}

/* Hours Table */
.location__hours {
  width: 100%;
  border-collapse: collapse;
}

.location__hours td {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}

.location__hours tr:last-child td {
  border-bottom: none;
}

.location__hours td:last-child {
  text-align: right;
  font-weight: 500;
  color: var(--color-text);
}

.location__hours-closed {
  color: var(--color-text-dim) !important;
  font-weight: 400 !important;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--color-border);
}

.footer__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 16px;
}

.footer__logo-upper {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text);
}

.footer__logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
}

.footer__tagline {
  font-style: italic;
  color: var(--color-text-dim);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer__address {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.footer__phone {
  color: var(--color-gold);
  font-weight: 600;
  font-size: 0.95rem;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 20px;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav a {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  transition: color var(--transition-base);
}

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

.footer__hours-col p {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  line-height: 1.8;
}

.footer__social-links {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all var(--transition-base);
}

.footer__social-link:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
  background: rgba(200, 164, 78, 0.1);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--color-text-dim);
}

.footer__back-to-top {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  cursor: pointer;
  transition: color var(--transition-base);
}

.footer__back-to-top:hover {
  color: var(--color-gold);
}

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

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

  .reviews__grid .review-card:last-child {
    grid-column: span 2;
    max-width: 500px;
    justify-self: center;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__visual {
    order: -1;
  }

  .about__image {
    height: 350px;
  }

  .about__quote {
    bottom: -16px;
    left: 16px;
  }

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

  .location__map {
    height: 320px;
  }

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

  .gallery__item--wide {
    grid-column: span 1;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .section {
    padding: 72px 0;
  }

  .section__header {
    margin-bottom: 48px;
  }

  /* Mobile Nav */
  .nav__hamburger {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav__links.is-open {
    transform: translateX(0);
  }

  .nav__link {
    font-size: 1.2rem;
    color: var(--color-text);
  }

  .nav__link--cta {
    margin-top: 16px;
  }

  /* Hero Mobile */
  .hero__cta-group {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero__scroll-indicator {
    display: none;
  }

  /* Services Mobile */
  .services__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .service-card {
    padding: 24px 16px;
  }

  .service-card__desc {
    display: none;
  }

  /* Gallery Mobile */
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  /* Reviews Mobile */
  .reviews__grid {
    grid-template-columns: 1fr;
  }

  .reviews__grid .review-card:last-child {
    grid-column: span 1;
    max-width: none;
  }

  /* About Stats */
  .about__stats {
    gap: 24px;
  }

  .about__stat-number {
    font-size: 1.6rem;
  }

  /* Footer Mobile */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

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

  .service-card__desc {
    display: block;
  }

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

  .about__stats {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
