/* ============================================================
   Styled to Celebrate — Shared Stylesheet
   ============================================================ */

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

/* ---- Variables ---- */
:root {
  --pearl:            #FDF1F2;
  --white:            #FFFFFF;
  --champagne:        #F5D4DE;
  --champagne-light:  #FEF6F8;
  --gold:             #C8557A;
  --gold-light:       #DA8FA8;
  --gold-dark:        #A33D60;
  --accent-gold:      #C9A43A;
  --text-dark:        #1A1A1A;
  --text-medium:      #4A3040;
  --text-light:       #8A6870;
  --border-light:     #EDD4DC;
  --border-gold:      rgba(200,85,122,0.22);

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-body:   'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Montserrat', sans-serif;

  --max-width:   1200px;
  --nav-height:  82px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--pearl);
  color: var(--text-dark);
  line-height: 1.8;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.85rem); }
h4 { font-size: 1.2rem; }

p {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-medium);
}

/* ---- Utility ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

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

.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.gold-rule {
  width: 52px;
  height: 1px;
  background: var(--accent-gold);
  margin: 20px auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 15px 38px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold-dark); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.65);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  backdrop-filter: blur(8px);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.07); }

.nav-inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.03em;
}
.nav-logo span { color: var(--gold); }
.nav-logo img {
  height: 64px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 42px;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-medium);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-dark);
  transition: all 0.3s;
}

/* Mobile drawer */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  z-index: 999;
  padding: 32px 48px;
  flex-direction: column;
  gap: 26px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-medium);
  transition: color 0.2s;
}
.nav-mobile a:hover,
.nav-mobile a.active { color: var(--gold); }

/* ============================================================
   Hero — Home
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center 60%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,15,10,0.42) 0%,
    rgba(20,15,10,0.30) 50%,
    rgba(20,15,10,0.58) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 820px;
}

.hero-location {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  display: block;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-rule {
  width: 48px;
  height: 1px;
  background: rgba(201,164,58,0.7);
  margin: 0 auto 28px;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  margin-bottom: 44px;
  letter-spacing: 0.01em;
}

/* Scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.35);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(1); }
  50%       { opacity: 0.8;  transform: scaleY(1.15); }
}

/* ============================================================
   Page Hero — Inner pages
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-height) + 70px) 48px 80px;
  text-align: center;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}
.page-hero h1 { margin-bottom: 18px; }
.page-hero .subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-style: italic;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   Sections
   ============================================================ */

/* ---- Intro ---- */
.intro-section {
  padding: 110px 48px;
  text-align: center;
}
.intro-section .container { max-width: 680px; }
.intro-section h2 { margin-bottom: 22px; }
.intro-section p  { line-height: 1.9; }

/* ---- Services Preview ---- */
.services-preview {
  background: var(--white);
  padding: 110px 48px;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { margin-bottom: 8px; }

.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card-preview {
  padding: 52px 36px;
  text-align: center;
  border: 1px solid var(--border-light);
  background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.service-card-preview:hover {
  border-color: var(--border-gold);
  box-shadow: 0 6px 32px rgba(200,85,122,0.08);
}

.service-line {
  width: 42px;
  height: 1px;
  background: var(--accent-gold);
  margin: 0 auto 32px;
}

.service-card-preview h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}
.service-card-preview p {
  font-size: 0.98rem;
  line-height: 1.75;
}

/* ---- Experience ---- */
.experience-section { padding: 110px 48px; }

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.experience-image {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.experience-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.experience-image:hover img { transform: scale(1.04); }

.experience-text h2  { margin-bottom: 20px; }
.experience-text p   { margin-bottom: 18px; }

.gold-rule-left {
  width: 52px;
  height: 1px;
  background: var(--accent-gold);
  margin: 20px 0 28px;
}

.feature-list { list-style: none; margin: 28px 0 38px; }
.feature-list li {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--text-medium);
  padding: 13px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 14px;
}
.feature-list li::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--accent-gold);
  flex-shrink: 0;
}

/* ---- Quote ---- */
.quote-section {
  background: var(--champagne-light);
  padding: 110px 48px;
  text-align: center;
}
.quote-inner { max-width: 680px; margin: 0 auto; }

.quote-mark {
  display: block;
  font-family: var(--font-serif);
  font-size: 6rem;
  color: var(--gold);
  line-height: 0.4;
  margin-bottom: 36px;
  opacity: 0.6;
}

.quote-text {
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 32px;
}

.quote-author {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---- CTA Band ---- */
.cta-section {
  background: var(--text-dark);
  padding: 90px 48px;
  text-align: center;
}
.cta-section h2  { color: var(--white); margin-bottom: 16px; }
.cta-section p   { color: rgba(255,255,255,0.62); margin-bottom: 38px; }
.cta-eyebrow     { color: var(--gold-light); }

/* ============================================================
   Services Page
   ============================================================ */
.packages-section { padding: 90px 48px; }

.packages-intro {
  max-width: 640px;
  margin: 0 auto 70px;
  text-align: center;
}
.packages-intro p { margin-top: 16px; }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.package-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 52px 38px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.package-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 10px 48px rgba(200,85,122,0.1);
}
.package-card.featured { border-color: var(--gold); }

.featured-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 20px;
  white-space: nowrap;
}

.package-name {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 6px;
}
.package-tagline {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 28px;
}
.package-divider {
  width: 38px;
  height: 1px;
  background: var(--accent-gold);
  margin-bottom: 28px;
}

.package-features {
  list-style: none;
  width: 100%;
  margin-bottom: 38px;
  text-align: left;
  flex: 1;
}
.package-features li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-medium);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}
.package-features li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Included note */
.packages-note {
  text-align: center;
  margin-top: 60px;
  padding: 32px 40px;
  background: var(--champagne-light);
  border: 1px solid var(--border-light);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.packages-note p {
  font-style: italic;
  font-size: 1.05rem;
}
.packages-note strong {
  color: var(--text-dark);
  font-style: normal;
}

/* ============================================================
   Gallery Page
   ============================================================ */
.gallery-intro {
  max-width: 560px;
  margin: 0 auto 60px;
  text-align: center;
}

.gallery-section { padding: 80px 48px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  background: var(--champagne);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,15,10,0);
  transition: background 0.4s ease;
}
.gallery-item:hover .gallery-overlay {
  background: rgba(20,15,10,0.22);
}

/* ============================================================
   About Page
   ============================================================ */
.about-intro-section { padding: 90px 48px; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.about-image {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-text h2  { margin-bottom: 20px; }
.about-text p   { margin-bottom: 20px; line-height: 1.9; }

/* Values */
.values-section {
  background: var(--white);
  padding: 90px 48px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 64px;
}

.value-card { text-align: center; padding: 20px; }

.value-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--champagne);
  line-height: 1;
  margin-bottom: 22px;
}
.value-card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.value-card p  { font-size: 0.97rem; }

/* Events served */
.events-section { padding: 90px 48px; text-align: center; }

.events-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.event-type {
  padding: 30px 16px;
  border: 1px solid var(--border-light);
  background: var(--white);
}
.event-type h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.event-type p {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--text-light);
}

/* ============================================================
   Contact Page
   ============================================================ */
.contact-section { padding: 90px 48px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 90px;
  align-items: start;
}

.contact-info h2  { margin-bottom: 20px; }
.contact-info > p { margin-bottom: 36px; line-height: 1.9; }

.contact-detail       { margin-bottom: 28px; }
.contact-detail-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}
.contact-detail-value {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-dark);
}

.contact-form {
  background: var(--white);
  padding: 52px;
  border: 1px solid var(--border-light);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.form-subtitle {
  font-style: italic;
  color: var(--text-light);
  font-size: 0.98rem;
  margin-bottom: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--pearl);
  border: 1px solid var(--border-light);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  transition: border-color 0.25s;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C8557A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 42px;
}

.form-group textarea { height: 150px; resize: vertical; }

.form-submit { width: 100%; margin-top: 8px; }

.form-success {
  display: none;
  text-align: center;
  padding: 48px 20px;
}
.form-success h3 {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 14px;
}
.form-success p {
  font-style: italic;
  font-size: 1.05rem;
}

.contact-form.contact-form-embed {
  padding: 0;
  min-height: 1709px;
  overflow: hidden;
}
.contact-form-embed iframe { display: block; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.6);
  padding: 80px 48px 36px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 70px;
  padding-bottom: 60px;
}

.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand h3 span { color: var(--gold); }
.footer-logo {
  height: 110px;
  width: 110px;
  border-radius: 50%;
  margin-bottom: 20px;
  display: block;
}
.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.97rem;
  max-width: 280px;
  line-height: 1.75;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.footer-links a {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 28px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.28);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .nav-inner { padding: 0 32px; }
  .page-hero { padding: calc(var(--nav-height) + 56px) 32px 64px; }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .events-grid { grid-template-columns: repeat(3, 1fr); }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 70px; }

  .container   { padding: 0 24px; }
  .nav-inner   { padding: 0 24px; }
  .nav-mobile  { padding: 28px 24px; }
  .page-hero   { padding: calc(var(--nav-height) + 48px) 24px 56px; }

  .nav-links    { display: none; }
  .nav-hamburger { display: flex; }

  .intro-section,
  .experience-section,
  .quote-section,
  .cta-section,
  .packages-section,
  .gallery-section,
  .about-intro-section,
  .values-section,
  .events-section,
  .contact-section { padding: 64px 24px; }

  .services-preview { padding: 64px 24px; }
  .services-preview-grid { grid-template-columns: 1fr; gap: 16px; }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .experience-image { aspect-ratio: 4/3; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-image { aspect-ratio: 4/3; }

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

  .events-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-form { padding: 32px 24px; }
  .form-row     { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .events-grid  { grid-template-columns: 1fr 1fr; }
  .hero-title   { font-size: 2.4rem; }
}
