:root {
--dark:    #111111;
--mid:     #1e1e20;
--surface: #242426;
--gold:    #c9a84c;
--gold-lt: #e2c47a;
--ivory:   #f0ece4;
--stone:   #8a8680;
--border:  rgba(201,168,76,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--dark); color: var(--ivory); font-family: 'Outfit', sans-serif; overflow-x: hidden; }

/* ─── NAV ─── */
nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 200;
display: flex; align-items: center; justify-content: space-between;
padding: 16px 32px;
background: rgba(17,17,17,0.92); backdrop-filter: blur(14px);
border-bottom: 1px solid var(--border);
}
.nav-brand { display: flex; align-items: center; gap: 11px; }
.nav-name {
font-family: 'Cormorant Garamond', serif; font-weight: 600;
font-size: 1.3rem; letter-spacing: 0.12em; color: var(--ivory);
}

/* desktop links */
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
font-size: 0.72rem; font-weight: 300; letter-spacing: 0.26em;
text-transform: uppercase; color: var(--stone); text-decoration: none;
transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-lt); }
.nav-links .nav-cta {
padding: 8px 22px; border: 1px solid var(--gold);
color: var(--gold-lt); transition: background 0.25s, color 0.25s;
}
.nav-links .nav-cta:hover { background: var(--gold); color: var(--dark); }

/* hamburger */
.hamburger {
display: none; flex-direction: column; justify-content: center;
gap: 5px; width: 36px; height: 36px; cursor: pointer;
background: none; border: none; padding: 4px;
}
.hamburger span {
display: block; width: 100%; height: 1.5px;
background: var(--ivory); border-radius: 2px;
transition: transform 0.3s, opacity 0.3s;
transform-origin: center;
}
.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 drawer */
.mobile-menu {
display: none; position: fixed;
top: 0; left: 0; right: 0; bottom: 0; z-index: 190;
background: rgba(17,17,17,0.97);
flex-direction: column; align-items: center; justify-content: center;
gap: 36px; opacity: 0; transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; }
.mobile-menu a {
font-family: 'Cormorant Garamond', serif; font-weight: 300;
font-size: 2rem; letter-spacing: 0.12em;
color: var(--ivory); text-decoration: none; transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold-lt); }
.mobile-menu .mob-cta {
margin-top: 12px; padding: 12px 40px;
border: 1px solid var(--gold); color: var(--gold-lt);
font-family: 'Outfit', sans-serif; font-size: 0.78rem;
font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase;
}

@media (max-width: 680px) {
.nav-links { display: none; }
.hamburger { display: flex; }
.mobile-menu { display: flex; pointer-events: none; }
.mobile-menu.open { pointer-events: all; }
}

/* ─── HERO ─── */
.hero {
position: relative; min-height: 100vh;
display: flex; flex-direction: column;
justify-content: center; align-items: center; text-align: center;
padding: 110px 24px 80px; overflow: hidden;
}
.hero-bg {
position: absolute; inset: 0;
background:
linear-gradient(180deg, rgba(17,17,17,0.2) 0%, rgba(17,17,17,0.6) 55%, rgba(17,17,17,1) 100%),
url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1600&q=80') center/cover no-repeat;
z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

.eyebrow {
font-size: 0.68rem; font-weight: 300; letter-spacing: 0.45em;
text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
}
.hero-title {
font-family: 'Cormorant Garamond', serif; font-weight: 300;
font-size: clamp(3.4rem, 12vw, 9.5rem); line-height: 1.0; letter-spacing: 0.04em;
color: var(--ivory); opacity: 0; animation: fadeUp 0.8s 0.4s forwards;
}
.hero-title em { font-style: italic; color: var(--gold-lt); }
.rule {
width: 50px; height: 1px; background: var(--gold); margin: 30px auto;
opacity: 0; animation: fadeUp 0.8s 0.58s forwards;
}
.hero-sub {
font-weight: 300; font-size: clamp(0.85rem, 2.5vw, 1.05rem);
color: var(--stone); line-height: 2.0; letter-spacing: 0.05em;
opacity: 0; animation: fadeUp 0.8s 0.7s forwards;
}
.hero-cta { margin-top: 44px; opacity: 0; animation: fadeUp 0.8s 0.88s forwards; }
.btn {
display: inline-block; padding: 13px 40px;
border: 1px solid var(--gold); color: var(--gold-lt);
font-size: 0.73rem; font-weight: 400; letter-spacing: 0.22em;
text-transform: uppercase; text-decoration: none;
transition: background 0.28s, color 0.28s;
}
.btn:hover { background: var(--gold); color: var(--dark); }

/* ─── DIVIDER ─── */
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }

/* ─── PACKAGE ─── */
.package { padding: 80px 24px 96px; max-width: 960px; margin: 0 auto; }
.sec-eyebrow {
font-size: 0.68rem; font-weight: 300; letter-spacing: 0.45em;
text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.sec-title {
font-family: 'Cormorant Garamond', serif; font-weight: 300;
font-size: clamp(2.4rem, 7vw, 4.8rem); line-height: 1.1;
color: var(--ivory); margin-bottom: 48px;
}
.sec-title em { font-style: italic; color: var(--gold-lt); }

.pkg-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--border); }
.pkg-col { padding: 36px 32px; }
.pkg-col:first-child { border-right: 1px solid var(--border); }
.col-label {
font-size: 0.64rem; letter-spacing: 0.36em; text-transform: uppercase;
color: var(--gold); margin-bottom: 24px;
}
.pkg-item {
display: flex; align-items: flex-start; gap: 13px; margin-bottom: 15px;
font-size: 0.91rem; font-weight: 300; color: var(--ivory); line-height: 1.55;
}
.pkg-item::before {
content: ''; flex-shrink: 0; width: 4px; height: 4px; margin-top: 8px;
background: var(--gold); border-radius: 50%;
}
.price-row {
margin-top: 48px; padding-top: 36px; border-top: 1px solid var(--border);
display: flex; align-items: flex-end; gap: 16px; flex-wrap: wrap;
}
.price {
font-family: 'Cormorant Garamond', serif; font-weight: 300;
font-size: clamp(3.6rem, 9vw, 6.8rem); line-height: 1; color: var(--ivory);
}
.price sup { font-size: 0.38em; vertical-align: super; color: var(--gold); }
.price-note {
font-family: 'Cormorant Garamond', serif; font-style: italic;
font-size: 1rem; color: var(--stone); padding-bottom: 9px;
}

@media (max-width: 560px) {
.pkg-grid { grid-template-columns: 1fr; }
.pkg-col:first-child { border-right: none; border-bottom: 1px solid var(--border); }
.pkg-col { padding: 28px 22px; }
}

/* ─── FAQ ACCORDION ─── */
.faq-section { padding: 80px 24px 96px; max-width: 800px; margin: 0 auto; }
.faq-section .sec-eyebrow { margin-bottom: 12px; }
.faq-section .sec-title   { margin-bottom: 48px; }

.faq-item {
border-bottom: 1px solid var(--border);
}
.faq-item:first-of-type { border-top: 1px solid var(--border); }

.faq-trigger {
width: 100%; background: none; border: none; cursor: pointer;
display: flex; justify-content: space-between; align-items: center;
padding: 22px 4px; gap: 20px; text-align: left;
}
.faq-question {
font-family: 'Cormorant Garamond', serif; font-weight: 300;
font-size: clamp(1.05rem, 2.6vw, 1.3rem); color: var(--ivory);
letter-spacing: 0.02em; line-height: 1.35;
}
.faq-icon {
flex-shrink: 0; width: 22px; height: 22px;
border: 1px solid var(--border); border-radius: 50%;
display: flex; align-items: center; justify-content: center;
transition: background 0.25s, border-color 0.25s;
position: relative;
}
.faq-icon::before,
.faq-icon::after {
content: ''; position: absolute;
background: var(--gold); border-radius: 2px;
transition: transform 0.35s, opacity 0.35s;
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 10px; }

.faq-item.open .faq-icon { background: var(--gold); border-color: var(--gold); }
.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after { background: var(--dark); }
.faq-item.open .faq-icon::after  { transform: rotate(90deg); opacity: 0; }

.faq-body {
display: grid; grid-template-rows: 0fr;
transition: grid-template-rows 0.38s ease;
}
.faq-item.open .faq-body { grid-template-rows: 1fr; }
.faq-inner { overflow: hidden; }
.faq-answer {
font-weight: 300; font-size: 0.93rem; line-height: 1.85;
color: var(--stone); padding: 0 4px 24px;
}

/* ─── CONTACT ─── */
.contact {
background: var(--surface); border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border); padding: 72px 24px; text-align: center;
}
.contact-label {
font-size: 0.68rem; font-weight: 300; letter-spacing: 0.45em;
text-transform: uppercase; color: var(--stone); margin-bottom: 20px;
}
.contact-email {
font-family: 'Cormorant Garamond', serif; font-weight: 300;
font-size: clamp(1.5rem, 5vw, 3rem); letter-spacing: 0.08em;
color: var(--ivory); text-decoration: none; transition: color 0.22s;
word-break: break-all;
}
.contact-email:hover { color: var(--gold-lt); }

/* ─── FOOTER ─── */
footer {
padding: 36px 24px;
display: flex; flex-direction: column; align-items: center; gap: 12px;
}
footer p { font-size: 0.68rem; font-weight: 300; color: var(--stone); letter-spacing: 0.15em; text-align: center; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
from { opacity: 0; transform: translateY(22px); }
to   { opacity: 1; transform: translateY(0); }
}

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

