/* =============================================
   FIESTA BOOM STUDIO — Premium Design System
   ============================================= */

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

:root {
  --black:  #0A0A0A;
  --ivory:  #F7F5F0;
  --gold:   #C6A66A;
  --taupe:  #D8CEC2;
  --smoke:  #8D8A86;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--ivory);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
h1, h2, h3 { font-family: var(--font-serif); font-weight: 400; line-height: 1.1; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}

.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }
.fade-in.delay-4 { transition-delay: 0.4s; }
.fade-in.delay-5 { transition-delay: 0.5s; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 24px 40px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s var(--ease), padding 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(247,245,240,0.97);
  padding: 16px 40px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  backdrop-filter: blur(12px);
}
.nav-logo { font-family: var(--font-serif); font-size: 22px; font-weight: 400; color: var(--ivory); transition: color 0.4s; letter-spacing: 0.02em; }
.nav.scrolled .nav-logo { color: var(--black); }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a { font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(247,245,240,0.8); transition: color 0.3s; }
.nav.scrolled .nav-links a { color: var(--smoke); }
.nav-links a:hover { color: var(--gold); }
.nav-cta { font-size: 11px !important; font-weight: 600 !important; color: var(--black) !important; background: var(--gold); padding: 10px 22px !important; transition: background 0.3s !important; }
.nav-cta:hover { background: #b8955c; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--ivory); transition: background 0.4s, transform 0.3s, opacity 0.3s; }
.nav.scrolled .hamburger span { background: var(--black); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--black); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 40px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-serif); font-size: 36px; font-weight: 300; color: var(--ivory); transition: color 0.3s; }
.mobile-menu a:hover { color: var(--gold); }

/* HERO */
.hero { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: var(--black); }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.62; }
.hero-content { position: relative; z-index: 2; padding: 0 40px 80px; max-width: 820px; }
.hero-eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 20px; }
.hero h1 { font-size: clamp(44px, 7vw, 86px); font-weight: 300; color: var(--ivory); line-height: 1.0; margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--taupe); }
.hero-sub { font-size: 16px; font-weight: 300; color: rgba(247,245,240,0.72); max-width: 520px; line-height: 1.7; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; background: var(--gold); color: var(--black); padding: 16px 36px; transition: background 0.3s, transform 0.2s; }
.btn-primary:hover { background: #b8955c; transform: translateY(-2px); }
.btn-outline { display: inline-block; font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; border: 1px solid rgba(247,245,240,0.45); color: var(--ivory); padding: 16px 36px; transition: border-color 0.3s, background 0.3s; }
.btn-outline:hover { border-color: var(--ivory); background: rgba(247,245,240,0.08); }
.hero-scroll { position: absolute; bottom: 32px; right: 40px; display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2; }
.hero-scroll span { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(247,245,240,0.45); writing-mode: vertical-rl; }
.hero-scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, rgba(247,245,240,0.4), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

/* BRAND STATEMENT */
.brand-statement { padding: 120px 0; background: var(--ivory); }
.brand-statement .container { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.brand-statement h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 300; color: var(--black); margin-bottom: 24px; line-height: 1.2; }
.brand-statement h2 em { font-style: italic; color: var(--smoke); }
.brand-statement p { font-size: 17px; font-weight: 300; color: var(--smoke); line-height: 1.8; max-width: 560px; }

/* FEATURED */
.featured { background: var(--black); padding: 120px 0; }
.featured .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.featured-image { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.featured-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.featured-image:hover img { transform: scale(1.04); }
.featured-image::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 160px; background: linear-gradient(to top, var(--black), transparent); }
.featured-content h2 { font-size: clamp(36px, 4vw, 56px); font-weight: 300; color: var(--ivory); margin-bottom: 24px; line-height: 1.1; }
.featured-content h2 em { font-style: italic; color: var(--taupe); }
.featured-content p { font-size: 16px; font-weight: 300; color: rgba(247,245,240,0.58); line-height: 1.8; margin-bottom: 40px; }
.featured-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 48px; }
.featured-list li { display: flex; align-items: center; gap: 16px; font-size: 14px; color: rgba(247,245,240,0.72); }
.featured-list li::before { content: ''; width: 24px; height: 1px; background: var(--gold); flex-shrink: 0; }

/* OCCASIONS */
.occasions { padding: 120px 0; background: var(--ivory); }
.occasions-header { text-align: center; margin-bottom: 72px; }
.occasions-header h2 { font-size: clamp(36px, 4.5vw, 60px); font-weight: 300; color: var(--black); }
.occasions-header h2 em { font-style: italic; color: var(--smoke); }
.occasions-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; }
.occasion-card { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.occasion-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); filter: brightness(0.55); }
.occasion-card:hover img { transform: scale(1.08); filter: brightness(0.42); }
.occasion-card-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 36px 16px 20px; background: linear-gradient(to top, rgba(10,10,10,0.85), transparent); text-align: center; }
.occasion-card-label h3 { font-family: var(--font-serif); font-size: 20px; font-weight: 300; color: var(--ivory); }
.occasion-card-label span { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }

/* WHY */
.why { padding: 120px 0; background: var(--taupe); }
.why-header { margin-bottom: 72px; }
.why-header h2 { font-size: clamp(36px, 4vw, 56px); font-weight: 300; max-width: 600px; }
.why-header h2 em { font-style: italic; color: var(--smoke); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px 40px; }
.why-item { padding-top: 24px; border-top: 1px solid rgba(10,10,10,0.1); }
.why-number { font-family: var(--font-serif); font-size: 48px; font-weight: 300; color: rgba(10,10,10,0.1); line-height: 1; margin-bottom: 16px; }
.why-item h3 { font-family: var(--font-serif); font-size: 22px; font-weight: 400; margin-bottom: 12px; color: var(--black); }
.why-item p { font-size: 14px; font-weight: 300; color: var(--smoke); line-height: 1.7; }

/* GALLERY */
.gallery { padding: 120px 0; background: var(--black); }
.gallery-header { margin-bottom: 56px; }
.gallery-header h2 { font-size: clamp(36px, 4vw, 56px); font-weight: 300; color: var(--ivory); }
.gallery-header h2 em { font-style: italic; color: var(--taupe); }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 3px; }
.gallery-item { overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease), filter 0.4s; filter: brightness(0.85); }
.gallery-item:hover img { transform: scale(1.05); filter: brightness(1); }
.gallery-item:nth-child(1) { grid-column: 1 / 8; aspect-ratio: 16/10; }
.gallery-item:nth-child(2) { grid-column: 8 / 13; aspect-ratio: 16/10; }
.gallery-item:nth-child(3) { grid-column: 1 / 5; aspect-ratio: 3/4; }
.gallery-item:nth-child(4) { grid-column: 5 / 9; aspect-ratio: 3/4; }
.gallery-item:nth-child(5) { grid-column: 9 / 13; aspect-ratio: 3/4; }
.gallery-item:nth-child(6) { grid-column: 1 / 13; aspect-ratio: 16/6; }

/* PRICING */
.pricing { padding: 120px 0; background: var(--ivory); }
.pricing-header { text-align: center; margin-bottom: 72px; }
.pricing-header h2 { font-size: clamp(36px, 4vw, 56px); font-weight: 300; color: var(--black); margin-bottom: 16px; }
.pricing-header h2 em { font-style: italic; color: var(--smoke); }
.pricing-header p { font-size: 15px; font-weight: 300; color: var(--smoke); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-bottom: 2px; }
.pricing-card { background: var(--black); padding: 52px 40px; transition: transform 0.3s var(--ease); }
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured-plan { background: var(--gold); }
.pricing-tag { font-size: 9px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 8px; }
.pricing-card.featured-plan .pricing-tag { color: var(--black); }
.pricing-name { font-family: var(--font-serif); font-size: 32px; font-weight: 400; color: var(--ivory); margin-bottom: 4px; }
.pricing-card.featured-plan .pricing-name { color: var(--black); }
.pricing-duration { font-size: 12px; color: var(--smoke); letter-spacing: 0.08em; margin-bottom: 32px; }
.pricing-card.featured-plan .pricing-duration { color: rgba(10,10,10,0.5); }
.pricing-price { font-family: var(--font-serif); font-size: 64px; font-weight: 300; color: var(--ivory); line-height: 1; margin-bottom: 32px; }
.pricing-card.featured-plan .pricing-price { color: var(--black); }
.pricing-price sup { font-size: 24px; vertical-align: super; font-weight: 400; }
.pricing-divider { width: 40px; height: 1px; background: rgba(247,245,240,0.15); margin-bottom: 28px; }
.pricing-card.featured-plan .pricing-divider { background: rgba(10,10,10,0.2); }
.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.pricing-features li { font-size: 13px; font-weight: 300; color: rgba(247,245,240,0.65); padding-left: 16px; position: relative; line-height: 1.5; }
.pricing-card.featured-plan .pricing-features li { color: rgba(10,10,10,0.65); }
.pricing-features li::before { content: ''; position: absolute; left: 0; top: 9px; width: 6px; height: 1px; background: var(--gold); }
.pricing-card.featured-plan .pricing-features li::before { background: rgba(10,10,10,0.4); }
.pricing-btn { display: block; width: 100%; text-align: center; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; padding: 14px 24px; border: 1px solid rgba(247,245,240,0.2); color: var(--ivory); transition: background 0.3s, border-color 0.3s; }
.pricing-btn:hover { background: rgba(247,245,240,0.08); border-color: rgba(247,245,240,0.5); }
.pricing-card.featured-plan .pricing-btn { border-color: var(--black); color: var(--black); }
.pricing-card.featured-plan .pricing-btn:hover { background: rgba(10,10,10,0.1); }
.pricing-addons { background: var(--black); padding: 52px; }
.pricing-addons h3 { font-family: var(--font-serif); font-size: 28px; font-weight: 300; color: var(--ivory); margin-bottom: 36px; }
.addons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.addon-item { border-top: 1px solid rgba(247,245,240,0.08); padding-top: 20px; }
.addon-item h4 { font-size: 14px; color: var(--ivory); margin-bottom: 4px; }
.addon-price { font-family: var(--font-serif); font-size: 32px; font-weight: 300; color: var(--gold); display: block; }
.addon-item p { font-size: 12px; font-weight: 300; color: var(--smoke); margin-top: 4px; }

/* PROCESS */
.process { padding: 120px 0; background: var(--black); }
.process-header { text-align: center; margin-bottom: 80px; }
.process-header h2 { font-size: clamp(36px, 4vw, 56px); font-weight: 300; color: var(--ivory); }
.process-header h2 em { font-style: italic; color: var(--taupe); }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.process-step { background: rgba(247,245,240,0.03); padding: 52px 40px; }
.step-number { font-family: var(--font-serif); font-size: 80px; font-weight: 300; color: rgba(247,245,240,0.05); line-height: 1; margin-bottom: 24px; }
.step-line { width: 32px; height: 1px; background: var(--gold); margin-bottom: 20px; }
.process-step h3 { font-family: var(--font-serif); font-size: 28px; font-weight: 300; color: var(--ivory); margin-bottom: 12px; }
.process-step p { font-size: 14px; font-weight: 300; color: var(--smoke); line-height: 1.7; }

/* LOCAL */
.local { padding: 120px 0; background: var(--ivory); }
.local .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.local-image { aspect-ratio: 4/5; overflow: hidden; }
.local-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.local-image:hover img { transform: scale(1.04); }
.local-content h2 { font-size: clamp(32px, 3.5vw, 48px); font-weight: 300; margin-bottom: 24px; line-height: 1.2; }
.local-content h2 em { font-style: italic; color: var(--smoke); }
.local-content p { font-size: 15px; font-weight: 300; color: var(--smoke); line-height: 1.8; margin-bottom: 14px; }
.local-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.local-tag { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--smoke); border: 1px solid var(--taupe); padding: 8px 14px; }

/* CTA */
.cta-section { padding: 160px 0; background: var(--black); text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(198,166,106,0.07), transparent); }
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { font-size: clamp(42px, 6vw, 80px); font-weight: 300; color: var(--ivory); line-height: 1.1; margin-bottom: 20px; }
.cta-section h2 em { font-style: italic; color: var(--gold); }
.cta-section p { font-size: 16px; font-weight: 300; color: rgba(247,245,240,0.5); margin-bottom: 48px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-gold { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; background: var(--gold); color: var(--black); padding: 18px 48px; transition: background 0.3s, transform 0.2s; }
.btn-gold:hover { background: #b8955c; transform: translateY(-2px); }
.btn-ghost { display: inline-block; font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; border: 1px solid rgba(247,245,240,0.3); color: var(--ivory); padding: 18px 48px; transition: border-color 0.3s, background 0.3s; }
.btn-ghost:hover { border-color: var(--ivory); background: rgba(247,245,240,0.06); }

/* CONTACT */
.contact { padding: 120px 0; background: var(--ivory); }
.contact .container { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; }
.contact-info h2 { font-size: clamp(32px, 3.5vw, 48px); font-weight: 300; margin-bottom: 24px; line-height: 1.2; }
.contact-info h2 em { font-style: italic; color: var(--smoke); }
.contact-info p { font-size: 15px; font-weight: 300; color: var(--smoke); line-height: 1.8; margin-bottom: 48px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail { display: flex; flex-direction: column; gap: 2px; }
.contact-detail-label { font-size: 9px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.contact-detail-value { font-size: 15px; font-weight: 300; color: var(--black); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--smoke); }
.form-group input,
.form-group select,
.form-group textarea { border: 1px solid var(--taupe); padding: 14px 16px; font-size: 14px; font-weight: 300; color: var(--black); background: transparent; outline: none; transition: border-color 0.3s; -webkit-appearance: none; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: none; height: 120px; }
.form-submit { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; background: var(--black); color: var(--ivory); padding: 16px 40px; border: 1px solid var(--black); width: fit-content; transition: background 0.3s, color 0.3s; cursor: pointer; }
.form-submit:hover { background: transparent; color: var(--black); }

/* FOOTER */
footer { background: var(--black); padding: 60px 0 32px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 48px; border-bottom: 1px solid rgba(247,245,240,0.07); margin-bottom: 32px; }
.footer-logo { font-family: var(--font-serif); font-size: 24px; font-weight: 300; color: var(--ivory); }
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: 11px; color: var(--smoke); margin-top: 6px; letter-spacing: 0.05em; }
.footer-links { display: flex; gap: 36px; }
.footer-links a { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--smoke); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 12px; color: rgba(141,138,134,0.55); }
.footer-social { display: flex; gap: 24px; }
.footer-social a { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--smoke); transition: color 0.3s; }
.footer-social a:hover { color: var(--gold); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .brand-statement .container { grid-template-columns: 1fr; gap: 20px; }
  .featured .container { grid-template-columns: 1fr; }
  .featured-image { aspect-ratio: 16/9; max-height: 460px; }
  .occasions-grid { grid-template-columns: repeat(3, 1fr); }
  .occasions-grid .occasion-card:nth-child(4),
  .occasions-grid .occasion-card:nth-child(5) { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .local .container { grid-template-columns: 1fr; }
  .local-image { aspect-ratio: 16/9; }
  .pricing-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
  .contact .container { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-links { flex-wrap: wrap; gap: 20px; }
}
@media (max-width: 768px) {
  .hero-content { padding: 0 24px 64px; }
  .hero-scroll { display: none; }
  .occasions-grid { grid-template-columns: repeat(2, 1fr); }
  .occasions-grid .occasion-card:nth-child(3) { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: 1 / 3; aspect-ratio: 16/9; }
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) { grid-column: auto; aspect-ratio: 1/1; }
  .gallery-item:nth-child(6) { grid-column: 1 / 3; aspect-ratio: 16/9; }
  .pricing-addons { padding: 36px 24px; }
  .addons-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 100px 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { text-align: center; }
  .occasions-grid { grid-template-columns: 1fr 1fr; }
  .occasions-grid .occasion-card:nth-child(3) { grid-column: 1 / 3; display: block; }
  .occasions-grid .occasion-card:nth-child(4),
  .occasions-grid .occasion-card:nth-child(5) { display: none; }
  .pricing-card { padding: 40px 24px; }
  .pricing-addons { padding: 32px 20px; }
  .cta-actions { flex-direction: column; align-items: center; }
}
