@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500;1,600&display=swap');

:root {
  --bg: #171719;
  --panel: #202023;
  --panel-2: #252528;
  --text: #f7f4ef;
  --muted: #bbb5b0;
  --orange: #f39a32;
  --pink: #e06ad8;
  --blue: #62a9ff;
  --line: rgba(255,255,255,.12);
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 5vw;
  background: rgba(23,23,25,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand img { width: 86px; height: 64px; object-fit: cover; object-position: center; border-radius: 8px; }
.nav { display: flex; align-items: center; gap: 28px; font-size: .92rem; }
.nav a { color: #ddd8d2; }
.nav a:hover { color: white; }
.nav-cta { padding: 10px 17px; border: 1px solid rgba(243,154,50,.65); border-radius: 999px; }
.menu-toggle { display: none; background: none; border: 0; color: white; font-size: 1.7rem; }

.hero {
  min-height: 88vh; position: relative; display: grid; place-items: center;
  overflow: hidden; text-align: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(98,169,255,.10), transparent 25%),
    radial-gradient(circle at 30% 40%, rgba(224,106,216,.08), transparent 24%),
    linear-gradient(180deg, #171719, #1b1b1d);
}
.hero-content { max-width: 900px; padding: 90px 24px 110px; position: relative; z-index: 2; }
.eyebrow { letter-spacing: .2em; font-size: .73rem; font-weight: 700; color: var(--orange); margin: 0 0 16px; }
h1, h2, h3 { margin-top: 0; line-height: 1.05; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; }
h1 { font-size: clamp(3.1rem, 7vw, 6.6rem); margin-bottom: 24px; }
h1 span, h2 em { font-style: italic; color: #f7d7ad; }
.hero-copy { max-width: 650px; margin: 0 auto 32px; color: var(--muted); font-size: 1.08rem; }
.hero-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 0 23px; border-radius: 999px;
  font-weight: 700; border: 1px solid transparent; cursor: pointer;
}
.button-primary {
  background: linear-gradient(135deg, var(--orange), #f4bd5e);
  color: #191817;
  box-shadow: 0 10px 35px rgba(243,154,50,.16);
}
.button-ghost { border-color: var(--line); color: var(--text); }
.button:hover { transform: translateY(-1px); }
.service-area { margin-top: 42px; display: flex; justify-content: center; gap: 13px; color: #99938e; font-size: .85rem; }
.service-area i { color: var(--orange); font-style: normal; }
.hero-glow { position: absolute; width: 300px; height: 300px; border-radius: 50%; filter: blur(90px); opacity: .22; }
.glow-one { background: var(--pink); left: 5%; top: 35%; }
.glow-two { background: var(--blue); right: 5%; bottom: 20%; }

.section { max-width: var(--max); margin: auto; padding: 100px 24px; }
.intro { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: end; }
h2 { font-size: clamp(2.4rem, 5vw, 4.3rem); margin-bottom: 12px; }
.intro-text { color: var(--muted); font-size: 1.08rem; max-width: 540px; margin: 0; }
.centered { text-align: center; }
.dark-section { max-width: none; background: #121214; padding-left: 5vw; padding-right: 5vw; }
.dark-section > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 45px; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: 22px; padding: 32px; }
.icon { font-size: 2rem; margin-bottom: 22px; }
.card h3 { font-family: "Playfair Display", Georgia, serif; font-size: 1.7rem; }
.card p, .card li { color: var(--muted); }
.card ul { padding-left: 18px; margin-bottom: 0; }
.events-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.events-copy p:not(.eyebrow) { color: var(--muted); max-width: 540px; }
.text-link { color: #f7d7ad; font-weight: 700; }
.event-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.event-grid span { padding: 20px; border: 1px solid var(--line); border-radius: 14px; color: #d8d2cd; background: rgba(255,255,255,.025); }
.about-section { padding-top: 20px; }
.about-box { border: 1px solid var(--line); border-radius: 28px; padding: 55px; background: linear-gradient(135deg, #232326, #1b1b1e); display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.about-box p:last-child { color: var(--muted); margin: 0; }
.quote-banner { padding: 70px 5vw; display: flex; align-items: center; justify-content: space-between; gap: 40px; background: linear-gradient(110deg, #211e1b, #272127); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.quote-banner h2 { max-width: 700px; font-size: clamp(2.2rem, 4vw, 3.6rem); }
.quote-banner p:not(.eyebrow) { color: var(--muted); }
.contact-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.contact-copy h2 { font-size: clamp(2.8rem, 5vw, 4.4rem); }
.contact-copy > p:not(.eyebrow) { color: var(--muted); }
.contact-details { display: grid; gap: 12px; margin-top: 30px; }
.contact-details a, .contact-details span { color: #ddd8d2; }
.quote-form { display: grid; gap: 16px; }
.quote-form label { display: grid; gap: 7px; color: #ddd8d2; font-size: .9rem; font-weight: 600; }
input, select, textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 15px; background: #111113; color: white;
  font: inherit; outline: none;
}
input:focus, select:focus, textarea:focus { border-color: rgba(243,154,50,.7); }
textarea { resize: vertical; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.full { width: 100%; border: 0; }
.form-note { color: #77716d; font-size: .76rem; margin: -4px 0 0; }
.success { color: #f7d7ad; }
.footer {
  padding: 35px 5vw; border-top: 1px solid var(--line); color: #9d9792;
  display: grid; grid-template-columns: 1fr auto; gap: 8px 30px; align-items: center;
}
.footer strong { display: block; color: white; }
.footer-links { display: flex; gap: 22px; }
.footer p { grid-column: 1 / -1; margin: 15px 0 0; font-size: .8rem; }

@media (max-width: 800px) {
  .nav { display: none; position: absolute; top: 89px; left: 0; right: 0; padding: 18px 24px 25px; background: #171719; border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; }
  .nav.open { display: flex; }
  .nav a { padding: 9px 0; }
  .menu-toggle { display: block; }
  .intro, .events-section, .about-box, .contact-section { grid-template-columns: 1fr; gap: 35px; }
  .cards { grid-template-columns: 1fr; }
  .quote-banner { flex-direction: column; align-items: flex-start; }
  .footer { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
}
@media (max-width: 520px) {
  .brand img { width: 74px; height: 54px; }
  .hero-content { padding-top: 65px; }
  .service-area { flex-wrap: wrap; }
  .two-col { grid-template-columns: 1fr; }
  .about-box { padding: 30px; }
  .event-grid { grid-template-columns: 1fr; }
}
