/* ============================================
   Fleur & Chloé - Custom Styles
   ============================================ */
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: 'Inter', system-ui, sans-serif; color: #1a1a1a; background-color: #fefdfb; }
* { box-sizing: border-box; }
::selection { background-color: rgba(212,180,131,0.4); color: #1a1a1a; }

/* ---- Buttons ---- */
.btn-primary { display: inline-flex; align-items: center; justify-content: center; padding: 0.875rem 2rem; background-color: #1a1a1a; color: #faf7f2; font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none; transition: all 500ms ease-out; cursor: pointer; border: none; white-space: nowrap; }
.btn-primary:hover { background-color: #b8935a; color: white; }
.btn-outline { display: inline-flex; align-items: center; justify-content: center; padding: 0.875rem 2rem; border: 1px solid #1a1a1a; color: #1a1a1a; font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none; transition: all 500ms ease-out; cursor: pointer; background: transparent; white-space: nowrap; }
.btn-outline:hover { background-color: #1a1a1a; color: #faf7f2; }
.btn-champagne { display: inline-flex; align-items: center; justify-content: center; padding: 0.875rem 2rem; background-color: #c9a96e; color: white; font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none; transition: all 500ms ease-out; cursor: pointer; border: none; white-space: nowrap; }
.btn-champagne:hover { background-color: #b8935a; }
.btn-white { display: inline-flex; align-items: center; justify-content: center; padding: 0.875rem 2rem; background-color: white; color: #1a1a1a; font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none; transition: all 500ms ease-out; cursor: pointer; border: none; white-space: nowrap; }
.btn-white:hover { background-color: #f5f0e4; }

/* ---- Layout ---- */
.section-padding { padding: 5rem 1.5rem; }
@media (min-width: 768px) { .section-padding { padding: 7rem 3rem; } }
@media (min-width: 1024px) { .section-padding { padding: 8rem 5rem; } }
.container-narrow { max-width: 64rem; margin-left: auto; margin-right: auto; }
.container-wide { max-width: 80rem; margin-left: auto; margin-right: auto; }

/* ---- Gold lines ---- */
.gold-line { width: 4rem; height: 1px; background-color: #c9a96e; display: inline-block; vertical-align: middle; flex-shrink: 0; }
.gold-line-wide { width: 6rem; height: 1px; background-color: #c9a96e; display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* ---- Image hover zoom ---- */
.img-hover-zoom { overflow: hidden; }
.img-hover-zoom img { transition: transform 700ms ease-out; display: block; width: 100%; height: 100%; object-fit: cover; }
.img-hover-zoom:hover img { transform: scale(1.1); }

/* ---- Masonry gallery ---- */
.masonry-gallery { columns: 1; column-gap: 1rem; }
@media (min-width: 768px) { .masonry-gallery { columns: 2; } }
@media (min-width: 1024px) { .masonry-gallery { columns: 3; } }
.masonry-item { break-inside: avoid; display: block; margin-bottom: 1rem; }

/* ---- Scroll animations ---- */
.anim { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.anim.visible { opacity: 1; transform: translateY(0); }
.anim-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.anim-left.visible { opacity: 1; transform: translateX(0); }
.anim-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.anim-right.visible { opacity: 1; transform: translateX(0); }
.anim-scale { opacity: 0; transform: scale(0.95); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.anim-scale.visible { opacity: 1; transform: scale(1); }
[data-delay="80"] { transition-delay: 80ms; }
[data-delay="100"] { transition-delay: 100ms; }
[data-delay="150"] { transition-delay: 150ms; }
[data-delay="200"] { transition-delay: 200ms; }
[data-delay="300"] { transition-delay: 300ms; }
[data-delay="400"] { transition-delay: 400ms; }
[data-delay="450"] { transition-delay: 450ms; }
[data-delay="480"] { transition-delay: 480ms; }
[data-delay="500"] { transition-delay: 500ms; }
[data-delay="600"] { transition-delay: 600ms; }
[data-delay="700"] { transition-delay: 700ms; }
[data-delay="800"] { transition-delay: 800ms; }

/* ---- Hero slideshow ---- */
.hero-slide { position: absolute; inset: 0; transition: opacity 2000ms ease-in-out; opacity: 0; }
.hero-slide.active { opacity: 1; }
.hero-fade { opacity: 0; transform: translateY(2rem); transition: opacity 1s ease-out, transform 1s ease-out; }
.hero-fade.loaded { opacity: 1; transform: translateY(0); }
.hero-fade.d300 { transition-delay: 300ms; }
.hero-fade.d500 { transition-delay: 500ms; }
.hero-fade.d700 { transition-delay: 700ms; }
.hero-fade.d900 { transition-delay: 900ms; }

/* ---- Navbar ---- */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: all 500ms ease; }
#navbar.scrolled { background-color: rgba(255,255,255,0.95); backdrop-filter: blur(12px); box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
#navbar.mobile-open { background-color: white; }
#navbar.solid { background-color: rgba(255,255,255,0.95); backdrop-filter: blur(12px); box-shadow: 0 1px 3px rgba(0,0,0,0.06); }

.logo-fleur, .logo-chloe { font-family: 'Brotherhood Script', cursive; font-size: 2.25rem; transition: color 500ms ease; color: white; line-height: 1; letter-spacing: 0.025em; }
@media (min-width: 768px) { .logo-fleur, .logo-chloe { font-size: 2.75rem; } }
.logo-amp { font-family: 'Brotherhood Script', cursive; font-size: 2.25rem; transition: color 500ms ease; color: #deccaa; line-height: 1; letter-spacing: 0.025em; }
@media (min-width: 768px) { .logo-amp { font-size: 2.75rem; } }
#navbar.scrolled .logo-fleur, #navbar.scrolled .logo-chloe, #navbar.solid .logo-fleur, #navbar.solid .logo-chloe { color: #1a1a1a; }
#navbar.scrolled .logo-amp, #navbar.solid .logo-amp { color: #b8935a; }
#navbar.mobile-open .logo-fleur, #navbar.mobile-open .logo-chloe { color: #1a1a1a; }
#navbar.mobile-open .logo-amp { color: #b8935a; }

.nav-link { color: rgba(255,255,255,0.8); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; text-decoration: none; padding: 0.5rem 1rem; transition: color 300ms ease; font-family: 'Inter', sans-serif; }
.nav-link:hover { color: white; }
#navbar.scrolled .nav-link, #navbar.solid .nav-link { color: #4f4f4f; }
#navbar.scrolled .nav-link:hover, #navbar.solid .nav-link:hover { color: #b8935a; }
.nav-link.active { color: #deccaa !important; }
#navbar.scrolled .nav-link.active, #navbar.solid .nav-link.active { color: #b8935a !important; }

.nav-icon { color: rgba(255,255,255,0.8); transition: color 300ms ease; text-decoration: none; display: inline-flex; }
.nav-icon:hover { color: white; }
#navbar.scrolled .nav-icon, #navbar.solid .nav-icon { color: #4f4f4f; }
#navbar.scrolled .nav-icon:hover, #navbar.solid .nav-icon:hover { color: #b8935a; }

.reserve-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.625rem 1.25rem; border: 1px solid rgba(255,255,255,0.6); color: white; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none; transition: all 300ms ease; font-family: 'Inter', sans-serif; }
.reserve-btn:hover { background-color: white; color: #1a1a1a; }
#navbar.scrolled .reserve-btn, #navbar.solid .reserve-btn { border-color: #1a1a1a; color: #1a1a1a; }
#navbar.scrolled .reserve-btn:hover, #navbar.solid .reserve-btn:hover { background-color: #1a1a1a; color: white; }

#mobile-menu-btn { color: white; transition: color 300ms ease; background: none; border: none; cursor: pointer; padding: 0.5rem; position: relative; z-index: 60; align-items: center; }
#navbar.scrolled #mobile-menu-btn, #navbar.solid #mobile-menu-btn, #navbar.mobile-open #mobile-menu-btn { color: #1a1a1a; }

#mobile-menu { position: fixed; inset: 0; z-index: 40; background: white; opacity: 0; pointer-events: none; transition: opacity 500ms ease; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem; padding-top: 5rem; }
#mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-nav-link { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.875rem; font-weight: 300; color: #1a1a1a; text-decoration: none; transition: color 300ms ease, opacity 500ms ease, transform 500ms ease; }
.mobile-nav-link:hover, .mobile-nav-link.active { color: #b8935a; }

/* ---- Bounce/spin ---- */
@keyframes bounce { 0%,100% { transform: translateY(0) translateX(-50%); } 50% { transform: translateY(-10px) translateX(-50%); } }
.bounce { animation: bounce 1.5s ease-in-out infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.spin { animation: spin 1s linear infinite; }

/* ---- Lightbox ---- */
.lightbox { display: none; position: fixed; inset: 0; z-index: 100; background-color: rgba(13,13,13,0.95); align-items: center; justify-content: center; }
.lightbox.open { display: flex; }

/* ---- Scroll-to-top ---- */
#scroll-top { position: fixed; bottom: 2rem; right: 2rem; z-index: 40; width: 2.75rem; height: 2.75rem; background-color: #1a1a1a; color: white; border: none; cursor: pointer; display: none; align-items: center; justify-content: center; transition: background-color 300ms ease; }
#scroll-top.show { display: flex; }
#scroll-top:hover { background-color: #c9a96e; }

/* ---- Testimonial ---- */
#testimonial-quote { transition: opacity 400ms ease; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.25rem; font-weight: 300; font-style: italic; color: #383838; line-height: 1.7; min-height: 120px; }
@media (min-width: 768px) { #testimonial-quote { font-size: 1.5rem; } }
#testimonial-author { transition: opacity 400ms ease; }

/* ---- Contact form ---- */
#event-fields { display: none; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { #event-fields { grid-template-columns: repeat(2, 1fr); } }
.field-input { width: 100%; padding: 0.75rem 1rem; background-color: white; border: 1px solid #ece4d6; color: #1a1a1a; font-size: 0.875rem; font-family: 'Inter', sans-serif; transition: border-color 300ms ease, box-shadow 300ms ease; outline: none; -webkit-appearance: none; appearance: none; }
.field-input:focus { border-color: #c9a96e; box-shadow: 0 0 0 1px #c9a96e; }
.field-input::placeholder { color: #b0b0b0; }
.field-label { display: block; font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: #5d5d5d; margin-bottom: 0.5rem; font-family: 'Inter', sans-serif; }

/* ---- Gallery filter ---- */
.filter-btn { padding: 0.5rem 1.25rem; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; cursor: pointer; border: 1px solid #ece4d6; background: white; color: #5d5d5d; transition: all 300ms ease; font-family: 'Inter', sans-serif; }
.filter-btn.active { background-color: #1a1a1a; color: #f5f0e8; border-color: #1a1a1a; }
.filter-btn:not(.active):hover { border-color: #d4b483; color: #9a7949; }
.gallery-item.hidden { display: none; }

/* ---- Service card ---- */
.service-card { display: block; background: white; border: 1px solid #f5f0e8; text-decoration: none; transition: all 500ms ease; }
.service-card:hover { border-color: #deccaa; box-shadow: 0 20px 40px rgba(201,169,110,0.1); }
.service-card .cta-text { transition: color 300ms ease; }
.service-card:hover .cta-text { color: #b8935a; }
.service-card .cta-arrow { transition: transform 300ms ease; }
.service-card:hover .cta-arrow { transform: translateX(4px); }

/* ---- Dropcap ---- */
.dropcap { float: left; font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; line-height: 1; color: #c9a96e; margin-right: 0.75rem; margin-top: 0.25rem; font-weight: 600; }

/* ---- Sticky sidebar ---- */
@media (min-width: 1024px) { .sticky-sidebar { position: sticky; top: 8rem; } }

/* ---- Page hero ---- */
.page-hero { position: relative; overflow: hidden; height: 60vh; min-height: 400px; max-height: 700px; display: flex; align-items: center; justify-content: center; }
.page-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(13,13,13,0.5), rgba(13,13,13,0.4), rgba(13,13,13,0.7)); }
.page-hero-content { position: relative; z-index: 1; text-align: center; padding: 0 1.5rem; }

/* ---- Process step ---- */
.process-num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 700; color: rgba(212,180,131,0.4); display: block; margin-bottom: 1rem; }

/* ---- Highlight boxes ---- */
.highlight-box { width: 2.5rem; height: 2.5rem; display: flex; align-items: center; justify-content: center; background-color: #f5f0e4; color: #b8935a; flex-shrink: 0; }

/* ---- Menu items ---- */
.menu-item-name { font-family: 'Cormorant Garamond', serif; font-size: 1.125rem; font-weight: 500; color: #1a1a1a; transition: color 300ms ease; }
.menu-item:hover .menu-item-name { color: #b8935a; }

/* ---- Image strip ---- */
.image-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; padding: 0.5rem; }
@media (min-width: 768px) { .image-strip { grid-template-columns: repeat(4, 1fr); } }
