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

:root {
  --gold: #c9a882;
  --gold-light: #e8d5bc;
  --dark: #111110;
  --dark-2: #1c1c1a;
  --dark-3: #2a2a27;
  --light: #f8f5f0;
  --light-2: #ede9e2;
  --text: #1c1c1a;
  --text-muted: #6b6b65;
  --text-light: #9a9a93;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 4px;
  --radius-lg: 12px;
  --shadow: 0 2px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ===== ACCESSIBILITY ===== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: var(--gold);
  color: #fff;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 0 0 var(--radius) 0;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

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

/* ===== TYPOGRAPHY ===== */
.logo-script {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
.logo-bold {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  margin-left: 4px;
}
.section-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.section-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 500px;
}
.section-sub a { color: var(--gold); }
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header .section-sub { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 14px 32px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-primary:hover { background: #b8956e; transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  padding: 14px 32px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }

.btn-outline {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 14px 32px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-outline:hover { background: var(--gold); color: #fff; }
.btn-large { padding: 18px 48px; font-size: 0.85rem; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  transition: var(--transition);
}
.nav.scrolled {
  background: #0a0a09;
  backdrop-filter: blur(10px);
  padding: 1rem 2.5rem;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
.nav-logo { color: #fff; display: flex; align-items: center; gap: 2px; }
.nav-links { display: flex; gap: 2.5rem; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: #fff;
  padding: 9px 22px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-cta:hover { background: #b8956e; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: var(--transition);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  color: rgba(255,255,255,0.8);
  font-size: 1.5rem;
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.mobile-link:hover { color: var(--gold); }
.mobile-cta {
  background: var(--gold);
  color: #fff;
  padding: 14px 40px;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  margin-top: 1rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(201,168,130,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201,168,130,0.05) 0%, transparent 50%);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.45;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,9,0.55);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 8rem 2rem 4rem;
}
.hero-location {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.87);
  max-width: 420px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.2); }
}

/* ===== SERVICES ===== */
.services {
  padding: 6rem 0;
  background: var(--light);
}
.services-categories {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.cat-btn {
  padding: 9px 22px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--light-2);
  border-radius: 100px;
  color: var(--text-muted);
  background: #fff;
  transition: var(--transition);
}
.cat-btn.active, .cat-btn:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--light-2);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.service-card:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.service-card.hidden { display: none; }
.service-badge {
  position: absolute;
  top: -10px;
  left: 1.5rem;
  background: var(--gold);
  color: #fff;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}
.service-info { flex: 1; }
.service-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.service-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-duration {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}
.service-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
}
.service-btn {
  display: block;
  text-align: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
}
.service-btn:hover { background: var(--gold); color: #fff; }
.services-cta { text-align: center; }

/* NAV LOGO IMAGE */
.nav-logo-img {
  height: 60px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  opacity: 1;
}
.footer-logo-img {
  height: 64px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: invert(1);
  opacity: 1;
  margin-bottom: 6px;
}

/* FIX DARK SECTION TEXT */
.gallery {
  padding: 6rem 0;
  background: var(--dark-2);
}
.gallery .section-tag { color: var(--gold); }
.gallery .section-title { color: #ffffff; }
.gallery .section-sub { color: rgba(255,255,255,0.78); }
.gallery .section-sub a { color: var(--gold); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 12px;
  margin-bottom: 2.5rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--dark-3);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-large { grid-row: span 2; }
.gallery-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.15);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}
.gallery-placeholder::after { content: 'Add photo'; }
.gallery-cta { text-align: center; }

/* ===== GALLERY SCROLL ===== */
.gallery-scroll-wrap {
  width: 100%;
  max-height: 620px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 2.5rem;
  cursor: pointer;
}
.gallery-scroll-inner {
  animation: galleryScroll 30s linear infinite;
}
.gallery-scroll-wrap:hover .gallery-scroll-inner {
  animation-play-state: paused;
}
@keyframes galleryScroll {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-40%); }
  100% { transform: translateY(0); }
}

/* ===== ABOUT ===== */
.about {
  padding: 6rem 0;
  background: var(--light);
}
.about-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--light-2);
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.85rem;
}
.about-img-placeholder::after { content: 'Add photo of Maru'; }
.about-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.about-title em { font-style: italic; color: var(--gold); }
.about-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text);
}
.highlight-icon {
  width: 20px;
  height: 20px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}

/* ===== TEAM GALLERY ===== */
.team-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--light-2);
  max-width: 700px;
  margin-inline: auto;
}
.team-card {
  text-align: center;
}
.team-img-wrap {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--light-2);
  margin-bottom: 1rem;
}
.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.team-card:hover .team-img-wrap img { transform: scale(1.04); }
.team-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.8rem;
}
.team-img-placeholder::after { content: 'Add photo'; }
.team-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 600px) {
  .team-gallery { grid-template-columns: 1fr; max-width: 280px; margin-inline: auto; }
}

/* ===== REVIEWS ===== */
.reviews {
  padding: 6rem 0;
  background: var(--light-2);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.review-card.featured {
  background: var(--dark);
  border-color: transparent;
  transform: scale(1.03);
}
.review-card:hover { box-shadow: var(--shadow); }
.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.review-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.review-card.featured .review-text { color: rgba(255,255,255,0.9); }
.reviewer {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--text-light);
  font-weight: 500;
}
.review-card.featured .reviewer { color: rgba(255,255,255,0.72); }

/* ===== CONTACT ===== */
.contact {
  padding: 6rem 0;
  background: var(--light);
}
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 2.5rem;
}
.contact-items { display: flex; flex-direction: column; gap: 1.75rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { font-size: 1.1rem; line-height: 1; margin-top: 2px; }
.contact-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-value {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-value a { color: var(--text-muted); transition: color var(--transition); }
.contact-value a:hover { color: var(--gold); }
.contact-value em { font-style: italic; font-size: 0.85rem; }
.contact-map {
  height: 450px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--light-2);
}
.contact-map iframe { width: 100%; height: 100%; }

/* ===== BOOK BANNER ===== */
.book-banner {
  padding: 6rem 2rem;
  background: var(--dark);
  text-align: center;
}
.banner-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 1rem;
}
.banner-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.87);
  margin-bottom: 2.5rem;
}

/* ===== FOOTER ===== */
.footer {
  background: #0a0a09;
  padding: 3rem 0;
}
.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-brand .logo-script,
.footer-brand .logo-bold { color: rgba(255,255,255,0.6); }
.footer-tagline {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  text-decoration: none;
}
.footer-links a:hover { color: var(--gold); }
.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.footer-legal a {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  text-decoration: none;
}
.footer-legal a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.85);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: #0a0a09;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  transform: translateY(0);
  transition: transform 0.4s ease;
}
.cookie-banner.hidden { transform: translateY(110%); }
.cookie-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  flex: 1;
  min-width: 200px;
}
.cookie-text a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-accept {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 9px 22px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition);
}
.cookie-accept:hover { background: #b8956e; }
.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 9px 22px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.cookie-decline:hover { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.35); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-scroll { display: none; }
  .hero-video { object-position: 70% center; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav { padding: 1.25rem 1.5rem; }

  .about-container,
  .contact-container { grid-template-columns: 1fr; }
  .about-img-wrap { aspect-ratio: 4/3; max-width: 500px; }
  .contact-map { height: 300px; }

  .reviews-grid { grid-template-columns: 1fr; }
  .review-card.featured { transform: none; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-large { grid-row: span 1; }
  .gallery-item { height: 200px; }

  .hero-stats { gap: 1.25rem; }
  .footer-container { flex-direction: column; align-items: flex-start; }
  .footer-legal { align-items: flex-start; }
}

@media (max-width: 600px) {
  .container { padding: 0 1.25rem; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 220px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .stat-divider { width: 40px; height: 1px; }
}
