/*
Theme Name: Rosy D's Cleaning Services
Theme URI: https://rosydscleaning.com
Author: ConnectWeb SD
Author URI: https://connectwebsd.com
Description: Premium cleaning service theme for Rosy D's Cleaning Services — Vista, CA. Mobile-first, bilingual (ES/EN), elegant blush-pink design.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rosyds
Tags: one-column, custom-logo, custom-menu, featured-images, translation-ready
*/

/* ========== RESET & BASE ========== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg: hsl(30, 33%, 98%);
  --fg: hsl(220, 20%, 14%);
  --card: hsl(0, 0%, 100%);
  --primary: hsl(345, 55%, 70%);
  --primary-fg: hsl(0, 0%, 100%);
  --primary-light: hsl(345, 60%, 90%);
  --primary-lighter: hsl(345, 50%, 95%);
  --secondary: hsl(345, 30%, 96%);
  --muted: hsl(220, 10%, 46%);
  --border: hsl(345, 30%, 90%);
  --radius: 1rem;
  --shadow-soft: 0 4px 20px -4px hsla(345, 30%, 70%, 0.12);
  --shadow-card: 0 2px 12px -2px hsla(345, 30%, 70%, 0.1);
  --shadow-elevated: 0 8px 30px -6px hsla(345, 30%, 70%, 0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border: 0 solid var(--border); }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; }

/* ========== LAYOUT ========== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

/* ========== UTILITIES ========== */
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.leading-relaxed { line-height: 1.75; }
.leading-tight { line-height: 1.25; }
.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.05em; }

.pink-highlight { color: var(--primary); }
.text-fg { color: var(--fg); }
.text-muted { color: var(--muted); }
.text-primary { color: var(--primary); }
.text-white { color: #fff; }
.bg-secondary { background: var(--secondary); }
.bg-primary { background: var(--primary); }

.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 70rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-md { max-width: 28rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 0.25rem; }
.gap-1-5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-2-5 { gap: 0.625rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-10 { gap: 2.5rem; }
.shrink-0 { flex-shrink: 0; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-14 { margin-top: 3.5rem; }
.ml-1 { margin-left: 0.25rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-28 { padding-top: 7rem; padding-bottom: 7rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.pt-4 { padding-top: 1rem; }
.pt-20 { padding-top: 5rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-8 { padding-bottom: 2rem; }

.w-full { width: 100%; }
.h-16 { height: 4rem; }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.rounded-full { border-radius: 9999px; }
.rounded-2xl { border-radius: 1.25rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.border { border-width: 1px; border-style: solid; border-color: var(--border); }
.border-t { border-top-width: 1px; border-top-style: solid; border-top-color: var(--border); }
.block { display: block; }
.hidden { display: none; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }

/* ========== COMPONENTS ========== */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--primary-lighter);
  color: var(--primary);
}

.section-heading { font-size: 1.5rem; color: var(--fg); }
.section-heading .pink-highlight { color: var(--primary); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  background: var(--primary);
  color: var(--primary-fg);
  box-shadow: var(--shadow-soft);
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { filter: brightness(1.05); box-shadow: var(--shadow-elevated); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  border: 1px solid var(--primary);
  color: var(--primary);
  background: #fff;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-outline:hover { background: var(--primary-lighter); }

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow-soft);
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-white:hover { box-shadow: var(--shadow-elevated); }

.glass-card {
  border-radius: 1rem;
  padding: 1.25rem;
  background: hsla(0, 0%, 100%, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid hsla(345, 60%, 90%, 0.5);
  box-shadow: var(--shadow-card);
}

.service-card {
  border-radius: 1rem;
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: all 0.2s;
}
.service-card:hover { box-shadow: var(--shadow-elevated); border-color: var(--primary-light); }

.icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--primary-lighter);
  color: var(--primary);
}

.icon-box-lg {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--primary-lighter);
  color: var(--primary);
}

/* ========== SVG ICONS ========== */
.icon { width: 1.25rem; height: 1.25rem; display: inline-block; vertical-align: middle; }
.icon-sm { width: 0.875rem; height: 0.875rem; }
.icon-lg { width: 1.5rem; height: 1.5rem; }
.icon-xl { width: 1.75rem; height: 1.75rem; }

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: hsla(0, 0%, 100%, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.site-header .logo { font-weight: 700; font-size: 1.125rem; letter-spacing: -0.02em; }
.site-header .logo .pink-highlight { margin-left: 0.25rem; }

.header-serving { display: none; font-size: 0.875rem; color: var(--muted); align-items: center; gap: 0.25rem; }
.header-serving svg { color: var(--primary); }

.header-mobile-controls { display: flex; align-items: center; gap: 0.5rem; }
.header-mobile-controls .serving-mobile { font-size: 0.75rem; color: var(--muted); display: flex; align-items: center; gap: 0.25rem; }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem 0.625rem;
  border-radius: 9999px;
  background: var(--secondary);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fg);
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}
.lang-toggle:hover { background: var(--primary-lighter); }

.menu-toggle {
  padding: 0.5rem;
  border-radius: 0.75rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-toggle:hover { background: var(--secondary); }

.desktop-nav { display: none; align-items: center; gap: 1.5rem; }
.desktop-nav a { font-size: 0.875rem; font-weight: 500; color: var(--fg); transition: color 0.2s; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--primary); }

.mobile-menu { background: var(--card); border-top: 1px solid var(--border); }
.mobile-menu nav { padding: 1.5rem 1.25rem; display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu a { padding: 0.75rem 1rem; border-radius: 0.75rem; font-size: 1rem; font-weight: 500; color: var(--fg); transition: background 0.2s; display: block; }
.mobile-menu a:hover { background: var(--secondary); }
.mobile-menu a.active { background: var(--primary-lighter); color: var(--primary); }
.mobile-menu-cta { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }

/* ========== HERO ========== */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-section .hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-section .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, hsla(220, 20%, 14%, 0.8), hsla(220, 20%, 14%, 0.4), hsla(220, 20%, 14%, 0.1));
}
.hero-section .hero-content { position: relative; padding-bottom: 2rem; padding-top: 5rem; }
.hero-section h1 { font-size: 1.875rem; color: #fff; line-height: 1.25; margin-bottom: 1rem; }
.hero-section .hero-sub { color: rgba(255,255,255,0.8); font-size: 1rem; line-height: 1.75; margin-bottom: 1.5rem; }

.hero-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; max-width: 28rem; }
.hero-features .glass-card { display: flex; align-items: center; gap: 0.75rem; padding: 1rem; }
.hero-features .glass-card span { font-size: 0.875rem; font-weight: 600; color: var(--fg); }

/* ========== SECTIONS ========== */
.section { padding: 4rem 0; }
.section-lg { padding: 4rem 0; }

/* Cards grid */
.cards-grid-2 { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.cards-grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }

/* Gallery carousel */
.gallery-carousel { position: relative; max-width: 32rem; margin: 0 auto; }
.gallery-carousel .carousel-img { border-radius: 1.5rem; overflow: hidden; aspect-ratio: 1/1; }
.gallery-carousel .carousel-img img { width: 100%; height: 100%; object-fit: cover; }
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: hsla(0, 0%, 100%, 0.8);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  cursor: pointer;
  border: none;
  color: var(--fg);
  transition: background 0.2s;
}
.carousel-btn:hover { background: var(--card); }
.carousel-btn-prev { left: 0.75rem; }
.carousel-btn-next { right: 0.75rem; }
.carousel-counter {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: hsla(0, 0%, 100%, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fg);
}
.carousel-dots { display: flex; justify-content: center; gap: 0.375rem; margin-top: 1.25rem; }
.carousel-dot {
  width: 0.5rem; height: 0.5rem; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer; padding: 0;
  transition: background 0.2s;
}
.carousel-dot.active { background: var(--primary); }

/* FAQ Accordion */
.faq-item { overflow: hidden; }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq-question svg { transition: transform 0.2s; flex-shrink: 0; margin-left: 0.5rem; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1rem; }

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.cta-section .cta-circle-1 {
  position: absolute; top: -5rem; right: -5rem;
  width: 24rem; height: 24rem; border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.cta-section .cta-circle-2 {
  position: absolute; bottom: -5rem; left: -5rem;
  width: 20rem; height: 20rem; border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cta-icon-circle {
  width: 4rem; height: 4rem; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}

/* ========== FOOTER ========== */
.site-footer { background: var(--fg); color: #fff; }
.site-footer .footer-inner { padding: 3rem 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.site-footer .footer-logo { font-weight: 700; font-size: 1.125rem; margin-bottom: 0.75rem; }
.site-footer .footer-desc { font-size: 0.875rem; line-height: 1.75; opacity: 0.7; }
.site-footer h4 { font-weight: 600; font-size: 0.875rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.6; }
.site-footer nav a { display: block; font-size: 0.875rem; opacity: 0.7; margin-bottom: 0.625rem; transition: opacity 0.2s; }
.site-footer nav a:hover { opacity: 1; }
.footer-cta-card { border-radius: 1rem; padding: 1.5rem; background: rgba(255,255,255,0.08); }
.footer-cta-card h4 { font-weight: 700; font-size: 1rem; opacity: 1; text-transform: none; letter-spacing: normal; margin-bottom: 0.5rem; }
.footer-cta-card p { font-size: 0.875rem; opacity: 0.7; margin-bottom: 1rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  opacity: 0.5;
}

/* ========== FORM ========== */
.form-field { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--fg); margin-bottom: 0.375rem; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--bg);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  color: var(--fg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsla(345, 55%, 70%, 0.15);
}
.form-textarea { resize: none; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }

/* ========== GALLERY PAGE ========== */
.gallery-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 2rem; }
.gallery-filter-btn {
  padding: 0.5rem 1rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 500;
  background: var(--secondary); color: var(--fg); border: none; cursor: pointer; transition: all 0.2s;
}
.gallery-filter-btn:hover { background: var(--primary-lighter); }
.gallery-filter-btn.active { background: var(--primary); color: #fff; }
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; max-width: 70rem; margin: 0 auto; }
.gallery-item { border-radius: 1rem; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-card); transition: box-shadow 0.2s; }
.gallery-item:hover { box-shadow: var(--shadow-elevated); }
.gallery-item img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.gallery-item .gallery-label { padding: 0.75rem; }
.gallery-item .gallery-label p:first-child { font-size: 0.875rem; font-weight: 500; color: var(--fg); }
.gallery-item .gallery-label p:last-child { font-size: 0.75rem; color: var(--muted); }

/* ========== CHECK LIST ========== */
.check-list { list-style: none; padding: 0; }
.check-item { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; margin-bottom: 0.75rem; }
.check-icon { width: 1rem; height: 1rem; flex-shrink: 0; margin-top: 0.125rem; color: var(--primary); }

/* ========== SUCCESS PAGE ========== */
.success-icon { width: 4rem; height: 4rem; border-radius: 50%; background: var(--primary-lighter); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }

/* ========== 404 ========== */
.page-404 { text-align: center; padding: 6rem 1.25rem; }
.page-404 h1 { font-size: 4rem; color: var(--primary); margin-bottom: 1rem; }

/* ========== SEARCH ========== */
.search-form { display: flex; gap: 0.5rem; max-width: 28rem; margin: 0 auto; }
.search-form input { flex: 1; }

/* ========== SCREEN READER ========== */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ========== RESPONSIVE ========== */
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
  .form-row-3 { grid-template-columns: 1fr 1fr 1fr; }
  .cards-grid-2 { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .hero-section { align-items: center; }
  .hero-section .hero-content { padding: 5rem 0; }
  .hero-section h1 { font-size: 2.25rem; }
  .section { padding: 6rem 0; }
  .section-lg { padding: 6rem 0; }
  .section-heading { font-size: 1.875rem; }
  .header-serving { display: flex; }
  .header-mobile-controls { display: none; }
  .desktop-nav { display: flex; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
  .cta-section { padding: 7rem 0; }
  .cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .hero-section h1 { font-size: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
