/* ═══════════════════════════════════════════
   PRISTINE AND CLEAN — Global Stylesheet
   ═══════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --blush: #f2b8c6;
  --rose: #e8929f;
  --deep-rose: #c96b7e;
  --dark-rose: #b5586a;
  --petal: #fce8ee;
  --pink-soft: #fdf3f6;
  --white: #ffffff;
  --cream: #fefcfd;
  --text-dark: #2e1a20;
  --text-mid: #7a4f5a;
  --text-light: #b08090;
  --shadow: rgba(201,107,126,0.12);
  --shadow-md: rgba(201,107,126,0.22);
  --nav-height: 78px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; background: var(--cream); color: var(--text-dark); overflow-x: hidden; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--petal); }
::-webkit-scrollbar-thumb { background: var(--blush); border-radius: 3px; }

/* ── TYPOGRAPHY ── */
.serif { font-family: 'Cormorant Garamond', serif; }
h1,h2,h3 { font-family: 'Cormorant Garamond', serif; font-weight: 300; line-height: 1.1; }
p { line-height: 1.75; }

/* ── SECTION HEADERS ── */
.section-eyebrow { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--deep-rose); display: block; margin-bottom: 14px; font-weight: 500; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem,4vw,3.6rem); font-weight: 300; color: var(--text-dark); }
.section-title em { font-style: italic; color: var(--deep-rose); }
.section-sub { color: var(--text-mid); font-size: 0.93rem; font-weight: 300; margin-top: 14px; max-width: 500px; }
.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.btn-primary { background: var(--deep-rose); color: white; padding: 15px 34px; text-decoration: none; font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; border-radius: 2px; transition: all .3s; display: inline-block; border: none; cursor: pointer; font-family: 'Jost', sans-serif; }
.btn-primary:hover { background: var(--dark-rose); transform: translateY(-2px); box-shadow: 0 8px 24px var(--shadow-md); }
.btn-outline { border: 1.5px solid var(--blush); color: var(--deep-rose); padding: 14px 32px; text-decoration: none; font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; border-radius: 2px; transition: all .3s; display: inline-block; background: transparent; cursor: pointer; font-family: 'Jost', sans-serif; }
.btn-outline:hover { background: var(--petal); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,0.15); color: white; padding: 14px 30px; text-decoration: none; font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; border-radius: 2px; transition: all .3s; display: inline-block; border: 1.5px solid rgba(255,255,255,0.35); cursor: pointer; font-family: 'Jost', sans-serif; }
.btn-ghost:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }

/* ── NAV ── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.94); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid rgba(242,184,198,0.35); display: flex; align-items: center; justify-content: space-between; padding: 10px 60px; height: var(--nav-height); }
.nav-logo img { height: 54px; object-fit: contain; display: block; }
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; font-size: 0.73rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-mid); font-weight: 500; transition: color .3s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px; background: var(--deep-rose); transition: width .3s; }
.nav-links a:hover, .nav-links a.active { color: var(--deep-rose); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-book { background: var(--deep-rose) !important; color: white !important; padding: 10px 22px !important; border-radius: 2px; }
.nav-book::after { display: none !important; }
.nav-book:hover { background: var(--dark-rose) !important; color: white !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--text-mid); transition: all .3s; }

/* ── MARQUEE ── */
.marquee-strip { background: var(--deep-rose); padding: 13px 0; overflow: hidden; }
.marquee-inner { display: flex; white-space: nowrap; animation: marquee 30s linear infinite; }
.marquee-inner span { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: white; padding: 0 36px; opacity: .88; }
.marquee-inner .dot { color: rgba(255,255,255,0.45); padding: 0 4px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── PINK SVG ICONS ── */
.icon { display: inline-flex; align-items: center; justify-content: center; }
.icon svg { fill: none; stroke: var(--deep-rose); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.icon-sm svg { width: 20px; height: 20px; }
.icon-md svg { width: 28px; height: 28px; }
.icon-lg svg { width: 40px; height: 40px; }
.icon-xl svg { width: 52px; height: 52px; }

/* ── FORMS ── */
.form-group { display: flex; flex-direction: column; margin-bottom: 20px; }
.form-group label { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 8px; font-weight: 500; }
.form-group input, .form-group select, .form-group textarea { border: 1px solid var(--blush); padding: 13px 16px; font-family: 'Jost', sans-serif; font-size: 0.88rem; color: var(--text-dark); background: white; border-radius: 2px; outline: none; transition: border-color .3s; appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--deep-rose); box-shadow: 0 0 0 3px rgba(201,107,126,0.08); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-shell { background: white; border: 1px solid var(--blush); padding: 48px; border-radius: 2px; }

/* ── CARDS ── */
.card { background: white; border-radius: 2px; transition: all .35s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px var(--shadow); }

/* ── POLICY STRIP ── */
.policy-strip { background: white; border-left: 3px solid var(--deep-rose); padding: 24px 28px; margin-top: 44px; }
.policy-strip p { font-size: 0.86rem; color: var(--text-mid); line-height: 1.78; font-weight: 300; }
.policy-strip strong { color: var(--text-dark); font-weight: 500; }
.policy-strip a { color: var(--deep-rose); text-decoration: none; }

/* ── DEPOSIT NOTICE ── */
.deposit-notice { background: var(--petal); border-left: 3px solid var(--deep-rose); padding: 18px 22px; margin: 26px 0; border-radius: 0 2px 2px 0; }
.deposit-notice p { font-size: 0.83rem; color: var(--text-mid); line-height: 1.68; font-weight: 300; }
.deposit-notice strong { color: var(--text-dark); font-weight: 500; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: var(--pink-soft); padding: 120px 72px 72px; border-bottom: 1px solid var(--blush); }
.page-hero h1 { font-size: clamp(2.8rem,5vw,4.5rem); }

/* ── UPLOAD ZONE ── */
.upload-zone { border: 1.5px dashed var(--blush); padding: 28px; text-align: center; border-radius: 2px; cursor: pointer; transition: all .3s; background: var(--pink-soft); }
.upload-zone:hover { border-color: var(--deep-rose); background: var(--petal); }
.upload-zone p { font-size: 0.82rem; color: var(--text-light); font-weight: 300; }
.upload-zone span { color: var(--deep-rose); font-weight: 500; }

/* ── FOOTER ── */
footer { background: var(--text-dark); padding: 60px 72px 32px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
.footer-brand img { height:64px; object-fit:contain; display:block; margin-bottom:16px; opacity:.88; }
.footer-brand p { font-size: 0.8rem; color: rgba(255,255,255,0.4); line-height: 1.75; font-weight: 300; max-width: 230px; }
.footer-col h4 { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blush); margin-bottom: 18px; font-weight: 500; }
.footer-col a { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.45); text-decoration: none; margin-bottom: 10px; transition: color .3s; font-weight: 300; }
.footer-col a:hover { color: var(--blush); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 26px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 0.73rem; color: rgba(255,255,255,0.28); letter-spacing: 0.06em; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.7rem; color: rgba(255,255,255,0.28); text-decoration: none; letter-spacing: 0.06em; transition: color .3s; }
.footer-legal a:hover { color: var(--blush); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── TOAST ── */
.toast { position: fixed; bottom: 32px; right: 32px; background: var(--text-dark); color: white; padding: 16px 24px; border-radius: 2px; font-size: 0.83rem; z-index: 9999; opacity: 0; transform: translateY(12px); transition: all .4s; pointer-events: none; border-left: 3px solid var(--deep-rose); max-width: 320px; }
.toast.show { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 10px 24px; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; flex-direction: column; padding: 20px; gap: 16px; border-bottom: 1px solid var(--petal); box-shadow: 0 8px 24px var(--shadow); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .form-shell { padding: 28px 22px; }
  .page-hero { padding: 100px 24px 48px; }
  footer { padding: 40px 24px 24px; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}
