:root {
  --bg: #08080b;
  --bg-soft: #111119;
  --text: #f7f3ee;
  --muted: #b9b2aa;
  --paper: #ffffff;
  --ink: #161318;
  --ink-soft: #5c5660;
  --line: rgba(255,255,255,.14);
  --gold: #d7a74d;
  --red: #bf1f36;
  --shadow: 0 24px 70px rgba(0,0,0,.22);
  --radius: 26px;
  --container: 1160px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px max(20px, calc((100vw - var(--container)) / 2));
  background: rgba(8,8,11,.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  color: var(--text);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: .02em; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--red));
  color: #fff;
  font-size: .86rem;
}
.main-nav { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.main-nav a {
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  font-size: .92rem;
}
.main-nav a:hover { background: rgba(255,255,255,.1); color: #fff; }
.section { padding: 96px 0; }
.section-dark { background: var(--bg); color: var(--text); }
.section-muted { background: #f4f0ea; }
.hero { position: relative; overflow: hidden; padding: 104px 0 88px; }
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,11,.98) 0%, rgba(8,8,11,.83) 46%, rgba(8,8,11,.38) 100%),
    url('../img/slide/005.jpg') center/cover;
  transform: scale(1.02);
}
.hero::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -160px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215,167,77,.35), transparent 66%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 56px;
  align-items: center;
}
.hero-copy h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.04;
  margin: 0;
  letter-spacing: -.04em;
}
.hero-copy h1 { max-width: 760px; font-size: clamp(3rem, 7vw, 6.6rem); }
h2 { font-size: clamp(2.3rem, 4vw, 4rem); }
h3 { margin: 0 0 12px; line-height: 1.2; font-size: 1.25rem; }
p { margin: 0 0 18px; }
.lead { max-width: 660px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.28rem); margin-top: 28px; }
.eyebrow {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: linear-gradient(135deg, var(--red), #e44d3f); color: #fff; box-shadow: 0 18px 36px rgba(191,31,54,.26); }
.btn.secondary { background: rgba(255,255,255,.1); color: #fff; border: 1px solid var(--line); }
.hero-card {
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.09);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero-card img { aspect-ratio: 4/5; object-fit: cover; border-radius: 20px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.hero-stats span {
  padding: 14px 10px;
  border-radius: 16px;
  background: rgba(0,0,0,.32);
  color: var(--muted);
  font-size: .77rem;
  line-height: 1.25;
}
.hero-stats strong { display: block; color: #fff; font-size: 1.02rem; }
.split {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.content-card {
  padding: 38px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 18px 55px rgba(10,10,20,.08);
  color: var(--ink-soft);
  font-size: 1.04rem;
}
.content-card strong { color: var(--ink); }
.section-heading { max-width: 820px; margin-bottom: 42px; }
.section-heading.narrow { max-width: 720px; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature-card {
  min-height: 280px;
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 12px 35px rgba(0,0,0,.05);
}
.card-number {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--red);
  font-weight: 900;
  letter-spacing: .1em;
}
.feature-card p { color: var(--ink-soft); font-size: .96rem; }
.event-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 54px;
  align-items: center;
}
.event-image { position: relative; }
.event-image::before {
  content: "";
  position: absolute;
  inset: 24px -22px -22px 24px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold), var(--red));
}
.event-image img { position: relative; border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 5/4; object-fit: cover; }
.event-list { display: grid; gap: 12px; margin-top: 30px; }
.event-list a {
  padding: 16px 18px;
  border-radius: 18px;
  background: #f4f0ea;
  border: 1px solid rgba(0,0,0,.08);
  font-weight: 750;
}
.event-list a:hover { background: #efe5d8; }
.media-grid {
  display: grid;
  grid-template-columns: 1.45fr .75fr;
  gap: 24px;
  align-items: stretch;
}
.video-card, .testimonial-links {
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.video-card iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }
.testimonial-links { padding: 30px; }
.testimonial-links h3 { color: #fff; }
.testimonial-links ul { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 10px; }
.testimonial-links a { color: var(--muted); }
.testimonial-links a:hover { color: var(--gold); }
.photo-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.photo-strip img { height: 180px; width: 100%; object-fit: cover; border-radius: 20px; filter: saturate(1.05); }
.contact-section { background: linear-gradient(180deg, #fff, #f6f0e8); }
.contact-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 48px;
  align-items: start;
}
.contact-box {
  margin-top: 28px;
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(10,10,20,.08);
  border: 1px solid rgba(0,0,0,.08);
}
.contact-box a { color: var(--red); font-weight: 800; }
.social-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.social-links a {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--bg);
  color: #fff;
  font-weight: 800;
  font-size: .92rem;
}
.contact-form {
  display: grid;
  gap: 14px;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--bg);
  color: #fff;
  box-shadow: var(--shadow);
}
.contact-form label { display: grid; gap: 7px; color: var(--muted); font-weight: 750; font-size: .9rem; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 14px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font: inherit;
  outline: none;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); }
.contact-form small { color: rgba(255,255,255,.55); line-height: 1.45; }
.site-footer { padding: 28px 0; background: #050507; color: var(--muted); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-grid p { margin: 0; }
.footer-grid a { color: var(--gold); font-weight: 800; }
@media (max-width: 980px) {
  .site-header { position: static; align-items: flex-start; flex-direction: column; }
  .main-nav { justify-content: flex-start; }
  .hero-grid, .split, .event-layout, .media-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 560px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 68px 0; }
  .hero { padding: 72px 0; }
  .hero-copy h1 { font-size: clamp(2.5rem, 14vw, 4.2rem); }
  .hero-actions, .footer-grid { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .hero-stats, .cards-grid, .photo-strip { grid-template-columns: 1fr; }
  .content-card, .feature-card, .contact-form, .contact-box { padding: 24px; }
  .video-card iframe { min-height: 250px; }
  .photo-strip img { height: 240px; }
}
