@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=Nunito+Sans:wght@300;400;600;700&display=swap');

:root {
  --blush: #F0B8C5;
  --blush-deep: #D4697A;
  --rose: #C05068;
  --rose-dark: #8C3347;
  --sage: #8A9E8A;
  --sage-dark: #5F7B5F;
  --sage-light: #B8CBB8;
  --warm-white: #FAF7F2;
  --cream: #EDE6DA;
  --cream-dark: #D9CEBC;
  --gold: #B8924A;
  --text-dark: #2C1E18;
  --text-mid: #5A4A42;
  --text-light: #8A7A72;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shadow-soft: 0 4px 24px rgba(44,30,24,0.10);
  --shadow-card: 0 8px 40px rgba(44,30,24,0.12);
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito Sans', sans-serif; background: var(--warm-white); color: var(--text-dark); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 { font-family: 'Cormorant Garamond', serif; font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
p { line-height: 1.75; color: var(--text-mid); }

/* ── PASSWORD GATE ── */
#password-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: linear-gradient(135deg, #fdf0f3, #f4ede4, #eef4ee);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 2rem;
}
.gate-logo { font-family: 'Cormorant Garamond', serif; font-size: 0.85rem; letter-spacing: 0.2em; color: var(--text-light); text-transform: uppercase; margin-bottom: 1.2rem; }
.gate-bloom { font-size: 3.5rem; margin-bottom: 1rem; animation: gate-bloom 2s ease-in-out infinite alternate; }
@keyframes gate-bloom { from { transform: scale(1) rotate(-5deg); } to { transform: scale(1.12) rotate(5deg); } }
#password-gate h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; color: var(--text-dark); margin-bottom: 0.4rem; font-weight: 400; }
#password-gate p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 1.8rem; }
.gate-form { display: flex; gap: 0; border-radius: 50px; overflow: hidden; box-shadow: var(--shadow-card); }
.gate-form input { padding: 0.85rem 1.4rem; border: none; outline: none; font-family: 'Nunito Sans', sans-serif; font-size: 0.9rem; background: white; width: 220px; }
.gate-btn { padding: 0.85rem 1.6rem; background: var(--rose); color: white; border: none; cursor: pointer; font-family: 'Nunito Sans', sans-serif; font-size: 0.9rem; font-weight: 600; white-space: nowrap; transition: background var(--transition); }
.gate-btn:hover { background: var(--rose-dark); }
.gate-error { font-size: 0.82rem; color: var(--rose); margin-top: 0.8rem; opacity: 0; transition: opacity 0.3s; }
.gate-error.visible { opacity: 1; }
.gate-badge { margin-top: 2rem; font-size: 0.75rem; color: var(--text-light); letter-spacing: 0.1em; }

/* ── TOP BANNER ── */
.top-banner {
  background: var(--rose); color: white;
  text-align: center; padding: 0.5rem 1rem;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
}
.top-banner a { color: white; text-decoration: underline; text-underline-offset: 2px; }

/* ── NAV ── */
.nav {
  position: fixed; left: 0; right: 0; z-index: 100;
  top: 2.2rem;
  background: rgba(250,247,242,0.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(240,184,197,0.3);
  transition: top 0.35s, box-shadow 0.35s;
}
.nav.scrolled { box-shadow: var(--shadow-soft); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; height: 64px; display: flex; align-items: center; gap: 2rem; }
.nav-logo { display: flex; flex-direction: column; }
.nav-logo-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--rose-dark); font-weight: 500; }
.nav-logo-sub { font-size: 0.68rem; color: var(--text-light); letter-spacing: 0.1em; text-transform: uppercase; }
.nav-links { display: flex; gap: 0; margin-left: auto; }
.nav-links a { padding: 0.5rem 1.1rem; font-size: 0.88rem; font-weight: 600; color: var(--text-mid); border-radius: 50px; transition: all var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--rose); background: rgba(240,184,197,0.15); }
.nav-book { padding: 0.55rem 1.4rem; background: var(--rose); color: white; border-radius: 50px; font-size: 0.87rem; font-weight: 600; transition: all var(--transition); }
.nav-book:hover { background: var(--rose-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(192,80,104,0.3); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: all 0.3s; display: block; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu { display: none; position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--warm-white); z-index: 300; padding: 5rem 2rem 2rem; box-shadow: -4px 0 30px rgba(44,30,24,0.15); transition: right 0.35s cubic-bezier(0.4,0,0.2,1); flex-direction: column; gap: 0.3rem; }
.mobile-menu.open { right: 0; }
.mobile-menu a { padding: 0.9rem 1rem; font-size: 1rem; font-weight: 600; color: var(--text-dark); border-radius: var(--radius-sm); display: block; transition: all var(--transition); }
.mobile-menu a:hover { background: rgba(240,184,197,0.2); color: var(--rose); }
.mobile-book { background: var(--rose) !important; color: white !important; text-align: center; margin-top: 1rem; }
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(44,30,24,0.4); z-index: 299; }
.mobile-overlay.visible { display: block; }

/* ── HERO ── */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 7rem; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #fdf3f6 0%, #f8f0e8 40%, #eef5ee 100%); }
.hero-petals-canvas { position: absolute; inset: 0; pointer-events: none; }
.hero-inner { max-width: 1200px; margin: 0 auto; padding: 4rem 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; position: relative; z-index: 2; }
.hero-label { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 1rem; background: rgba(240,184,197,0.3); border-radius: 50px; font-size: 0.8rem; font-weight: 600; color: var(--rose); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.2rem; }
.hero h1 { color: var(--text-dark); margin-bottom: 1.2rem; }
.hero h1 em { font-style: italic; color: var(--rose-dark); }
.hero-sub { font-size: 1.1rem; color: var(--text-mid); margin-bottom: 2rem; max-width: 460px; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-rose { padding: 0.85rem 2rem; background: var(--rose); color: white; border-radius: 50px; font-weight: 600; font-size: 0.92rem; transition: all var(--transition); display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-rose:hover { background: var(--rose-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(192,80,104,0.35); }
.btn-outline { padding: 0.85rem 2rem; border: 2px solid var(--blush-deep); color: var(--rose-dark); border-radius: 50px; font-weight: 600; font-size: 0.92rem; transition: all var(--transition); }
.btn-outline:hover { background: rgba(240,184,197,0.15); transform: translateY(-2px); }
.hero-stats { display: flex; gap: 2rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--cream-dark); }
.hero-stat-val { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 600; color: var(--rose-dark); display: block; }
.hero-stat-lbl { font-size: 0.75rem; color: var(--text-light); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.hero-visual { position: relative; }
.hero-bloom-wrap { width: 100%; aspect-ratio: 1; max-width: 480px; margin: 0 auto; position: relative; display: flex; align-items: center; justify-content: center; }
.hero-bloom-circle { width: 85%; aspect-ratio: 1; border-radius: 50%; background: linear-gradient(135deg, rgba(240,184,197,0.5), rgba(212,105,122,0.3), rgba(138,158,138,0.3)); position: relative; display: flex; align-items: center; justify-content: center; animation: bloom-pulse 4s ease-in-out infinite; }
@keyframes bloom-pulse { 0%,100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(240,184,197,0.4); } 50% { transform: scale(1.03); box-shadow: 0 0 0 20px rgba(240,184,197,0); } }
.hero-bloom-emoji { font-size: 6rem; filter: drop-shadow(0 8px 24px rgba(192,80,104,0.3)); animation: petal-sway 6s ease-in-out infinite; }
@keyframes petal-sway { 0%,100% { transform: rotate(-8deg); } 50% { transform: rotate(8deg); } }
.hero-bloom-ring { position: absolute; inset: -8%; border-radius: 50%; border: 2px dashed rgba(240,184,197,0.5); animation: ring-spin 20s linear infinite; }
.hero-bloom-ring2 { position: absolute; inset: -18%; border-radius: 50%; border: 1px dashed rgba(138,158,138,0.3); animation: ring-spin 30s linear infinite reverse; }
@keyframes ring-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero-chips { position: absolute; display: flex; flex-direction: column; gap: 0.7rem; }
.hero-chip { padding: 0.5rem 1rem; background: white; border-radius: 50px; box-shadow: var(--shadow-soft); font-size: 0.8rem; font-weight: 600; color: var(--text-dark); white-space: nowrap; }
.hero-chips.left { left: -1rem; }
.hero-chips.right { right: -1rem; }

/* ── SECTIONS ── */
.section { padding: 5rem 0; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--rose); display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.7rem; }
.section-label::before { content: ''; display: block; width: 20px; height: 1.5px; background: var(--rose); }
.section-title { color: var(--text-dark); margin-bottom: 1rem; }
.section-subtitle { font-size: 1.05rem; color: var(--text-mid); max-width: 560px; }

/* ── SERVICE CARDS ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.service-card { background: white; border-radius: var(--radius-md); padding: 2.2rem; box-shadow: var(--shadow-soft); border: 1px solid rgba(240,184,197,0.2); transition: all var(--transition); cursor: default; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: rgba(240,184,197,0.5); }
.svc-icon { font-size: 2.4rem; margin-bottom: 1rem; }
.svc-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.svc-desc { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-visual { position: relative; }
.about-photo-wrap { width: 100%; aspect-ratio: 4/5; border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(240,184,197,0.3), rgba(138,158,138,0.2)); display: flex; align-items: center; justify-content: center; font-size: 6rem; overflow: hidden; }
.about-badge { position: absolute; bottom: -1rem; right: -1rem; background: white; border-radius: var(--radius-md); padding: 1.2rem 1.5rem; box-shadow: var(--shadow-card); text-align: center; }
.about-badge-num { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; color: var(--rose-dark); line-height: 1; }
.about-badge-lbl { font-size: 0.72rem; color: var(--text-light); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.values-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.value-item { display: flex; gap: 1rem; align-items: flex-start; }
.value-dot { width: 32px; height: 32px; border-radius: 50%; background: rgba(240,184,197,0.25); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.value-text strong { display: block; color: var(--text-dark); font-size: 0.95rem; margin-bottom: 0.15rem; }
.value-text span { font-size: 0.83rem; color: var(--text-light); }

/* ── REVIEWS ── */
.reviews-bg { background: var(--cream); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.review-card { background: white; border-radius: var(--radius-md); padding: 1.8rem; box-shadow: var(--shadow-soft); }
.review-stars { color: #F5A623; font-size: 0.9rem; margin-bottom: 0.8rem; letter-spacing: 2px; }
.review-text { font-size: 0.87rem; line-height: 1.7; color: var(--text-mid); margin-bottom: 1.2rem; font-style: italic; }
.review-author { font-size: 0.8rem; font-weight: 700; color: var(--text-dark); }
.review-source { font-size: 0.74rem; color: var(--text-light); }
.rating-summary { display: flex; align-items: center; gap: 1rem; margin-top: 2.5rem; }
.rating-big { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; color: var(--rose-dark); line-height: 1; }
.rating-stars-big { color: #F5A623; font-size: 1.3rem; letter-spacing: 2px; display: block; }
.rating-count { font-size: 0.84rem; color: var(--text-light); }

/* ── CTA BAND ── */
.cta-band { background: linear-gradient(135deg, var(--rose-dark), var(--rose), #E07A8A); padding: 5rem 0; text-align: center; }
.cta-band h2 { color: white; margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.82); margin-bottom: 2rem; }
.btn-white { padding: 0.85rem 2rem; background: white; color: var(--rose-dark); border-radius: 50px; font-weight: 700; font-size: 0.92rem; transition: all var(--transition); display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-outline-white { padding: 0.85rem 2rem; border: 2px solid rgba(255,255,255,0.7); color: white; border-radius: 50px; font-weight: 600; font-size: 0.92rem; transition: all var(--transition); display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── PAGE HEADER ── */
.page-header { background: linear-gradient(135deg, #fdf3f6, #f4ede4); padding: 8rem 0 4rem; margin-top: 2.2rem; }
.page-header-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.breadcrumb { font-size: 0.8rem; color: var(--text-light); margin-bottom: 1rem; }
.breadcrumb a { color: var(--rose); }
.page-header h1 { color: var(--text-dark); margin-bottom: 0.7rem; }
.page-header p { font-size: 1.05rem; color: var(--text-mid); max-width: 560px; }

/* ── ARRANGEMENTS PAGE ── */
.arrangements-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.arr-card { background: white; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-soft); transition: all var(--transition); }
.arr-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.arr-photo { aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.arr-info { padding: 1.5rem; }
.arr-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--text-dark); margin-bottom: 0.4rem; }
.arr-desc { font-size: 0.84rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 0.8rem; }
.arr-price { font-weight: 700; color: var(--rose); font-size: 0.9rem; }
.tag { display: inline-block; padding: 0.2rem 0.6rem; border-radius: 50px; font-size: 0.72rem; font-weight: 600; background: rgba(240,184,197,0.2); color: var(--rose); margin-right: 0.3rem; margin-bottom: 0.3rem; }

/* ── GALLERY PAGE ── */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 3rem; }
.gallery-item { aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 3rem; transition: transform var(--transition); cursor: pointer; }
.gallery-item:hover { transform: scale(1.04); }
.gallery-item:nth-child(3) { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item:nth-child(7) { grid-column: span 2; aspect-ratio: 2/1; }

/* ── CONTACT PAGE ── */
.contact-layout { display: grid; grid-template-columns: 1fr 400px; gap: 4rem; }
.form-wrap { background: white; border-radius: var(--radius-md); padding: 2.5rem; box-shadow: var(--shadow-soft); }
.form-wrap h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; color: var(--text-dark); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.4rem; letter-spacing: 0.05em; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.8rem 1rem; border: 1.5px solid var(--cream-dark); border-radius: var(--radius-sm); font-family: 'Nunito Sans', sans-serif; font-size: 0.9rem; color: var(--text-dark); background: var(--warm-white); transition: border-color var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--blush-deep); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; padding: 0.9rem; background: var(--rose); color: white; border: none; border-radius: 50px; font-family: 'Nunito Sans', sans-serif; font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: all var(--transition); margin-top: 0.5rem; }
.form-submit:hover { background: var(--rose-dark); transform: translateY(-1px); }
.contact-block { background: white; border-radius: var(--radius-md); padding: 1.8rem; box-shadow: var(--shadow-soft); margin-bottom: 1.2rem; }
.contact-block h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--text-dark); margin-bottom: 1.2rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1rem; }
.info-icon { font-size: 1.2rem; width: 36px; text-align: center; flex-shrink: 0; }
.info-label { font-size: 0.72rem; font-weight: 700; color: var(--text-light); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.15rem; }
.info-value { font-size: 0.9rem; color: var(--text-dark); font-weight: 600; }
.info-value a { color: var(--rose); }
.hours-row { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid var(--cream); font-size: 0.87rem; }
.hours-day { color: var(--text-mid); }
.hours-time { font-weight: 600; color: var(--text-dark); }
.map-box { background: linear-gradient(135deg, rgba(240,184,197,0.15), rgba(138,158,138,0.12)); border-radius: var(--radius-sm); padding: 2rem; text-align: center; }
.map-pin { font-size: 2rem; margin-bottom: 0.5rem; }

/* ── FOOTER ── */
.footer { background: var(--text-dark); padding: 4rem 0 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: white; margin-bottom: 0.2rem; }
.footer-brand-sub { font-size: 0.72rem; color: rgba(255,255,255,0.4); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.8rem; }
.footer-brand p { font-size: 0.84rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-col h5 { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: white; font-weight: 400; margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a { font-size: 0.84rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--blush); }
.footer-contact-item { font-size: 0.84rem; color: rgba(255,255,255,0.5); margin-bottom: 0.5rem; display: flex; gap: 0.5rem; align-items: flex-start; }
.footer-contact-item a { color: var(--blush); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom span { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: var(--blush); }

/* ── FADE-UP ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero-sub { margin: 0 auto 2rem; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-chips { display: none; }
  .hero-bloom-wrap { max-width: 320px; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid, .arrangements-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-book { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .mobile-menu { display: flex; }
  .services-grid, .arrangements-grid, .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(3), .gallery-item:nth-child(7) { grid-column: span 1; aspect-ratio: 1; }
}
