/* ============================================
   DENTAkg — Glassmorphic Modern
   Palette: deep space + indigo/violet accent
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --bg: #0f0f1a;
  --bg-deep: #08080f;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-hover: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --accent: #6366f1;
  --accent-hover: #818cf8;
  --accent-glow: rgba(99, 102, 241, 0.35);
  --violet: #a855f7;
  --gradient: linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7);
  --gradient-reverse: linear-gradient(315deg, #6366f1, #8b5cf6, #a855f7);
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --border: rgba(255, 255, 255, 0.1);
  --border-accent: rgba(99, 102, 241, 0.3);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 60px rgba(99, 102, 241, 0.15);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Background Orbs (ambient glow) --- */
body::before,
body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
body::before {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,0.25), transparent 70%);
  top: -200px; left: -100px;
}
body::after {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(168,85,247,0.2), transparent 70%);
  bottom: -150px; right: -100px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }

p { color: var(--text-muted); line-height: 1.8; }

a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-hover); }

img { max-width: 100%; height: auto; display: block; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Glass Card --- */
.glass {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-glass);
}

.glass-strong {
  background: var(--surface);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-glass);
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 12px 0;
  background: rgba(15, 15, 26, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid var(--border-accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Desktop Nav */
.nav-desktop {
  display: none;
  gap: 8px;
}

.nav-desktop a {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}
.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--text);
  background: var(--surface);
}
.nav-desktop a.active {
  background: var(--surface-strong);
}

/* Burger */
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.burger span {
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav Overlay */
.nav-mobile {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(8, 8, 15, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.nav-mobile.open {
  opacity: 1;
  pointer-events: all;
}
.nav-mobile a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 12px 32px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--text);
  background: var(--surface);
}

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .burger { display: none; }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

/* CSS-only hero background — geometric gradient + grid */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(99,102,241,0.15), transparent),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(168,85,247,0.12), transparent),
    radial-gradient(ellipse 40% 40% at 50% 80%, rgba(139,92,246,0.08), transparent),
    var(--bg);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 70%);
  opacity: 0.3;
}

/* Floating SVG shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: float 12s ease-in-out infinite;
}
.hero-shapes .shape-1 {
  width: 300px; height: 300px;
  background: var(--gradient);
  top: 10%; right: -5%;
  animation-delay: 0s;
}
.hero-shapes .shape-2 {
  width: 200px; height: 200px;
  background: var(--gradient-reverse);
  bottom: 20%; left: -3%;
  animation-delay: -4s;
}
.hero-shapes .shape-3 {
  width: 150px; height: 150px;
  border: 2px solid var(--accent);
  top: 50%; left: 30%;
  animation-delay: -8s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero-text {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--surface);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.hero h1 {
  margin-bottom: 20px;
  font-weight: 800;
}

.hero h1 .gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Hero photo collage */
.hero-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
}
.hero-photos .hero-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-glass);
  aspect-ratio: 3/4;
}
.hero-photos .hero-photo:nth-child(2) {
  margin-top: 30px;
}
.hero-photos .hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hero-photos .hero-photo:hover img {
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: var(--transition);
  min-height: 48px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  background: var(--surface);
  border-color: var(--accent);
  color: var(--text);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  color: #fff;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
  min-height: 44px;
}

.btn svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
}

/* ============================================
   STATS ROW
   ============================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.stat-card {
  padding: 24px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

@media (min-width: 768px) {
  .stats-row { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-label::before,
.section-label::after {
  content: '';
  width: 24px; height: 1px;
  background: var(--accent);
  opacity: 0.5;
}

.section-desc {
  max-width: 600px;
  margin: 16px auto 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ============================================
   SERVICES — photo-left cards
   ============================================ */
.service-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.service-photo {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-photo img {
  transform: scale(1.05);
}

.service-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-xs);
  background: var(--surface-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.service-body h3 {
  margin-bottom: 10px;
}

.service-body p {
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  transition: var(--transition);
}
.service-cta:hover {
  gap: 10px;
  color: var(--accent-hover);
}

@media (min-width: 768px) {
  .service-card {
    grid-template-columns: 320px 1fr;
  }
  .service-photo {
    aspect-ratio: auto;
    min-height: 240px;
  }
  .service-card:nth-child(even) {
    direction: rtl;
  }
  .service-card:nth-child(even) > * {
    direction: ltr;
  }
}

/* ============================================
   GALLERY — Before/After
   ============================================ */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.ba-card {
  overflow: hidden;
  padding: 0;
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.ba-side {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.ba-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-label {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.ba-label.before {
  background: rgba(239, 68, 68, 0.8);
  color: #fff;
}
.ba-label.after {
  background: rgba(34, 197, 94, 0.8);
  color: #fff;
}

.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--gradient);
  z-index: 2;
  transform: translateX(-50%);
}
.ba-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 15px var(--accent-glow);
}

.ba-caption {
  padding: 18px 22px;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: center;
  border-top: 1px solid var(--glass-border);
}

@media (min-width: 768px) {
  .ba-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ba-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   TEAM
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.team-card {
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow);
}

.team-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.team-card:hover .team-photo img {
  transform: scale(1.05);
}

.team-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(15,15,26,0.9), transparent);
  pointer-events: none;
}

.team-info {
  padding: 18px 14px;
  position: relative;
  margin-top: -40px;
  z-index: 2;
}

.team-info h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.team-info p {
  font-size: 0.78rem;
  color: var(--text-dim);
}

@media (min-width: 768px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.review-card {
  padding: 28px;
}

.review-stars {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 1.02rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 18px;
}

.review-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   CONTACTS PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.contact-item {
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.contact-icon {
  width: 48px; height: 48px;
  min-width: 48px;
  border-radius: var(--radius-sm);
  background: var(--surface-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-details h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}
.contact-details p,
.contact-details a {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.8) invert(0.92) contrast(0.9);
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   STICKY BOTTOM CTA BAR
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  padding: 12px 20px;
  background: rgba(15, 15, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta .btn {
  flex: 1;
  max-width: 240px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 60px 0 100px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.footer-brand img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--text); }

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-dim);
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr auto 1fr;
    text-align: left;
  }
  .footer-brand { justify-content: flex-start; }
  .footer-copy { text-align: right; align-self: center; }
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays */
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ============================================
   PAGE HERO (for inner pages)
   ============================================ */
.page-hero {
  position: relative;
  padding: 140px 0 60px;
  overflow: hidden;
}
.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  margin-bottom: 12px;
}
.page-hero .page-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
}

/* ============================================
   PATIENTS / ATMOSPHERE GALLERY
   ============================================ */
.atmosphere-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.atmosphere-grid .atm-photo {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--glass-border);
}
.atmosphere-grid .atm-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.atmosphere-grid .atm-photo:hover img {
  transform: scale(1.05);
}
.atmosphere-grid .atm-photo:first-child {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

@media (min-width: 768px) {
  .atmosphere-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .atmosphere-grid .atm-photo:first-child {
    grid-column: span 1;
    aspect-ratio: 1;
  }
}

/* ============================================
   SCHEDULE TABLE
   ============================================ */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
}
.schedule-table tr {
  border-bottom: 1px solid var(--glass-border);
}
.schedule-table td {
  padding: 14px 18px;
  font-size: 0.92rem;
}
.schedule-table td:first-child {
  color: var(--text);
  font-weight: 500;
}
.schedule-table td:last-child {
  color: var(--text-muted);
  text-align: right;
}
.schedule-table tr.day-off td {
  color: var(--text-dim);
}

/* ============================================
   UTILITIES
   ============================================ */
.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mb-0 { margin-bottom: 0; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }

.text-center { text-align: center; }

/* Spacer above footer for sticky CTA */
.footer-spacer { height: 80px; }
