/* ============================================================
   BABY EVENT ISTANBUL — style.css
   Color Palette (from logo):
     --gold-light   : #F5E6BE
     --gold         : #C9A84C
     --gold-dark    : #B8860B
     --gold-shine   : #D4AF37
     --charcoal     : #3D3D3D
     --gray-mid     : #6B6B6B
     --gray-light   : #F0EDE8
     --bg-cream     : #FAFAF8
     --white        : #FFFFFF
   ============================================================ */

/* ── 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: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: #FAFAF8;
  color: #3D3D3D;
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

a:hover { opacity: 0.8; }

ul { list-style: none; }

address { font-style: normal; }

/* ── CSS Custom Properties ──────────────────────────────────── */
:root {
  --gold-light   : #F5E6BE;
  --gold         : #C9A84C;
  --gold-dark    : #B8860B;
  --gold-shine   : #D4AF37;
  --charcoal     : #3D3D3D;
  --gray-mid     : #6B6B6B;
  --gray-light   : #F0EDE8;
  --bg-cream     : #FAFAF8;
  --white        : #FFFFFF;
  --shadow-sm    : 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md    : 0 8px 24px rgba(0,0,0,0.10);
  --shadow-gold  : 0 4px 20px rgba(201,168,76,0.25);
  --radius-sm    : 8px;
  --radius-md    : 16px;
  --radius-lg    : 24px;
  --transition   : 0.3s ease;
  --max-width    : 1200px;
  --padding-x    : clamp(1rem, 5vw, 2rem);
}

/* ── Container ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--padding-x);
}

/* ── Section Padding ─────────────────────────────────────────── */
.section-padding {
  padding-block: clamp(4rem, 8vw, 6rem);
}

/* ── Section Header ──────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-mid);
  max-width: 580px;
  margin-inline: auto;
}

/* ── Typography ──────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.25;
  color: var(--charcoal);
}

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

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.40);
  opacity: 1;
}

.btn-outline {
  background: transparent;
  color: var(--gold-dark);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold-light);
  color: var(--gold-dark);
  opacity: 1;
}

.btn-full { width: 100%; }

/* ── Scroll Reveal Animation ─────────────────────────────────── */
.service-card,
.why-card,
.gallery-item,
.stat-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.service-card.revealed,
.why-card.revealed,
.gallery-item.revealed,
.stat-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  border-bottom-color: var(--gold-light);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-light);
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
}

.logo-text small {
  display: block;
  font-size: 0.7rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Nav */
.main-nav { flex: 1; display: flex; justify-content: flex-end; }

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.nav-list a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.nav-list a:hover {
  color: var(--gold-dark);
  border-bottom-color: var(--gold);
  opacity: 1;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white) !important;
  padding: 0.5rem 1.4rem !important;
  border-radius: 50px;
  border-bottom: none !important;
  box-shadow: var(--shadow-gold);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.40);
  border-bottom: none !important;
}

/* Burger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius-sm);
}

.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(580px, 90vh, 820px);
  display: flex;
  align-items: center;
  background:
    url('images/hero1.jpg') center center / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  display: block !important;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(245, 230, 190, 0.72) 0%,
    rgba(250, 250, 248, 0.88) 45%,
    rgba(240, 237, 232, 0.78) 100%
  );
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 2px 2px, rgba(212,175,55,0.08) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 1;
}

.hero-overlay { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: clamp(3rem, 6vw, 5rem);
  max-width: 740px;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.25rem;
  background: var(--gold-light);
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 50px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gray-mid);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-langs {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.hero-langs span {
  font-size: 1.5rem;
  line-height: 1;
}

.hero-langs p {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-mid);
  letter-spacing: 0.05em;
  margin-left: 0.25rem;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-arrow {
  display: block;
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: bounceDown 1.6s ease-in-out infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
  50%       { transform: rotate(45deg) translateY(6px); opacity: 0.5; }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2a2a2a 100%);
  padding-block: 2.5rem;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat-item {
  text-align: center;
  color: var(--white);
  min-width: 100px;
}

.stat-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--gold-shine);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-item span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}

.service-card.featured {
  background: linear-gradient(145deg, var(--charcoal) 0%, #2d2d2d 100%);
  border-color: var(--gold);
  color: var(--white);
}

.service-card.featured h3,
.service-card.featured p {
  color: var(--white);
}

.service-card.featured p {
  color: rgba(255,255,255,0.80);
}

.service-badge {
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: block;
  line-height: 1;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--gray-mid);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.02em;
  transition: gap var(--transition);
}

.service-card.featured .service-link {
  color: var(--gold-shine);
}

.service-link:hover {
  opacity: 1;
  color: var(--gold);
  padding-left: 4px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: linear-gradient(135deg, var(--gold-light) 0%, #fdf9f0 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

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

.about-image-wrap {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.about-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}

.about-badge span {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.9;
  line-height: 1.4;
}

.about-content .section-eyebrow { text-align: left; }

.about-content h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  margin-bottom: 1.25rem;
}

.about-content p {
  color: var(--gray-mid);
  margin-bottom: 1rem;
  font-size: 0.98rem;
  line-height: 1.75;
}

.about-content p strong {
  color: var(--charcoal);
  font-weight: 600;
}

.about-list {
  margin-block: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.check-icon {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

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

.gallery-item--large {
  grid-column: 1;
  grid-row: 1 / 3;
}

.gallery-item--wide {
  grid-column: 2 / 4;
}

/* Instagram Embed Grid */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  align-items: start;
}

.instagram-grid .instagram-media {
  border-radius: var(--radius-md) !important;
  width: 100% !important;
}

@media (max-width: 900px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.gallery-cta { text-align: center; }

/* ============================================================
   WHY US
   ============================================================ */
.why-us {
  background: var(--charcoal);
}

.why-us .section-eyebrow { color: var(--gold-shine); }
.why-us .section-header h2 { color: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.why-card:hover {
  background: rgba(212,175,55,0.08);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.why-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  display: block;
}

.why-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.why-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: linear-gradient(135deg, var(--gold-light) 0%, #fdf9f0 60%, var(--bg-cream) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.contact-info .section-eyebrow { text-align: left; }

.contact-info h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1rem;
}

.contact-intro {
  color: var(--gray-mid);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-item div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-item strong {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--charcoal);
}

.contact-item span,
.contact-item a {
  font-size: 0.95rem;
  color: var(--gray-mid);
  line-height: 1.5;
}

.contact-item a:hover {
  color: var(--gold-dark);
  opacity: 1;
}

.contact-langs {
  display: flex;
  gap: 0.5rem;
  font-size: 1.75rem;
}

/* Map */
.contact-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-light);
  height: 480px;
  min-height: 380px;
}

.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 900px) {
  .contact-map-wrap {
    height: 360px;
  }
}

@media (max-width: 640px) {
  .contact-map-wrap {
    height: 280px;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--charcoal);
  padding-block: 2.5rem;
  color: rgba(255,255,255,0.75);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(212,175,55,0.4);
}

.footer-brand strong {
  display: block;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  line-height: 1.2;
}

.footer-brand span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.footer-nav a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--gold-shine);
  opacity: 1;
}

.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
  opacity: 1;
}

/* ============================================================
   RESPONSIVE — Tablet (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    order: -1;
    min-height: 300px;
  }

  .about-image-wrap { min-height: 300px; }

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

  .gallery-item--large {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .gallery-item--large .gallery-placeholder {
    min-height: 280px;
  }

  .gallery-item--wide {
    grid-column: 1 / 3;
  }

  .stat-divider { display: none; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
  /* Mobile Nav */
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250, 250, 248, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--gold-light);
    padding: 1.25rem var(--padding-x) 1.75rem;
    display: none;
    box-shadow: var(--shadow-md);
  }

  .main-nav.is-open { display: flex; }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    width: 100%;
  }

  .nav-list a {
    display: block;
    padding: 0.65rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--gray-light);
    width: 100%;
  }

  .nav-list li:last-child a { border-bottom: none; }

  .nav-cta {
    margin-top: 0.5rem;
    display: inline-flex !important;
    width: auto !important;
  }

  /* Hero */
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn { width: 100%; text-align: center; }

  /* Stats */
  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1rem;
  }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--large,
  .gallery-item--wide { grid-column: 1; }
  .gallery-item--large .gallery-placeholder { min-height: 260px; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav { justify-content: center; }

  /* WhatsApp FAB */
  .whatsapp-fab {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
  }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* High contrast adjustments */
@media (prefers-contrast: high) {
  :root {
    --gold: #996600;
    --gold-dark: #664400;
  }
}
