/* ============================================================
   Cafetería Neptuno — Modern Redesign
   Palette: Deep Espresso · Warm Gold · Cream · Terracotta
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --espresso:    #1a1208;
  --espresso-2:  #241a0c;
  --gold:        #c9a84c;
  --gold-light:  #e8c97a;
  --gold-dark:   #a07830;
  --cream:       #faf6ef;
  --cream-2:     #f2ead8;
  --terracotta:  #b5472a;
  --warm-gray:   #8c7b6b;
  --text-light:  #d6cfc0;
  --white:       #ffffff;
  --font-serif:  'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;
  --nav-h:       80px;
  --section-pad: clamp(60px, 8vw, 120px);
  --radius-sm:   6px;
  --radius-md:   14px;
  --radius-lg:   28px;
  --shadow-gold: 0 8px 40px rgba(201,168,76,.25);
  --shadow-dark: 0 20px 60px rgba(0,0,0,.5);
  --transition:  0.35s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); background: var(--espresso); color: var(--text-light); line-height: 1.7; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
h1,h2,h3,h4 { font-family: var(--font-serif); font-weight: 500; line-height: 1.2; }
::selection { background: var(--gold); color: var(--espresso); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--espresso-2); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 48px); }

.section-label { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-sans); font-size: .7rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.section-label::before, .section-label::after { content: ''; display: block; width: 30px; height: 1px; background: var(--gold); opacity: .6; }
.section-title { font-size: clamp(2rem, 4.5vw, 3.2rem); color: var(--cream); margin-bottom: 1rem; }
.section-subtitle { font-size: 1.05rem; color: var(--warm-gray); max-width: 560px; margin-bottom: 3rem; }

.btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; background: var(--gold); color: var(--espresso); font-family: var(--font-sans); font-size: .85rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; border: none; border-radius: var(--radius-sm); cursor: pointer; transition: background var(--transition), transform var(--transition), box-shadow var(--transition); }
.btn-primary:hover { background: var(--gold-light); color: var(--espresso); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; padding: 13px 31px; background: transparent; color: var(--gold); font-family: var(--font-sans); font-size: .85rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; border: 1.5px solid var(--gold); border-radius: var(--radius-sm); cursor: pointer; transition: all var(--transition); }
.btn-outline:hover { background: var(--gold); color: var(--espresso); transform: translateY(-2px); }
.gold-divider { width: 60px; height: 2px; background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark)); border-radius: 1px; margin: 1.2rem 0; }

/* NAV */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-h); display: flex; align-items: center; transition: background var(--transition), box-shadow var(--transition); }
#navbar.scrolled { background: rgba(26,18,8,.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: 0 2px 30px rgba(0,0,0,.5); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; color: var(--cream); letter-spacing: .02em; transition: color var(--transition); }
.nav-logo span { color: var(--gold); }
.nav-logo:hover { color: var(--gold-light); }
.nav-links { list-style: none; display: flex; gap: 36px; }
.nav-links a { font-size: .78rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--text-light); position: relative; padding-bottom: 4px; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1.5px; background: var(--gold); transition: width var(--transition); }
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }
.nav-cta { padding: 10px 22px !important; background: var(--gold) !important; color: var(--espresso) !important; border-radius: var(--radius-sm); font-weight: 600 !important; font-size: .75rem !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--cream); border-radius: 1px; transition: all var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
#hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-image: url('../img/neptuno.jpg'); background-size: cover; background-position: center; transform: scale(1.06); transition: transform 8s ease-out; }
.hero-bg.loaded { transform: scale(1); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,18,8,.88) 0%, rgba(26,18,8,.6) 50%, rgba(26,18,8,.75) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.3); border-radius: 50px; font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 2rem; opacity: 0; animation: fadeSlideUp .8s .3s forwards; }
.hero-title { font-family: var(--font-serif); font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 400; line-height: 1.08; color: var(--cream); margin-bottom: 1rem; opacity: 0; animation: fadeSlideUp .9s .5s forwards; }
.hero-title span { color: var(--gold); font-style: italic; }
.hero-tagline { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text-light); font-family: var(--font-serif); font-style: italic; font-weight: 300; margin-bottom: 2.5rem; opacity: 0; animation: fadeSlideUp .9s .7s forwards; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: fadeSlideUp .9s .9s forwards; }
.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--warm-gray); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; animation: bounceY 2s infinite; }

/* STATS */
#stats { background: var(--gold); padding: 28px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat-item { display: flex; flex-direction: column; align-items: center; padding: 12px 24px; }
.stat-number { font-family: var(--font-serif); font-size: 2.4rem; font-weight: 700; color: var(--espresso); line-height: 1; }
.stat-label { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--espresso); opacity: .75; }

/* ABOUT */
#about { padding: var(--section-pad) 0; background: var(--espresso-2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.about-image-wrap { position: relative; }
.about-image-main { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-md); box-shadow: var(--shadow-dark); }
.about-image-accent { position: absolute; width: 55%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius-md); border: 4px solid var(--espresso-2); box-shadow: var(--shadow-dark); bottom: -30px; right: -24px; }
.about-year-badge { position: absolute; top: 24px; left: -24px; width: 110px; height: 110px; background: var(--gold); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: var(--shadow-gold); z-index: 2; }
.about-year-badge .year { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700; color: var(--espresso); line-height: 1; }
.about-year-badge .since { font-size: .62rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--espresso); opacity: .75; }
.about-text p { color: var(--text-light); margin-bottom: 1.2rem; font-size: 1.02rem; }
.about-text p.lead { font-family: var(--font-serif); font-size: 1.25rem; font-style: italic; color: var(--cream-2); line-height: 1.5; }
.about-text .gold-divider { margin: 1.2rem 0 1.8rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 2rem; }
.about-feature { display: flex; align-items: flex-start; gap: 12px; }
.about-feature-icon { width: 40px; height: 40px; background: rgba(201,168,76,.12); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); }
.about-feature-icon svg { width: 20px; height: 20px; }
.about-feature h4 { font-size: .9rem; color: var(--cream); margin-bottom: 2px; font-family: var(--font-sans); font-weight: 600; }
.about-feature p { font-size: .82rem; color: var(--warm-gray); }

/* WHY US */
#why-us { padding: var(--section-pad) 0; background: var(--espresso); position: relative; overflow: hidden; }
#why-us::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(201,168,76,.07) 0%, transparent 70%); pointer-events: none; }
.why-header { text-align: center; margin-bottom: 4rem; }
.why-header .section-subtitle { margin: 0 auto; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { padding: 2.5rem 2rem; background: var(--espresso-2); border: 1px solid rgba(201,168,76,.1); border-radius: var(--radius-md); text-align: center; transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition); position: relative; overflow: hidden; }
.why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0; transition: opacity var(--transition); }
.why-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,.3); box-shadow: 0 20px 50px rgba(0,0,0,.4), var(--shadow-gold); }
.why-card:hover::before { opacity: 1; }
.why-icon { width: 64px; height: 64px; background: rgba(201,168,76,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; color: var(--gold); transition: background var(--transition), transform var(--transition); }
.why-icon svg { width: 30px; height: 30px; }
.why-card:hover .why-icon { background: var(--gold); color: var(--espresso); transform: scale(1.1); }
.why-card h3 { font-size: 1.3rem; color: var(--cream); margin-bottom: .6rem; }
.why-card p { font-size: .92rem; color: var(--warm-gray); line-height: 1.65; }

/* CARTA */
#carta { padding: var(--section-pad) 0; background: linear-gradient(180deg, var(--espresso-2) 0%, var(--espresso) 100%); }
.carta-header { text-align: center; margin-bottom: 3rem; }
.carta-header .section-subtitle { margin: 0 auto; }
.carta-langs { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.carta-card { display: flex; align-items: center; gap: 20px; padding: 28px 36px; background: var(--espresso-2); border: 1px solid rgba(201,168,76,.15); border-radius: var(--radius-md); transition: all var(--transition); min-width: 280px; }
.carta-card:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); transform: translateY(-3px); }
.carta-card-icon { width: 50px; height: 50px; background: rgba(201,168,76,.1); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.carta-card-icon svg { width: 24px; height: 24px; }
.carta-card-text h4 { font-size: 1rem; color: var(--cream); margin-bottom: 2px; font-family: var(--font-sans); font-weight: 600; }
.carta-card-text span { font-size: .8rem; color: var(--warm-gray); }

/* MENU DIA */
#menu-dia { padding: var(--section-pad) 0; background: var(--espresso); }
.menu-dia-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; }
.menu-dia-info .gold-divider { margin: 1rem 0 1.5rem; }
.menu-dia-info p { color: var(--text-light); margin-bottom: 1.2rem; }
.menu-dia-details { display: flex; flex-direction: column; gap: 12px; margin-top: 2rem; }
.menu-detail-row { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: var(--espresso-2); border-radius: var(--radius-sm); border-left: 3px solid var(--gold); }
.menu-detail-row svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.menu-detail-row span { font-size: .9rem; color: var(--text-light); }
.menu-detail-row strong { color: var(--cream); }
.menu-frame-wrap { background: var(--espresso-2); border: 1px solid rgba(201,168,76,.15); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-dark); }
.menu-frame-wrap iframe { width: 100%; height: 520px; border: none; display: block; }

/* GALLERY */
#gallery { padding: var(--section-pad) 0; background: var(--espresso-2); }
.gallery-header { text-align: center; margin-bottom: 3rem; }
.gallery-grid { columns: 4; column-gap: 14px; padding: 0 clamp(16px, 4vw, 48px); }
.gallery-item { break-inside: avoid; margin-bottom: 14px; border-radius: var(--radius-sm); overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; display: block; transition: transform .5s ease; }
.gallery-item-overlay { position: absolute; inset: 0; background: rgba(26,18,8,.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--transition); }
.gallery-item-overlay svg { width: 32px; height: 32px; color: var(--gold); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
#lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity var(--transition); }
#lightbox.open { opacity: 1; pointer-events: all; }
#lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius-sm); }
#lightbox-close { position: absolute; top: 20px; right: 24px; width: 44px; height: 44px; background: rgba(255,255,255,.1); border: none; border-radius: 50%; color: var(--cream); font-size: 1.4rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
#lightbox-close:hover { background: rgba(255,255,255,.2); }

/* TESTIMONIALS */
#testimonials { padding: var(--section-pad) 0; background: var(--espresso); position: relative; overflow: hidden; }
#testimonials::after { content: '"'; position: absolute; bottom: -40px; right: 5%; font-family: var(--font-serif); font-size: 30rem; color: rgba(201,168,76,.04); line-height: 1; pointer-events: none; user-select: none; }
.testimonials-header { text-align: center; margin-bottom: 3.5rem; }
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track { display: flex; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.testimonial-card { flex: 0 0 100%; padding: 0 clamp(16px, 6vw, 160px); text-align: center; }
.testimonial-stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 1.4rem; color: var(--gold); }
.testimonial-stars svg { width: 18px; height: 18px; fill: currentColor; }
.testimonial-text { font-family: var(--font-serif); font-size: clamp(1.1rem, 2.5vw, 1.45rem); font-style: italic; color: var(--cream); line-height: 1.6; margin-bottom: 2rem; }
.testimonial-author { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.testimonial-author strong { color: var(--gold); font-size: .9rem; font-family: var(--font-sans); font-style: normal; }
.testimonial-author span { color: var(--warm-gray); font-size: .8rem; font-style: normal; }
.testimonials-nav { display: flex; justify-content: center; gap: 10px; margin-top: 2.5rem; }
.testimonials-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--warm-gray); border: none; cursor: pointer; transition: all var(--transition); padding: 0; }
.testimonials-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* CONTACT */
#contact { padding: var(--section-pad) 0; background: var(--espresso-2); }
.contact-header { text-align: center; margin-bottom: 3rem; }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: start; }
.contact-map { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-dark); border: 1px solid rgba(201,168,76,.15); }
.contact-map iframe { width: 100%; height: 400px; border: none; display: block; filter: grayscale(.3) contrast(1.1); }
.contact-info .gold-divider { margin: 1rem 0 2rem; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card { display: flex; align-items: flex-start; gap: 16px; padding: 20px 22px; background: var(--espresso); border-radius: var(--radius-md); border: 1px solid rgba(201,168,76,.1); transition: border-color var(--transition); }
.contact-card:hover { border-color: rgba(201,168,76,.3); }
.contact-card-icon { width: 46px; height: 46px; background: rgba(201,168,76,.1); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.contact-card-icon svg { width: 22px; height: 22px; }
.contact-card h4 { font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 4px; font-family: var(--font-sans); }
.contact-card p { font-size: .95rem; color: var(--cream); line-height: 1.5; }
.contact-card a { color: var(--cream); }
.contact-card a:hover { color: var(--gold); }
.contact-social { margin-top: 2rem; }
.contact-social h4 { font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 1rem; font-family: var(--font-sans); }
.social-row { display: flex; gap: 12px; }
.social-btn { width: 44px; height: 44px; background: var(--espresso); border: 1px solid rgba(201,168,76,.2); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--warm-gray); transition: all var(--transition); }
.social-btn svg { width: 20px; height: 20px; }
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--espresso); transform: translateY(-2px); }

/* FOOTER */
#footer { background: var(--espresso); border-top: 1px solid rgba(201,168,76,.12); padding: 40px 0 24px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-bottom: 28px; }
.footer-logo { font-family: var(--font-serif); font-size: 1.4rem; color: var(--cream); }
.footer-logo span { color: var(--gold); font-style: italic; }
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--warm-gray); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-size: .78rem; color: var(--warm-gray); }
.footer-copy span { color: var(--gold); }

/* BACK TO TOP */
#back-to-top { position: fixed; bottom: 30px; right: 30px; width: 48px; height: 48px; background: var(--gold); color: var(--espresso); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 500; opacity: 0; transform: translateY(20px); transition: all var(--transition); box-shadow: var(--shadow-gold); }
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { background: var(--gold-light); transform: translateY(-3px); }
#back-to-top svg { width: 22px; height: 22px; }

/* ANIMATIONS */
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounceY { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-8px); } }
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { order: -1; }
  .about-image-accent { width: 45%; right: -12px; }
  .about-year-badge { left: 12px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .menu-dia-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 66px; }
  .nav-links { position: fixed; top: var(--nav-h); left: 0; right: 0; background: rgba(26,18,8,.98); backdrop-filter: blur(20px); flex-direction: column; gap: 0; padding: 20px 0 30px; transform: translateY(-110%); transition: transform var(--transition); border-bottom: 1px solid rgba(201,168,76,.15); }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { display: block; padding: 14px 32px; font-size: .85rem; }
  .nav-toggle { display: flex; }
  .stats-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .about-features { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .carta-card { min-width: auto; width: 100%; }
  .carta-langs { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
  .about-image-accent { display: none; }
  .about-year-badge { width: 90px; height: 90px; }
  .about-year-badge .year { font-size: 1.3rem; }
  .stat-number { font-size: 2rem; }
}
