/* ═══════════════════════════════════════════════════
   THAT'S WHAT'S UP BARBER — Premium Styles
   Color Palette from Logo:
   - Sky Blue:   #3BB4E5
   - Red/Coral:  #D94032
   - Cream:      #F5E6C8
   - Dark:       #1A1A1A
   ═══════════════════════════════════════════════════ */

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

:root {
  --blue: #3BB4E5;
  --blue-deep: #2A8AB5;
  --red: #D94032;
  --red-deep: #B5342A;
  --cream: #F5E6C8;
  --cream-light: #FDF8F0;
  --dark: #1A1A1A;
  --dark-soft: #2A2A2A;
  --gray: #6B6B6B;
  --gray-light: #E8E8E8;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --font-accent: 'Playfair Display', serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-spring: cubic-bezier(0.22, 1.2, 0.36, 1);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 100px;
}

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

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

::selection {
  background: var(--blue);
  color: white;
}

/* ─── Noise Overlay ────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ─── Floating Nav Island ──────────────────────── */
.nav-island {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  z-index: 1000;
  transition: transform 0.6s var(--ease-out-expo),
              opacity 0.4s ease;
}

.nav-island.hidden {
  transform: translateX(-50%) translateY(-120%);
  opacity: 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 26, 26, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  padding: 6px 6px 6px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.24),
              0 2px 8px rgba(0, 0, 0, 0.12),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 2px;
  margin-right: 12px;
}

.nav-links {
  display: flex;
  gap: 4px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: all 0.3s var(--ease-out-expo);
  position: relative;
}

.nav-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  background: var(--red);
  color: white;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  margin-left: 8px;
  transition: all 0.3s var(--ease-out-expo);
}

.nav-cta:hover {
  background: var(--red-deep);
  transform: scale(1.04);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-left: 8px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s var(--ease-out-expo);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out-expo);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  letter-spacing: 3px;
  transition: all 0.3s var(--ease-out-expo);
  transform: translateY(20px);
  opacity: 0;
}

.mobile-menu.active .mobile-link {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-link:nth-child(6) { transition-delay: 0.3s; }

.mobile-link:hover {
  color: white;
}

.mobile-link.mobile-cta {
  color: var(--red);
  margin-top: 16px;
}

/* ─── Hero ─────────────────────────────────────── */
.hero {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: var(--blue);
  top: -10%;
  right: -10%;
  animation: float 20s ease-in-out infinite;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--red);
  bottom: -5%;
  left: -5%;
  animation: float 25s ease-in-out infinite reverse;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: var(--cream);
  top: 40%;
  left: 30%;
  animation: float 18s ease-in-out infinite 3s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-logo-wrap {
  margin-bottom: 32px;
}

.hero-logo {
  width: min(500px, 80vw);
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.15));
  transition: transform 0.6s var(--ease-out-expo);
}

.hero-logo:hover {
  transform: scale(1.03) rotate(-1deg);
}

.hero-tagline {
  font-family: var(--font-accent);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-style: italic;
  color: var(--gray);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.hero-disclaimer {
  font-size: 0.75rem;
  color: var(--gray);
  opacity: 0.6;
  margin-bottom: 32px;
  letter-spacing: 0.3px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  transition: all 0.4s var(--ease-out-expo);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 4px 16px rgba(217, 64, 50, 0.3),
              0 1px 4px rgba(217, 64, 50, 0.2);
}

.btn-primary:hover {
  background: var(--red-deep);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(217, 64, 50, 0.4),
              0 2px 8px rgba(217, 64, 50, 0.3);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 0.9rem;
  transition: transform 0.3s var(--ease-out-expo);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

.btn-ghost {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--gray-light);
}

.btn-ghost:hover {
  border-color: var(--dark);
  background: var(--dark);
  color: white;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--dark);
  letter-spacing: 1px;
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red);
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-light);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gray));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ─── Section Shared ───────────────────────────── */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--red);
  background: rgba(217, 64, 50, 0.08);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 24px;
  color: var(--dark);
}

.section-title em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}

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

/* ─── Services ─────────────────────────────────── */
.services {
  padding: 120px 0;
  background: white;
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-light), transparent);
}

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

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  transition: transform 0.5s var(--ease-out-expo);
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card-inner {
  background: var(--cream-light);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
}

.service-card:hover .service-card-inner {
  border-color: rgba(59, 180, 229, 0.2);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08),
              0 4px 16px rgba(0, 0, 0, 0.04);
}

.service-card.featured .service-card-inner {
  background: var(--dark);
  border-color: transparent;
}

.service-card.featured .service-name,
.service-card.featured .service-desc,
.service-card.featured .service-number {
  color: white;
}

.service-card.featured .service-desc {
  color: rgba(255, 255, 255, 0.6);
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--red);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.service-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gray-light);
  line-height: 1;
  margin-bottom: 16px;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}

.service-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.service-card.featured .service-price {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--red);
  letter-spacing: 1px;
}

.duration {
  font-size: 0.8rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── About ────────────────────────────────────── */
@media (min-width: 769px) {
  .about .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
  }
}

.about {
  padding: 120px 0;
  background: var(--cream-light);
}

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

.about-visual {
  position: relative;
  height: 560px;
}

.about-image-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.about-img-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  transition: transform 0.6s var(--ease-out-expo);
}

.about-img-card:hover {
  z-index: 3;
}

.card-1 {
  width: 280px;
  height: 320px;
  top: 0;
  left: 0;
  transform: rotate(-4deg);
  z-index: 2;
}

.card-1:hover {
  transform: rotate(-2deg) scale(1.04);
}

.card-2 {
  width: 240px;
  height: 280px;
  top: 60px;
  right: 20px;
  transform: rotate(3deg);
  z-index: 1;
}

.card-2:hover {
  transform: rotate(1deg) scale(1.04);
}

.card-3 {
  width: 265px;
  height: 310px;
  bottom: 0;
  left: 45px;
  transform: rotate(-2deg);
}

.card-3:hover {
  transform: rotate(0deg) scale(1.04);
}

.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.card-3 .about-photo {
  object-position: top;
}


.about-text {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
}

.feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* ─── Gallery ──────────────────────────────────── */
.gallery {
  padding: 120px 0;
  background: white;
}

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

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: transform 0.6s var(--ease-out-expo);
}

.gallery-item:hover .gallery-placeholder {
  transform: scale(1.05);
}

.gallery-emoji {
  font-size: 3rem;
  filter: grayscale(0.2);
}

.gallery-label {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
}

.gi-1 {
  grid-column: span 2;
}

.gi-6 {
  grid-column: span 2;
}

/* ─── Reviews ──────────────────────────────────── */
.reviews {
  padding: 120px 0;
  background: var(--dark);
  color: white;
  overflow: hidden;
}

.reviews .section-tag {
  background: rgba(217, 64, 50, 0.2);
}

.reviews .section-title {
  color: white;
}

.reviews-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease-out-expo);
}

.review-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  border-color: rgba(59, 180, 229, 0.2);
}

.review-stars {
  color: var(--cream);
  font-size: 1.1rem;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.review-text {
  flex: 1;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  font-style: italic;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: white;
}

.review-card:nth-child(2) .author-avatar { background: var(--red); }
.review-card:nth-child(3) .author-avatar { background: var(--blue-deep); }
.review-card:nth-child(4) .author-avatar { background: var(--red-deep); }
.review-card:nth-child(5) .author-avatar { background: var(--blue); }
.review-card:nth-child(6) .author-avatar { background: var(--cream); color: var(--dark); }

.author-name {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
}

.author-detail {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ─── Booking ──────────────────────────────────── */
.booking {
  padding: 120px 0;
  background: var(--cream-light);
}

.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.booking-desc {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 40px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.detail-icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.detail-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  margin-bottom: 2px;
}

.detail-value {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
}

.detail-value.hours-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-weight: 400;
  font-size: 0.88rem;
}

.detail-value.hours-list b {
  font-weight: 700;
  display: inline-block;
  width: 30px;
}

/* Booking right panel */
.booking-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
}

.booking-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: white;
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06),
              0 4px 16px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.booking-form-wrap .btn-primary {
  padding: 20px 32px;
  font-size: 1.05rem;
}

/* ─── Footer ───────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 0 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 32px;
}

.footer-logo {
  width: 200px;
  height: auto;
  margin-bottom: 16px;
  filter: brightness(1.1);
}

.footer-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-links {
  display: flex;
  gap: 60px;
}

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

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: white;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--blue);
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ─── Scroll Animations ────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out-expo),
              transform 0.8s var(--ease-out-expo);
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

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


  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-visual {
    height: 400px;
  }

  .booking-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

@media (max-width: 768px) {
  .nav-links, .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-inner {
    padding: 6px 6px 6px 16px;
  }

  .hero {
    padding: 100px 16px 60px;
    min-height: 100dvh;
  }

  .hero-logo {
    width: min(380px, 85vw);
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .services {
    padding: 80px 0;
  }

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

  .section-header {
    margin-bottom: 40px;
  }

  .about {
    padding: 80px 0;
  }

  .about-visual {
    height: 430px;
  }

  .card-1 {
    width: 220px;
    height: 260px;
  }

  .card-2 {
    width: 195px;
    height: 235px;
    right: 4px;
  }

  .card-3 {
    width: 210px;
    height: 250px;
    left: 30px;
    bottom: -30px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .gallery {
    padding: 80px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gi-1, .gi-6 {
    grid-column: span 1;
  }

  .reviews {
    padding: 80px 0;
  }

  .reviews-track {
    grid-template-columns: 1fr;
  }

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

  .booking {
    padding: 80px 0;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    gap: 40px;
    justify-content: center;
  }

  .footer-col {
    align-items: center;
  }

  .footer-bottom {
    text-align: center;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
