/* ===================================
   Agrupación Coral Ad Libitum
   Propuesta 2 — Minimalista Luminosa
   =================================== */

:root {
  --white: #FFFFFF;
  --bg: #FAFAF8;
  --bg-warm: #F5F3EF;
  --text: #1A1A1A;
  --text-sec: #6B6B6B;
  --text-muted: #999;
  --accent: #5B3E96;
  --accent-light: #EDE7F6;
  --accent-soft: #8B6EC0;
  --border: #E8E6E1;
  --border-light: #F0EDE8;
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* === NAV === */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.1rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(250, 250, 248, .92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
}
.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  text-decoration: none;
  color: var(--text);
}
.logo span { color: var(--accent); }
.nav-links {
  display: flex; gap: 1.8rem;
  list-style: none; align-items: center;
}
.nav-links a {
  color: var(--text-sec); text-decoration: none;
  font-size: .87rem; transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: .5rem 1.4rem;
  border-radius: 100px;
  font-weight: 500 !important;
  font-size: .83rem !important;
  transition: all .2s !important;
}
.nav-cta:hover {
  background: var(--accent-soft) !important;
  transform: translateY(-1px);
}

/* Hamburger menu */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px;
  padding: .5rem;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all .3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === HERO === */
.hero {
  min-height: 90vh;
  display: flex; align-items: center;
  padding: 7rem 3rem 4rem;
  max-width: 1200px; margin: 0 auto;
}
.hero-left { flex: 1.2; }
.hero-right { flex: 1; padding-left: 3.5rem; }
.pill {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--accent-light); color: var(--accent);
  padding: .4rem 1rem; border-radius: 100px;
  font-size: .8rem; font-weight: 500; margin-bottom: 2rem;
}
.pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1.15; margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero > div p {
  color: var(--text-sec); font-size: 1.05rem;
  max-width: 460px; margin-bottom: 2rem;
}
.hero-acts { display: flex; gap: 1rem; align-items: center; }
.hero-img {
  aspect-ratio: 3/4; border-radius: 1.5rem;
  overflow: hidden; background: var(--bg-warm) center/cover no-repeat;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* === BUTTONS === */
.btn-p {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--accent); color: var(--white);
  padding: .8rem 1.8rem; border-radius: 100px;
  text-decoration: none; font-weight: 500; font-size: .9rem;
  transition: all .2s; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.btn-p:hover {
  background: var(--accent-soft);
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(91, 62, 150, .2);
}
.btn-s {
  color: var(--text-sec); text-decoration: none;
  font-size: .9rem; font-weight: 500; transition: color .2s;
}
.btn-s:hover { color: var(--accent); }

/* === SECTIONS === */
section {
  padding: 5rem 3rem;
  max-width: 1200px; margin: 0 auto;
}
.section-full {
  max-width: 100%; padding: 5rem 3rem;
}
.tag {
  font-size: .8rem; font-weight: 500;
  color: var(--accent); margin-bottom: .5rem;
}
.sh h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: .5rem;
}
.sh p { color: var(--text-sec); max-width: 500px; }
.sh { margin-bottom: 2.5rem; }

.white-card {
  background: var(--white); border-radius: 1.5rem;
  padding: 2.5rem; box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
  margin: 0 3rem;
}
.warm-card {
  background: var(--bg-warm); border-radius: 1.5rem;
  padding: 2.5rem; margin: 0 3rem;
}
.center-btn { text-align: center; margin-top: 2rem; }

/* === ABOUT === */
.about-text {
  color: var(--text-sec); font-size: 1rem;
  max-width: 700px; margin-bottom: 2rem;
}

/* === DIRECTOR CARDS === */
.dir-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 2rem;
}
.dir-card {
  background: var(--white); border-radius: 1rem;
  padding: 2rem; border: 1px solid var(--border-light);
  text-align: center; transition: all .3s;
}
.dir-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.dir-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  margin: 0 auto 1rem; background: var(--accent-light);
  overflow: hidden; border: 2px solid var(--white);
}
.dir-avatar img { width: 100%; height: 100%; object-fit: cover; }
.dir-card h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: .2rem; }
.dir-card .role { color: var(--accent); font-size: .8rem; font-weight: 500; margin-bottom: 1rem; }
.dir-card .bio {
  color: var(--text-sec); font-size: .85rem;
  text-align: left; line-height: 1.6;
}
.dir-card ul {
  list-style: none; text-align: left;
  font-size: .85rem; color: var(--text-sec);
}
.dir-card ul li { padding: .4rem 0; border-bottom: 1px solid var(--border-light); }
.dir-card ul li:last-child { border-bottom: none; }
.dir-link {
  display: inline-block; margin-top: 1.5rem;
  color: var(--accent); text-decoration: none;
  font-weight: 500; font-size: .9rem; transition: all .2s;
}
.dir-link:hover { transform: translateX(4px); }

/* === AD LIBITUM NIÑOS === */
.ninos-section {
  background: var(--accent-light);
  border-radius: 1.5rem;
  padding: 3rem;
  margin: 0 3rem;
  display: flex; gap: 2.5rem; align-items: center;
}
.ninos-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--accent); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; flex-shrink: 0;
}
.ninos-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem; margin-bottom: .5rem;
}
.ninos-content p {
  color: var(--text-sec); font-size: .95rem; max-width: 600px;
}

/* === GALLERY === */
.gal-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; margin-bottom: 2rem;
}
.gal-item {
  position: relative; overflow: hidden;
  border-radius: 1rem; aspect-ratio: 4/3; cursor: pointer;
}
.gal-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.gal-item:hover img { transform: scale(1.05); }
.gal-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.2rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, .7));
  color: white; font-weight: 500; font-size: .9rem;
  opacity: 0; transition: opacity .3s;
}
.gal-item:hover .gal-cap { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none; position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, .9); z-index: 1000;
  align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90%; max-height: 90vh;
  border-radius: .5rem; object-fit: contain;
}
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: white;
  font-size: 2rem; cursor: pointer; z-index: 1001;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255, 255, 255, .15); border: none;
  color: white; font-size: 1.5rem; cursor: pointer;
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lightbox-nav:hover { background: rgba(255, 255, 255, .3); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* === VIDEOS === */
.vid-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.vid-card {
  position: relative; aspect-ratio: 16/9;
  border-radius: 1rem; overflow: hidden;
  background: #111; cursor: pointer;
}
.vid-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.vid-card:hover img { transform: scale(1.03); }
.vid-card.featured {
  grid-column: span 2;
}
.play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s;
}
.play::after {
  content: ''; width: 0; height: 0;
  border-style: solid; border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent white;
  margin-left: 3px;
}
.vid-card:hover .play { transform: translate(-50%, -50%) scale(1.1); }
.vid-label {
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
  color: white;
}
.vid-label h3 { font-family: 'DM Serif Display', serif; font-size: 1.1rem; }
.vid-label p { font-size: .8rem; opacity: .8; }

/* Video modal */
.vid-modal {
  display: none; position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, .9); z-index: 1000;
  align-items: center; justify-content: center;
  padding: 2rem;
}
.vid-modal.active { display: flex; }
.vid-modal-content {
  width: 100%; max-width: 900px; aspect-ratio: 16/9;
  border-radius: .5rem; overflow: hidden;
}
.vid-modal-content iframe {
  width: 100%; height: 100%; border: none;
}
.vid-modal-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: white;
  font-size: 2rem; cursor: pointer; z-index: 1001;
}

/* Home video thumbs */
.vid-thumbs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 1.5rem; max-width: 700px;
}
.vid-thumb {
  position: relative; aspect-ratio: 16/9;
  border-radius: 1rem; overflow: hidden;
  background: #111; cursor: pointer;
}
.vid-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.vid-thumb:hover img { transform: scale(1.03); }
.vid-thumb .play { width: 45px; height: 45px; }
.vid-thumb .vid-label h3 { font-size: 1rem; }

/* === REPERTORIO === */
.rep-cols {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.rep-col {
  background: var(--white); border-radius: 1rem;
  padding: 1.5rem; border: 1px solid var(--border-light);
  transition: all .2s;
}
.rep-col:hover { border-color: var(--accent); }
.rep-col h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem; color: var(--accent);
  margin-bottom: 1rem;
}
.rep-obra { padding: .6rem 0; border-bottom: 1px solid var(--border-light); }
.rep-obra:last-of-type { border-bottom: none; }
.rep-obra h4 { font-size: .9rem; font-weight: 500; }
.rep-obra p { color: var(--text-muted); font-size: .8rem; }
.rep-col .more {
  display: block; margin-top: .8rem;
  color: var(--accent); font-size: .8rem;
  text-decoration: none; font-weight: 500;
}

/* Repertoire page filters */
.filters {
  display: flex; gap: .5rem; flex-wrap: wrap;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: .5rem 1.2rem; border-radius: 100px;
  border: 1px solid var(--border); background: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem; color: var(--text-sec);
  cursor: pointer; transition: all .2s;
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.active {
  background: var(--accent); color: var(--white);
  border-color: var(--accent);
}

/* Repertoire cards grid */
.rep-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.rep-card {
  background: var(--white); border-radius: 1rem;
  padding: 1.5rem; border: 1px solid var(--border-light);
  transition: all .2s;
}
.rep-card:hover { border-color: var(--accent); transform: translateY(-1px); }
.rep-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem; margin-bottom: .3rem;
}
.rep-card .composer { color: var(--accent); font-size: .85rem; font-weight: 500; margin-bottom: .5rem; }
.rep-card .meta { display: flex; gap: .8rem; flex-wrap: wrap; }
.rep-card .meta span {
  font-size: .75rem; color: var(--text-muted);
  background: var(--bg-warm); padding: .2rem .6rem;
  border-radius: 100px;
}
.rep-card .video-link {
  display: inline-flex; align-items: center; gap: .3rem;
  color: var(--accent); font-size: .8rem; font-weight: 500;
  margin-top: .8rem; transition: all .2s;
}
.rep-card .video-link:hover { transform: translateX(3px); }

/* === EVENTOS === */
.ev-card {
  display: flex; align-items: center; gap: 1.8rem;
  padding: 1.3rem 0; border-bottom: 1px solid var(--border-light);
  transition: all .2s;
}
.ev-card:last-child { border-bottom: none; }
.ev-card:hover { padding-left: .5rem; }
.ev-dt { min-width: 60px; text-align: center; }
.ev-dt .day {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem; color: var(--accent); line-height: 1;
}
.ev-dt .mon {
  font-size: .7rem; color: var(--text-muted);
  text-transform: uppercase; font-weight: 500;
  letter-spacing: .05em;
}
.ev-det h3 { font-size: 1.05rem; font-weight: 500; margin-bottom: .15rem; }
.ev-det p { color: var(--text-muted); font-size: .83rem; }
.ev-tag {
  margin-left: auto; padding: .3rem .9rem;
  border-radius: 100px; font-size: .72rem;
  font-weight: 500; background: var(--accent-light);
  color: var(--accent);
}
.ev-empty {
  text-align: center; padding: 3rem;
  color: var(--text-muted); font-size: .95rem;
}

/* === AUDICIONES === */
.aud-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2.5rem; margin-top: 1.5rem;
}
.aud-grid h4 {
  font-size: .85rem; font-weight: 600; color: var(--accent);
  text-transform: uppercase; letter-spacing: .05em;
  margin-bottom: .8rem;
}
.aud-grid ul {
  list-style: none; color: var(--text-sec); font-size: .9rem;
}
.aud-grid ul li {
  padding: .4rem 0; padding-left: 1.2rem; position: relative;
}
.aud-grid ul li::before {
  content: '\f00c'; font-family: 'Font Awesome 6 Free';
  font-weight: 900; position: absolute; left: 0;
  color: var(--accent); font-size: .75rem;
}
.aud-grid ol { color: var(--text-sec); font-size: .9rem; padding-left: 1.2rem; }
.aud-grid ol li { padding: .4rem 0; }

/* === CONTACTO === */
.ct-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
}
.ct-info h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem; color: var(--accent);
  margin-bottom: 1.2rem;
}
.ci {
  display: flex; align-items: center; gap: .7rem;
  color: var(--text-sec); font-size: .9rem;
  padding: .6rem 0; border-bottom: 1px solid var(--border-light);
}
.ci-i { min-width: 20px; color: var(--accent); font-size: .85rem; }
.ct-form label {
  display: block; font-size: .8rem; font-weight: 500;
  color: var(--text-sec); margin-bottom: .4rem; margin-top: 1.2rem;
}
.ct-form label:first-child { margin-top: 0; }
.ct-form input,
.ct-form textarea,
.ct-form select {
  width: 100%; padding: .7rem 1rem;
  border: 1px solid var(--border); border-radius: .5rem;
  font-family: 'DM Sans', sans-serif; font-size: .9rem;
  background: var(--white); transition: border-color .2s;
  color: var(--text);
}
.ct-form input:focus,
.ct-form textarea:focus,
.ct-form select:focus {
  outline: none; border-color: var(--accent);
}
.ct-form textarea { height: 110px; resize: vertical; }
.ct-form select { appearance: none; cursor: pointer; }
.ct-form .btn-p { margin-top: 1.2rem; width: 100%; justify-content: center; }

/* === MEMBERS PAGE === */
.hero-section {
  padding: 7rem 3rem 3rem; background: var(--bg-warm);
}
.hero-section .back {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--text-sec); text-decoration: none; font-size: .87rem;
  margin-bottom: 1.5rem; transition: color .2s;
}
.hero-section .back:hover { color: var(--accent); }
.hero-section .tag { font-size: .8rem; font-weight: 500; color: var(--accent); margin-bottom: .5rem; }
.hero-section h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .8rem;
}
.hero-section p.sub { color: var(--text-sec); font-size: 1.05rem; max-width: 500px; }

.content { max-width: 1200px; margin: 0 auto; padding: 3rem; }
.section-title { margin-bottom: 2rem; }
.section-title .tag { font-size: .8rem; font-weight: 500; color: var(--accent); margin-bottom: .5rem; }
.section-title h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.cuerda { margin-bottom: 3rem; }
.cuerda h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem; margin-bottom: 1.2rem; color: var(--accent);
}
.members-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.member-card {
  background: var(--white); border-radius: 1rem;
  padding: 1.5rem; border: 1px solid var(--border-light);
  display: flex; align-items: center; gap: 1rem; transition: all .2s;
}
.member-card:hover { border-color: var(--accent); transform: translateY(-1px); }
.member-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1rem; color: var(--accent); font-weight: 700;
  flex-shrink: 0;
}
.member-info h4 { font-size: .95rem; font-weight: 600; margin-bottom: .1rem; }
.member-info p { color: var(--text-muted); font-size: .8rem; }

/* === EXPANDABLE / LEER MÁS === */
.expandable {
  overflow: hidden;
  transition: max-height .5s ease, opacity .4s ease;
}
.expandable.collapsed {
  max-height: 0;
  opacity: 0;
}
.expandable.expanded {
  opacity: 1;
}
.expand-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: none;
  border: none;
  color: var(--accent);
  font-family: var(--body);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  padding: .5rem 0;
  margin-top: .5rem;
  transition: color .2s;
}
.expand-btn:hover { color: var(--accent-dark, #4a2d80); }
.expand-btn i {
  transition: transform .3s ease;
  font-size: .75rem;
}
.expand-btn[aria-expanded="true"] i {
  transform: rotate(180deg);
}
.expand-btn-sm {
  font-size: .85rem;
  margin-top: .25rem;
}

/* === FOOTER === */
footer {
  max-width: 1200px; margin: 0 auto;
  padding: 4rem 3rem 1rem;
  display: flex; justify-content: space-between; align-items: start;
  border-top: 1px solid var(--border);
}
.fl p { color: var(--text-muted); font-size: .83rem; margin-top: .3rem; }
.fr { display: flex; gap: 3rem; }
.fc h4 {
  font-size: .72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--text-muted); margin-bottom: .8rem;
}
.fc ul { list-style: none; }
.fc li { margin-bottom: .5rem; }
.fc a {
  color: var(--text-sec); text-decoration: none;
  font-size: .83rem; transition: color .2s;
}
.fc a:hover { color: var(--accent); }
.fb {
  max-width: 1200px; margin: 0 auto;
  padding: 1.5rem 3rem; text-align: center;
  color: var(--text-muted); font-size: .72rem;
}

/* Donations box in footer */
.donate-box {
  margin-top: 1rem; padding: 1rem;
  background: var(--accent-light); border-radius: .75rem;
  font-size: .8rem;
}
.donate-box strong { color: var(--accent); }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  nav { padding: .9rem 1.5rem; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(250, 250, 248, .98);
    backdrop-filter: blur(20px);
    padding: 1.5rem; gap: 1rem;
    border-bottom: 1px solid var(--border-light);
  }
  .nav-links.active { display: flex; }
  .nav-toggle { display: flex; }

  .hero {
    flex-direction: column; padding-top: 6rem;
    min-height: auto; padding: 6rem 1.5rem 3rem;
  }
  .hero-right { padding: 2rem 0 0 0; }
  section { padding: 3rem 1.5rem; }
  .white-card, .warm-card { margin: 0 1rem; padding: 2rem 1.5rem; }
  .dir-grid { grid-template-columns: 1fr; }
  .rep-cols, .rep-grid { grid-template-columns: 1fr; }
  .aud-grid, .ct-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr 1fr; }
  .vid-grid { grid-template-columns: 1fr; }
  .vid-card.featured { grid-column: span 1; }
  .vid-thumbs { grid-template-columns: 1fr; }
  .members-grid { grid-template-columns: 1fr; }
  .ev-tag { display: none; }
  .ninos-section { flex-direction: column; text-align: center; margin: 0 1rem; padding: 2rem 1.5rem; }
  footer { flex-direction: column; gap: 2rem; padding: 3rem 1.5rem 1rem; }
  .fr { flex-direction: column; gap: 1.5rem; }
  .hero-section { padding: 6rem 1.5rem 2rem; }
  .content { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  .gal-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
}
