/* ============================================
   Positiv Vibez Barbershop — Styles
   Plum + Amber · Editorial · Bold
   ============================================ */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --plum-deep: #2A0A2E;
  --plum: #5C1A5E;
  --plum-mid: #7B2D8E;
  --plum-light: #A855B8;
  --plum-pale: #F3E8F7;
  --amber: #D4841C;
  --amber-light: #E8A54B;
  --amber-glow: #F5C06A;
  --cream: #FDF8F4;
  --cream-dark: #F5EDE6;
  --text-dark: #1A0A1E;
  --text-mid: #4A3050;
  --text-light: #7A6080;
  --white: #FFFFFF;
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

body {
  font-family: var(--sans);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--plum);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
  z-index: 9999;
  font-size: 0.875rem;
  font-weight: 500;
}
.skip-link:focus {
  top: 0;
}

/* ============================================
   Header
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), backdrop-filter 0.4s var(--ease-out);
}
.site-header.scrolled {
  background: rgba(253, 248, 244, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(92, 26, 94, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  z-index: 1001;
}
.logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--plum-mid), var(--amber));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.site-header .logo-mark {
  width: 36px;
  height: 36px;
  font-size: 0.7rem;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amber);
  transition: width 0.3s var(--ease-out);
}
.main-nav a:hover {
  color: var(--plum);
}
.main-nav a:hover::after {
  width: 100%;
}

/* Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1001;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
}
.hamburger {
  position: relative;
  margin: 6px auto 0;
}
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}
.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }
.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.9375rem;
  border: 2px solid transparent;
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
  padding: 0;
}
.btn-amber {
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  color: var(--white);
  border-color: var(--amber);
  box-shadow: 0 4px 20px rgba(212, 132, 28, 0.35);
}
.btn-amber:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 132, 28, 0.45);
  background: linear-gradient(135deg, var(--amber-light), var(--amber));
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--plum);
  border-color: var(--white);
}
.btn-outline-plum {
  background: transparent;
  color: var(--plum);
  border-color: var(--plum);
}
.btn-outline-plum:hover {
  background: var(--plum);
  color: var(--white);
}
.btn-sm {
  padding: 10px 22px;
  font-size: 0.875rem;
}
.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}
.btn-full {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 1rem;
}

/* ============================================
   Section Shared
   ============================================ */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.serif-italic {
  font-style: italic;
  font-weight: 400;
  color: var(--plum-mid);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    var(--plum-deep) 0%,
    var(--plum) 30%,
    var(--plum-mid) 55%,
    var(--amber) 85%,
    var(--amber-glow) 100%
  );
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 80%, rgba(42, 10, 46, 0.6) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(212, 132, 28, 0.3) 0%, transparent 50%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  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-size: 128px 128px;
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-glow);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3rem, 10vw, 6.5rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}
.hero-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--amber-glow);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  max-width: 540px;
  margin: 0 auto 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}
.hero-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 1s forwards;
}
.hero-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
}
.hero-detail svg {
  opacity: 0.7;
  flex-shrink: 0;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1.2s forwards;
}
.hero-scroll span {
  display: block;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  margin: 0 auto 8px;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(0.5); opacity: 1; }
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   Services
   ============================================ */
.services {
  padding: 120px 0;
  background: var(--cream);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  border: 1px solid rgba(92, 26, 94, 0.06);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(92, 26, 94, 0.1);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--plum-mid), var(--amber));
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}
.service-card:hover::before {
  opacity: 1;
}
.service-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 900;
  color: var(--plum-pale);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.3s;
}
.service-card:hover .service-num {
  color: var(--plum);
}
.service-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.service-desc {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================
   About
   ============================================ */
.about {
  padding: 120px 0;
  background: var(--white);
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 80px rgba(92, 26, 94, 0.15);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.about-image:hover img {
  transform: scale(1.03);
}
.about-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--plum-mid), var(--amber));
  border-radius: 20px;
  z-index: -1;
  opacity: 0.15;
}
.about-content {
  padding: 20px 0;
}
.about-body {
  font-size: 1.0625rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--plum-pale);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--plum-mid);
  line-height: 1;
}
.stat-label {
  font-size: 0.8125rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================
   Gallery
   ============================================ */
.gallery {
  padding: 120px 0;
  background: var(--cream);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/2;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 10, 46, 0.4) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item:hover::after {
  opacity: 1;
}

/* ============================================
   Testimonial Strip
   ============================================ */
.testimonial-strip {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--plum-deep), var(--plum), var(--plum-mid));
  position: relative;
  overflow: hidden;
}
.testimonial-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(212, 132, 28, 0.15), transparent);
  pointer-events: none;
}
.testimonial-quote {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.quote-mark {
  color: var(--amber);
  opacity: 0.5;
  margin-bottom: 24px;
}
.testimonial-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  letter-spacing: -0.01em;
}
.testimonial-quote blockquote p {
  font-style: normal;
}

/* ============================================
   Contact
   ============================================ */
.contact {
  padding: 120px 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
}
.contact-icon {
  width: 52px;
  height: 52px;
  background: var(--plum-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--plum-mid);
}
.contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact-item a,
.contact-item > div > span {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
}
.contact-item a:hover {
  color: var(--plum-mid);
  text-decoration: underline;
}

/* Form */
.contact-form-wrap {
  background: var(--cream);
  border-radius: 24px;
  padding: 48px;
  border: 1px solid rgba(92, 26, 94, 0.06);
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.optional {
  font-weight: 400;
  color: var(--text-light);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(92, 26, 94, 0.12);
  border-radius: 12px;
  font-family: var(--sans);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--plum-mid);
  box-shadow: 0 0 0 4px rgba(123, 45, 142, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237B2D8E' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* Success Message */
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--plum-mid), var(--amber));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--white);
}
.form-success h3 {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.form-success p {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.form-success a {
  color: var(--plum-mid);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--plum-deep);
  color: rgba(255, 255, 255, 0.6);
  padding: 64px 0 40px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 40px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}
.footer-brand .logo-mark {
  width: 40px;
  height: 40px;
  font-size: 0.75rem;
}
.footer-tagline {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--amber-glow);
  opacity: 0.8;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8125rem;
}
.footer-bottom a {
  color: var(--amber-light);
  transition: color 0.2s;
}
.footer-bottom a:hover {
  color: var(--amber-glow);
}

/* ============================================
   Scroll Animations
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.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; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    gap: 48px;
  }
  .contact-grid {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  .main-nav {
    position: fixed;
    inset: 0;
    background: rgba(253, 248, 244, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-out), visibility 0.4s var(--ease-out);
  }
  .main-nav.open {
    opacity: 1;
    visibility: visible;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }
  .main-nav a {
    font-size: 1.25rem;
    color: var(--text-dark);
  }
  .main-nav a::after {
    display: none;
  }
  .hero {
    padding: 140px 24px 100px;
  }
  .hero-headline {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-details {
    flex-direction: column;
    gap: 12px;
  }
  .services {
    padding: 80px 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-card {
    padding: 28px 24px;
  }
  .about {
    padding: 80px 0;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image {
    aspect-ratio: 3/4;
  }
  .about-accent {
    width: 120px;
    height: 120px;
    bottom: -16px;
    right: -16px;
  }
  .about-stats {
    gap: 24px;
  }
  .gallery {
    padding: 80px 0;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .testimonial-strip {
    padding: 80px 24px;
  }
  .contact {
    padding: 80px 0;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-form-wrap {
    padding: 32px 24px;
  }
  .footer-top {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero {
    padding: 120px 16px 80px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .about-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
}
