/* ============================================================
   Matt Rooney DJ — shared stylesheet
   Aesthetic: premium evening-event, deep warm dark + champagne gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..700;1,9..144,300..600&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --bg:        #0e0b09;
  --bg-2:      #15110d;
  --panel:     #1b1610;
  --panel-2:   #221b14;
  --line:      rgba(201, 163, 94, 0.18);
  --gold:      #c9a35e;
  --gold-soft: #e3c793;
  --gold-deep: #a07e3f;
  --text:      #f4ede1;
  --muted:     #b3a892;
  --muted-2:   #8a7f6d;
  --maxw:      1180px;
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* subtle warm grain / glow atmosphere */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(60% 50% at 80% -5%, rgba(201,163,94,0.10), transparent 70%),
    radial-gradient(50% 40% at 0% 100%, rgba(201,163,94,0.06), transparent 70%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); }
.section { position: relative; z-index: 1; padding: clamp(64px, 11vw, 140px) 0; }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: 'Fraunces', serif; font-weight: 400; line-height: 1.04; letter-spacing: -0.01em; }

.eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.lede { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--muted); max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: 'Outfit', sans-serif; font-weight: 500;
  font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 1.05em 1.9em; border-radius: 2px;
  transition: all 0.4s var(--ease);
  cursor: pointer; border: 1px solid transparent;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #1a1409;
  box-shadow: 0 10px 40px -12px rgba(201,163,94,0.5);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 50px -10px rgba(201,163,94,0.65); }
.btn-ghost { border-color: var(--line); color: var(--text); background: transparent; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); }
.btn .arrow { transition: transform 0.4s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 48px);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(14, 11, 9, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px clamp(20px, 5vw, 48px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand .name {
  font-family: 'Fraunces', serif; font-size: 1.32rem; font-weight: 500;
  letter-spacing: 0.02em; color: var(--text);
}
.brand .name b { color: var(--gold); font-weight: 500; }
.brand .sub {
  font-family: 'Outfit', sans-serif; font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.42em; text-transform: uppercase; color: var(--muted-2);
  margin-top: 5px; padding-left: 2px;
}
.nav-links { display: flex; align-items: center; gap: 2.4rem; }
.nav-links a {
  font-size: 0.8rem; font-weight: 400; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
  position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--gold); transition: width 0.35s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links .btn { padding: 0.8em 1.4em; }
.nav-links .btn::after { display: none; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; flex-direction: column; justify-content: center; gap: 6px;
}
.nav-toggle span { display: block; height: 1.5px; width: 26px; background: var(--text); transition: all 0.35s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  z-index: 1; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.42) saturate(1.05); }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,11,9,0.55) 0%, rgba(14,11,9,0.35) 40%, rgba(14,11,9,0.95) 100%);
}
.hero-inner { padding-top: 80px; max-width: 920px; }
.hero h1 {
  font-size: clamp(2.9rem, 9vw, 6.6rem);
  font-weight: 300; letter-spacing: -0.02em; margin: 1.2rem 0;
}
.hero h1 em { font-style: italic; color: var(--gold-soft); font-weight: 400; }
.hero .lede { font-size: clamp(1.1rem, 1.9vw, 1.4rem); color: var(--text); opacity: 0.9; max-width: 56ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.6rem; }
.hero-meta {
  position: absolute; bottom: 38px; left: clamp(20px, 5vw, 48px); right: clamp(20px, 5vw, 48px);
  display: flex; gap: 2.4rem; flex-wrap: wrap; align-items: center;
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
  border-top: 1px solid var(--line); padding-top: 22px;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 0.6em; }
.hero-meta b { color: var(--gold); font-weight: 500; }

/* ============================================================
   ABOUT / WELCOME
   ============================================================ */
.about-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 6vw, 90px); align-items: center;
}
.about h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); margin-bottom: 1.6rem; }
.about p { color: var(--muted); margin-bottom: 1.1rem; }
.about p strong { color: var(--text); font-weight: 500; }
.about-img { position: relative; }
.about-img img { width: 100%; border-radius: 4px; border: 1px solid var(--line); }
.about-img::before {
  content: ""; position: absolute; inset: 16px -16px -16px 16px;
  border: 1px solid var(--gold); border-radius: 4px; z-index: -1; opacity: 0.4;
}

/* ---------- stat strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; margin-top: clamp(48px, 7vw, 90px); }
.stat { background: var(--bg); padding: clamp(26px, 3.5vw, 42px) clamp(18px, 2.5vw, 30px); }
.stat .num { font-family: 'Fraunces', serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--gold-soft); font-weight: 400; }
.stat .lbl { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 0.4rem; }

/* ============================================================
   SERVICES / PRICING
   ============================================================ */
.alt { background: var(--bg-2); }
.head-center { text-align: center; max-width: 64ch; margin: 0 auto clamp(48px, 6vw, 80px); }
.head-center .eyebrow { justify-content: center; }
.head-center h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
.head-center p { color: var(--muted); margin-top: 1.2rem; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.5vw, 28px); }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 5px;
  padding: clamp(28px, 3.5vw, 42px); transition: transform 0.45s var(--ease), border-color 0.45s var(--ease);
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.45s;
}
.card:hover { transform: translateY(-6px); border-color: var(--gold-deep); }
.card:hover::before { opacity: 1; }
.card .ic { font-size: 1.6rem; margin-bottom: 1.2rem; }
.card h3 { font-size: 1.5rem; margin-bottom: 0.8rem; }
.card p { color: var(--muted); font-size: 0.97rem; }

.pricing-banner {
  margin-top: clamp(40px, 5vw, 64px);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem;
  background: linear-gradient(120deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line); border-radius: 5px;
  padding: clamp(30px, 4vw, 50px);
}
.pricing-banner .price { font-family: 'Fraunces', serif; font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--gold-soft); }
.pricing-banner .price small { font-family: 'Outfit', sans-serif; display: block; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.4rem; }
.pricing-banner p { color: var(--muted); max-width: 44ch; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(10px, 1.4vw, 16px); grid-auto-flow: dense; }
.gallery-grid .g-item { overflow: hidden; border-radius: 4px; border: 1px solid var(--line); position: relative; background: var(--panel); }
.gallery-grid .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease), filter 0.7s var(--ease); }
.gallery-grid .g-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(14,11,9,0.55));
  opacity: 0; transition: opacity 0.5s;
}
.gallery-grid .g-item:hover img { transform: scale(1.06); }
.gallery-grid .g-item:hover::after { opacity: 1; }
.span-6 { grid-column: span 6; } .span-4 { grid-column: span 4; } .span-8 { grid-column: span 8; }
.span-12 { grid-column: span 12; }
.tall { grid-row: span 2; }
.g-item.tall img, .g-item.wide img { min-height: 100%; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 2.5vw, 28px); }
.quote {
  background: var(--panel); border: 1px solid var(--line); border-radius: 5px;
  padding: clamp(30px, 4vw, 46px); position: relative; transition: border-color 0.4s, transform 0.4s var(--ease);
}
.quote:hover { border-color: var(--gold-deep); transform: translateY(-4px); }
.quote .mark { font-family: 'Fraunces', serif; font-size: 4rem; line-height: 0.4; color: var(--gold); opacity: 0.4; height: 28px; display: block; }
.quote p { font-family: 'Fraunces', serif; font-size: clamp(1.1rem, 1.7vw, 1.4rem); font-weight: 300; font-style: italic; color: var(--text); margin: 1rem 0 1.6rem; line-height: 1.45; }
.quote .by { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.quote .stars { color: var(--gold); letter-spacing: 0.25em; font-size: 0.85rem; margin-bottom: 0.4rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.contact-info h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 1.4rem; }
.contact-info p { color: var(--muted); margin-bottom: 2rem; }
.info-row { display: flex; align-items: flex-start; gap: 1rem; padding: 1.1rem 0; border-top: 1px solid var(--line); }
.info-row:last-child { border-bottom: 1px solid var(--line); }
.info-row .k { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); width: 90px; flex-shrink: 0; padding-top: 3px; }
.info-row .v { color: var(--text); }
.info-row .v a:hover { color: var(--gold-soft); }

.form { background: var(--panel); border: 1px solid var(--line); border-radius: 6px; padding: clamp(26px, 3.5vw, 44px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.55rem; }
.field label .req { color: var(--gold); }
.field input, .field textarea, .field select {
  width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: 3px;
  color: var(--text); font-family: 'Outfit', sans-serif; font-size: 0.95rem; font-weight: 300;
  padding: 0.85em 1em; transition: border-color 0.3s, background 0.3s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); background: var(--bg-2); }
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.form .btn { width: 100%; justify-content: center; margin-top: 0.6rem; }
.form-status { margin-top: 1rem; font-size: 0.9rem; text-align: center; min-height: 1.2em; }
.form-status.ok { color: var(--gold-soft); }
.form-status.err { color: #e0816b; }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta {
  text-align: center;
  background:
    radial-gradient(70% 120% at 50% 0%, rgba(201,163,94,0.14), transparent 65%),
    var(--bg-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.cta h2 { font-size: clamp(2.2rem, 5.5vw, 4rem); margin-bottom: 1.4rem; }
.cta h2 em { font-style: italic; color: var(--gold-soft); }
.cta p { color: var(--muted); max-width: 48ch; margin: 0 auto 2.4rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg); border-top: 1px solid var(--line); padding: clamp(48px, 7vw, 80px) 0 36px; position: relative; z-index: 1; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2.4rem; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.footer .brand .name { font-size: 1.5rem; }
.footer-col h4 { font-family: 'Outfit', sans-serif; font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 1.1rem; font-weight: 500; }
.footer-col a, .footer-col p { display: block; color: var(--muted); margin-bottom: 0.6rem; font-size: 0.95rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold-soft); }
.socials { display: flex; gap: 0.8rem; }
.socials a {
  width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--muted);
  transition: all 0.35s var(--ease);
}
.socials a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 28px; font-size: 0.82rem; color: var(--muted-2); }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-head { padding: clamp(130px, 18vw, 200px) 0 clamp(40px, 6vw, 72px); position: relative; z-index: 1; }
.page-head h1 { font-size: clamp(2.6rem, 7vw, 5rem); font-weight: 300; }
.page-head h1 em { font-style: italic; color: var(--gold-soft); }
.page-head p { color: var(--muted); max-width: 58ch; margin-top: 1.2rem; font-size: 1.08rem; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav-links { 
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 340px); flex-direction: column;
    align-items: flex-start; justify-content: center; gap: 1.8rem;
    background: var(--bg-2); border-left: 1px solid var(--line);
    padding: 0 clamp(28px, 7vw, 48px); transform: translateX(100%);
    transition: transform 0.45s var(--ease); z-index: 90;
  }
  .nav-links.open { transform: none; }
  .nav-links a { font-size: 1.1rem; }
  .nav-toggle { display: flex; z-index: 95; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-img { order: -1; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .gallery-grid .g-item { grid-column: span 12 !important; grid-row: auto !important; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .hero-meta { gap: 1.2rem; font-size: 0.7rem; }
  .pricing-banner { flex-direction: column; align-items: flex-start; }
}

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
