/* ============================================================
   LAVISH LIFE EVENTS — Stylesheet
   Ritz-Carlton Reserve world · Cormorant Garamond + Deep Wine
   ============================================================ */

@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,500&family=Inter:wght@300;400;500&display=swap');

:root {
  --ink: #1a1410;
  --ink-deep: #0f0a08;
  --cream: #f4ede0;
  --cream-warm: #ebe2d2;
  --wine: #6b1f2e;
  --wine-deep: #4a1320;
  --gold: #a8884a;
  --gold-soft: #c9a961;
  --muted: #5a4d3a;
  --muted-light: #a89a7a;
  --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- Typography utilities ---------- */
.serif { font-family: var(--font-serif); }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 3.5px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--wine);
}
.eyebrow--gold { color: var(--gold); }
.rule {
  width: 40px;
  height: 1px;
  background: var(--wine);
  margin: 0 auto 18px;
  border: 0;
}
.rule--gold { background: var(--gold); }
.rule--left { margin-left: 0; margin-right: auto; }

/* ---------- Layout ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 32px; }
.section--tight { padding: 64px 32px; }
.section--ink { background: var(--ink); color: var(--cream); }
.section--cream-warm { background: var(--cream-warm); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 237, 224, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 0.5px solid rgba(26, 20, 16, 0.12);
}
.site-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--ink);
}
.brand small {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--muted-light);
  margin-left: 6px;
  font-weight: 500;
}
.nav { display: flex; gap: 28px; align-items: center; }
.nav a {
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--wine);
  transition: width 0.4s ease;
}
.nav a:hover { color: var(--wine); }
.nav a:hover::after { width: 100%; }
.nav a.cta {
  background: var(--ink);
  color: var(--cream);
  padding: 10px 20px;
  font-weight: 500;
  transition: background 0.3s ease;
}
.nav a.cta:hover { background: var(--wine); color: var(--cream); }
.nav a.cta::after { display: none; }
.nav-toggle {
  display: none;
  font-size: 22px;
  color: var(--ink);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: all 0.35s ease;
  border: 1px solid transparent;
}
.btn--dark {
  background: var(--ink);
  color: var(--cream);
}
.btn--dark:hover { background: var(--wine); }
.btn--gold {
  background: var(--gold);
  color: var(--ink);
}
.btn--gold:hover { background: var(--gold-soft); }
.btn--ghost-light {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost-light:hover { background: var(--ink); color: var(--cream); }
.btn--ghost-dark {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn--ghost-dark:hover { background: var(--cream); color: var(--ink); }
.text-link {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  transition: color 0.3s ease;
}
.text-link:hover { color: var(--wine); }
.section--ink .text-link { color: var(--gold); }
.section--ink .text-link:hover { color: var(--gold-soft); }

/* ---------- Hero ---------- */
.hero {
  padding: 120px 32px 110px;
  text-align: center;
  background: var(--cream);
}
.hero h1 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: var(--ink);
}
.hero h1 em {
  font-weight: 400;
  font-style: italic;
  color: var(--wine);
}
.hero__sub {
  font-size: 14px;
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.85;
}
.hero__actions { display: inline-flex; gap: 24px; align-items: center; flex-wrap: wrap; justify-content: center; }

/* ---------- Marquee / proof bar ---------- */
.proof-bar {
  background: var(--cream-warm);
  padding: 24px 32px;
  display: flex;
  justify-content: center;
  gap: 56px;
  font-size: 10px;
  letter-spacing: 2.8px;
  color: var(--muted);
  text-transform: uppercase;
  flex-wrap: wrap;
}
.proof-bar .dot { color: var(--wine); }

/* ---------- Section headers ---------- */
.section-head { text-align: center; margin-bottom: 56px; }
.section-head--left { text-align: left; }
.section-head h2 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(32px, 4.5vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.3px;
  color: var(--ink);
}
.section-head em { font-weight: 400; font-style: italic; color: var(--wine); }
.section--ink .section-head h2 { color: var(--cream); }
.section--ink .section-head em { color: var(--gold); }

/* ---------- Philosophy / centered prose ---------- */
.prose-block { max-width: 560px; margin: 0 auto; text-align: center; }
.prose-block p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1em;
}
.section--ink .prose-block p { color: var(--muted-light); }

/* ---------- Services grid ---------- */
.services {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: rgba(168, 136, 74, 0.18);
}
.service {
  background: var(--ink);
  padding: 44px 32px;
  transition: background 0.5s ease;
}
.service:hover { background: #221814; }
.service__num {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 18px;
}
.service__title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 14px;
}
.service__copy {
  font-size: 13px;
  color: var(--muted-light);
  line-height: 1.85;
  margin-bottom: 26px;
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 10px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.gallery__tile {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery__tile--big { grid-row: span 2; }
.gallery__tile .placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.gallery__tile .placeholder span {
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
}
.gallery__tile--wine .placeholder span { color: var(--cream); }
.bg-1 { background: linear-gradient(180deg, #3a2530 0%, #1a1410 100%); }
.bg-2 { background: linear-gradient(180deg, #5a3a3a 0%, #2a1810 100%); }
.bg-3 { background: linear-gradient(180deg, #4a3030 0%, #1a1410 100%); }
.bg-4 { background: linear-gradient(180deg, #6b1f2e 0%, #2a0810 100%); }
.bg-5 { background: linear-gradient(180deg, #3a2a25 0%, #1a1410 100%); }

/* ---------- Quote / testimonial ---------- */
.quote { text-align: center; max-width: 640px; margin: 0 auto; }
.quote__stars {
  font-size: 22px;
  color: var(--wine);
  letter-spacing: 8px;
  margin-bottom: 22px;
}
.quote__text {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 28px;
}
.quote__attr {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--wine);
  font-weight: 500;
  text-transform: uppercase;
}

/* ---------- Final CTA ---------- */
.final-cta { text-align: center; }
.final-cta h2 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(38px, 5.5vw, 58px);
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.final-cta h2 em { font-weight: 400; font-style: italic; color: var(--gold); }
.final-cta p {
  font-size: 13px;
  color: var(--muted-light);
  max-width: 400px;
  margin: 0 auto 40px;
  line-height: 1.85;
}
.final-cta__phone {
  margin-top: 30px;
  font-size: 10px;
  letter-spacing: 2.8px;
  color: var(--muted);
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 40px 32px;
  background: var(--ink-deep);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.site-footer a { color: var(--muted); transition: color 0.3s ease; }
.site-footer a:hover { color: var(--gold); }
.site-footer__socials { display: flex; gap: 24px; }

/* ---------- Inner-page hero (about, services, journal) ---------- */
.page-hero {
  padding: 120px 32px 80px;
  text-align: center;
  background: var(--cream);
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(44px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.8px;
  color: var(--ink);
  margin-bottom: 20px;
}
.page-hero h1 em { font-weight: 400; font-style: italic; color: var(--wine); }
.page-hero p {
  max-width: 520px;
  margin: 0 auto;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
}

/* ---------- About specific ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
.about-portrait {
  aspect-ratio: 3/4;
  background: linear-gradient(180deg, #3a2530 0%, #1a1410 100%);
  position: relative;
}
.about-portrait::after {
  content: 'DJ PECK';
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
}
.about-prose h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 26px;
  margin: 32px 0 14px;
  color: var(--ink);
}
.about-prose h3:first-child { margin-top: 0; }
.about-prose p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.95;
  margin-bottom: 16px;
}
.values-list {
  list-style: none;
  margin-top: 16px;
}
.values-list li {
  padding: 14px 0;
  border-bottom: 0.5px solid rgba(26, 20, 16, 0.15);
  font-size: 14px;
  color: var(--ink);
  display: flex;
  gap: 18px;
  align-items: baseline;
}
.values-list li:last-child { border-bottom: 0; }
.values-list li::before {
  content: counter(val, upper-roman) '.';
  counter-increment: val;
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--wine);
  min-width: 28px;
}
.values-list { counter-reset: val; }

/* ---------- Services page ---------- */
.svc-block {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding: 80px 0;
  border-bottom: 0.5px solid rgba(26, 20, 16, 0.12);
  align-items: start;
}
.svc-block:last-child { border-bottom: 0; }
.svc-block__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 96px;
  color: var(--wine);
  line-height: 1;
}
.svc-block h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 36px;
  margin-bottom: 18px;
  color: var(--ink);
}
.svc-block .lede {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 24px;
}
.svc-block ul {
  list-style: none;
  margin-bottom: 28px;
}
.svc-block ul li {
  padding: 10px 0;
  border-bottom: 0.5px solid rgba(26, 20, 16, 0.1);
  font-size: 13.5px;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.svc-block ul li::before {
  content: '◆';
  color: var(--gold);
  margin-right: 14px;
  font-size: 8px;
}

.pkg-note {
  padding: 32px;
  background: var(--cream-warm);
  border-left: 2px solid var(--wine);
  margin: 32px 0;
}
.pkg-note p { font-size: 14px; color: var(--ink); line-height: 1.8; }
.pkg-note strong { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--wine); font-size: 18px; }

/* ---------- Pricing tiers ---------- */
.tier-section {
  padding: 96px 0;
}
.tier-section .section-head { margin-bottom: 48px; }
.tier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  background: rgba(26, 20, 16, 0.12);
  max-width: var(--max-w);
  margin: 0 auto;
}
.tier {
  background: var(--cream);
  padding: 44px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.tier--featured {
  background: var(--ink);
  color: var(--cream);
}
.tier__roman {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 56px;
  color: var(--wine);
  line-height: 1;
  margin-bottom: 20px;
}
.tier--featured .tier__roman { color: var(--gold); }
.tier__name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 28px;
  margin-bottom: 6px;
  color: var(--ink);
}
.tier--featured .tier__name { color: var(--cream); }
.tier__tag {
  font-size: 9px;
  letter-spacing: 2.8px;
  color: var(--muted-light);
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 500;
}
.tier--featured .tier__tag { color: var(--gold); }
.tier__price {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 46px;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.8px;
  line-height: 1;
}
.tier--featured .tier__price { color: var(--cream); }
.tier__price-note {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted-light);
  margin-bottom: 28px;
  font-weight: 500;
}
.tier--featured .tier__price-note { color: var(--gold); }
.tier__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.tier__list li {
  padding: 12px 0;
  border-bottom: 0.5px solid rgba(26, 20, 16, 0.12);
  font-size: 13px;
  color: var(--ink);
  line-height: 1.55;
}
.tier__list li:last-child { border-bottom: 0; }
.tier__list li::before {
  content: '◆';
  color: var(--gold);
  margin-right: 12px;
  font-size: 7px;
  vertical-align: 1.5px;
}
.tier--featured .tier__list li {
  color: var(--muted-light);
  border-bottom-color: rgba(168, 136, 74, 0.15);
}
.tier__cta {
  font-size: 10px;
  letter-spacing: 2.5px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--wine);
  border-bottom: 1px solid var(--wine);
  padding-bottom: 3px;
  align-self: flex-start;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.tier--featured .tier__cta { color: var(--gold); border-bottom-color: var(--gold); }
.tier__cta:hover { color: var(--ink); border-bottom-color: var(--ink); }
.tier--featured .tier__cta:hover { color: var(--cream); border-bottom-color: var(--cream); }
.featured-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gold);
  color: var(--ink);
  font-size: 8px;
  letter-spacing: 2.5px;
  padding: 7px 14px;
  font-weight: 500;
  text-transform: uppercase;
}
.tier-footnote {
  text-align: center;
  margin-top: 36px;
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  font-family: var(--font-serif);
}

@media (max-width: 900px) {
  .tier-grid { grid-template-columns: 1fr; }
  .featured-badge { top: 0; right: 0; }
}

/* ---------- Journal page ---------- */
.journal-list { max-width: 760px; margin: 0 auto; }
.journal-entry {
  padding: 56px 0;
  border-bottom: 0.5px solid rgba(26, 20, 16, 0.12);
}
.journal-entry:last-child { border-bottom: 0; }
.journal-entry .date {
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--wine);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.journal-entry h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 16px;
}
.journal-entry p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 20px;
}
.song-list {
  list-style: none;
  counter-reset: song;
  margin: 24px 0;
}
.song-list li {
  counter-increment: song;
  padding: 16px 0;
  border-bottom: 0.5px solid rgba(26, 20, 16, 0.1);
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 20px;
  align-items: baseline;
}
.song-list li::before {
  content: counter(song, decimal-leading-zero);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--wine);
}
.song-list .song-title { font-family: var(--font-serif); font-size: 19px; color: var(--ink); }
.song-list .song-artist { font-size: 12px; color: var(--muted); letter-spacing: 0.5px; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  max-width: 1080px;
  margin: 0 auto;
}
.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  margin: 32px 0 8px;
  color: var(--ink);
}
.contact-info h3:first-child { margin-top: 0; }
.contact-info p, .contact-info a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}
.contact-info a:hover { color: var(--wine); }
.honeybook-frame {
  background: var(--cream-warm);
  padding: 8px;
  border: 0.5px solid rgba(26, 20, 16, 0.12);
  min-height: 600px;
}
.honeybook-frame iframe { width: 100%; min-height: 580px; border: 0; background: transparent; }

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; }
.reveal.in {
  animation: fadeUp 0.9s cubic-bezier(0.2, 0.6, 0.2, 1) forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }
.delay-5 { animation-delay: 0.7s; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .services { grid-template-columns: 1fr; }
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }
  .gallery__tile--big { grid-column: span 2; grid-row: span 1; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .svc-block { grid-template-columns: 1fr; gap: 24px; padding: 56px 0; }
  .svc-block__num { font-size: 64px; }
}

@media (max-width: 680px) {
  .section { padding: 64px 24px; }
  .hero { padding: 80px 24px 72px; }
  .page-hero { padding: 80px 24px 56px; }
  .site-header__inner { padding: 16px 24px; }
  .nav { display: none; position: fixed; top: 64px; left: 0; right: 0; background: var(--cream); flex-direction: column; padding: 24px; gap: 18px; border-bottom: 0.5px solid rgba(26,20,16,0.12); }
  .nav.open { display: flex; }
  .nav a { font-size: 13px; }
  .nav a.cta { align-self: flex-start; }
  .nav-toggle { display: block; }
  .proof-bar { gap: 24px; font-size: 9px; padding: 18px 24px; }
  .hero__actions { gap: 16px; }
  .gallery { grid-template-columns: 1fr; grid-template-rows: repeat(5, 180px); }
  .gallery__tile--big { grid-column: span 1; }
  .song-list li { grid-template-columns: 32px 1fr; }
  .song-list .song-artist { grid-column: 2; font-size: 11px; }
}
