@import url('https://fonts.googleapis.com/css2?family=Pinyon+Script&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink:       #f2bdd0;
  --pink-deep:  #e09ab8;
  --pink-light: #fce8f0;
  --cream:      #fdf7f9;
  --charcoal:   #2a2a2a;
  --mid:        #6b6b6b;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body { font-family: var(--sans); color: var(--charcoal); background: #fff; overflow-x: hidden; max-width: 100%; }

/* ── NAV MOBILE OVERLAY ─────────────────────────────── */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #fff;
  z-index: 99998;
}
.nav-overlay.open { display: block; }

/* ── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 99999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px; height: 80px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(242,189,208,0.3);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.06); }

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 76px; width: auto; }
.nav-logo-text { font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--charcoal); line-height: 1.1; }
.nav-logo-text span { display: block; font-style: italic; font-size: 12px; font-weight: 300; color: var(--pink-deep); letter-spacing: 0.12em; text-transform: uppercase; }

.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mid); padding: 6px 12px; border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--charcoal); background: var(--pink-light); }
.nav-links a.active { color: var(--charcoal); font-weight: 600; }
.nav-cta {
  background: var(--charcoal) !important; color: #fff !important;
  padding: 9px 20px !important; border-radius: 100px !important;
}
.nav-cta:hover { background: var(--pink-deep) !important; }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--charcoal); transition: all 0.3s; }

/* ── SHARED SECTION STYLES ───────────────────────────── */
.page-body { padding-top: 80px; }
section { padding: 80px 56px; }
.container { max-width: 1200px; margin: 0 auto; }

.section-tag {
  display: inline-block; font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--pink-deep); margin-bottom: 14px;
}
.section-title {
  font-family: var(--serif); font-size: clamp(34px, 4vw, 52px);
  font-weight: 400; line-height: 1.08; letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--pink-deep); }
.section-sub {
  font-size: 14px; font-weight: 300; line-height: 1.85;
  color: var(--mid); max-width: 520px; margin-top: 16px;
}

/* ── PAGE HERO ───────────────────────────────────────── */
.page-hero {
  background: var(--cream);
  padding: 80px 56px 64px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,189,208,0.25), transparent 70%);
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero-tag { display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--pink-deep); background: rgba(242,189,208,0.2); border: 1px solid rgba(242,189,208,0.4); padding: 5px 14px; border-radius: 100px; margin-bottom: 20px; }
.page-hero h1 { font-family: var(--serif); font-size: clamp(40px, 5vw, 64px); font-weight: 400; line-height: 1.05; }
.page-hero h1 em { font-style: italic; color: var(--pink-deep); }
.page-hero-sub { font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--mid); max-width: 560px; margin-top: 18px; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  display: inline-block; background: var(--charcoal); color: #fff;
  text-decoration: none; font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 15px 34px; border-radius: 100px;
  transition: background 0.25s, transform 0.2s;
  border: none; cursor: pointer; font-family: var(--sans);
}
.btn-primary:hover { background: var(--pink-deep); transform: translateY(-1px); }

.btn-pink {
  display: inline-block; background: var(--pink-light); color: var(--charcoal);
  text-decoration: none; font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 15px 34px; border-radius: 100px;
  transition: all 0.25s; border: none; cursor: pointer; font-family: var(--sans);
}
.btn-pink:hover { background: var(--pink-deep); color: #fff; }

.btn-sold-out {
  display: inline-block; background: #e0e0e0; color: #999;
  text-decoration: none; font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 15px 34px; border-radius: 100px;
  border: none; cursor: not-allowed; font-family: var(--sans);
  pointer-events: none;
}

.btn-outline {
  display: inline-block; border: 1.5px solid var(--charcoal);
  color: var(--charcoal); text-decoration: none;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 14px 32px; border-radius: 100px;
  transition: all 0.25s; cursor: pointer; font-family: var(--sans);
  background: transparent;
}
.btn-outline:hover { background: var(--charcoal); color: #fff; }

/* ── FORMS ───────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 10.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--sans); font-size: 14px; font-weight: 300;
  padding: 14px 18px; border: 1.5px solid rgba(242,189,208,0.5);
  border-radius: 12px; background: #fff; color: var(--charcoal);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink-deep);
  box-shadow: 0 0 0 3px rgba(224,154,184,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-full { grid-column: 1 / -1; }
.form-wrap { background: #fff; border-radius: 24px; padding: 48px; box-shadow: 0 4px 40px rgba(0,0,0,0.07); display: flex; flex-direction: column; gap: 20px; }
.form-title { font-family: var(--serif); font-size: 28px; font-weight: 400; margin-bottom: 4px; }
.form-desc { font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.7; margin-bottom: 8px; }

/* ── PHOTO PLACEHOLDER ───────────────────────────────── */
.photo-placeholder {
  background: linear-gradient(135deg, var(--pink-light), rgba(242,189,208,0.3));
  border-radius: 20px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  color: var(--pink-deep); text-align: center; padding: 40px;
}
.photo-placeholder svg { opacity: 0.5; }
.photo-placeholder p { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.6; }

/* ── MARQUEE ─────────────────────────────────────────── */
.marquee-wrap { padding: 24px 0; background: var(--charcoal); overflow: hidden; }
.marquee-track { display: flex; animation: marquee 28s linear infinite; }
.marquee-item { flex-shrink: 0; display: flex; align-items: center; gap: 28px; padding: 0 28px; font-size: 10.5px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--pink); flex-shrink: 0; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── FEATURE CARDS ───────────────────────────────────── */
.feature-card { background: var(--cream); border-radius: 20px; padding: 36px 32px; }
.feature-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--pink-light); display: flex; align-items: center; justify-content: center; color: var(--pink-deep); margin-bottom: 20px; }
.feature-title { font-family: var(--serif); font-size: 22px; font-weight: 500; margin-bottom: 10px; }
.feature-desc { font-size: 13px; font-weight: 300; line-height: 1.75; color: var(--mid); }

/* ── STAT STRIP ──────────────────────────────────────── */
.stat-strip { display: flex; gap: 0; }
.stat-item { flex: 1; text-align: center; padding: 32px 20px; border-right: 1px solid rgba(255,255,255,0.08); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--serif); font-size: 52px; font-weight: 300; color: var(--pink); line-height: 1; }
.stat-label { font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 8px; }

/* ── DARK SECTION ────────────────────────────────────── */
.dark-section { background: var(--charcoal); color: #fff; }
.dark-section .section-tag { color: var(--pink); }
.dark-section .section-title { color: #fff; }
.dark-section .section-sub { color: rgba(255,255,255,0.55); }

/* ── IMAGE GRID ──────────────────────────────────────── */
.img-cover { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── DIVIDER ─────────────────────────────────────────── */
.divider { height: 1px; background: var(--pink-light); margin: 0; }

/* ── FOOTER ──────────────────────────────────────────── */
footer { background: var(--charcoal); color: rgba(255,255,255,0.55); padding: 32px 56px 36px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo-wrap { display: inline-block; margin-top: 20px; margin-bottom: 0; text-decoration: none; transition: opacity 0.2s; }
.footer-logo-wrap:hover { opacity: 0.75; }
.footer-logo-wrap img { height: 148px; width: auto; max-width: 320px; display: block; object-fit: contain; }
.footer-tagline { font-size: 12px; font-weight: 300; line-height: 1.75; max-width: 260px; margin-top: 14px; }
.footer-social { display: flex; gap: 10px; margin-top: 8px; }
.social-btn { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 11px; font-weight: 600; transition: all 0.2s; }
.social-btn:hover { background: var(--pink-deep); color: #fff; }
.footer-col h4 { font-size: 9.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { text-decoration: none; font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-links a:hover { color: var(--pink); }
.footer-bottom { max-width: 1200px; margin: 28px auto 0; display: flex; align-items: center; justify-content: space-between; font-size: 11px; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  nav { padding: 0 32px; }
  section { padding: 64px 32px; }
  .page-hero { padding: 64px 32px 52px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; position: fixed; top: 80px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 20px; gap: 4px; box-shadow: 0 8px 32px rgba(0,0,0,0.08); z-index: 9001; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; font-size: 12px; }
  .nav-hamburger { display: flex; }
  section { padding: 56px 20px; }
  .page-hero { padding: 48px 20px 44px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wrap { padding: 28px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  footer { padding: 48px 20px 28px; }
  .stat-strip { flex-wrap: wrap; }
  .stat-item { flex: 1 1 45%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
}
