:root {
  --bg: #0b0b10;
  --bg-soft: #15151d;
  --paper: #f4efe7;
  --paper-soft: #fff7ec;
  --red: #c5162e;
  --red-dark: #8e0f24;
  --blue: #09a9d6;
  --ink: #101015;
  --muted: #b7b0ad;
  --line: rgba(255,255,255,.16);
  --shadow: 0 22px 70px rgba(0,0,0,.35);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--paper);
  background: var(--bg);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 54px);
  background: linear-gradient(to bottom, rgba(8,8,12,.9), rgba(8,8,12,.35), transparent);
  backdrop-filter: blur(10px);
}
.brand { display: flex; gap: 12px; align-items: center; font-weight: 800; letter-spacing: .02em; }
.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(9,169,214,.38);
}
.main-nav { display: flex; gap: 26px; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.main-nav a { opacity: .82; transition: opacity .2s ease, color .2s ease; }
.main-nav a:hover { opacity: 1; color: var(--blue); }
.nav-toggle { display: none; border: 0; background: rgba(255,255,255,.08); color: white; border-radius: 12px; font-size: 24px; padding: 6px 12px; }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background-image: url('assets/road-05.jpeg');
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  filter: saturate(1.08) contrast(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 25%, rgba(9,169,214,.35), transparent 28%),
    linear-gradient(90deg, rgba(5,5,8,.88), rgba(5,5,8,.55) 42%, rgba(197,22,46,.24)),
    linear-gradient(0deg, rgba(11,11,16,1), transparent 40%);
}
.hero-content {
  position: relative;
  max-width: 920px;
  padding: 150px clamp(22px, 6vw, 80px) 90px;
}
.eyebrow, .section-kicker {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 800;
  margin: 0 0 16px;
}
h1, h2, h3 { margin: 0; line-height: .95; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; }
h1 { font-size: clamp(58px, 11vw, 150px); max-width: 900px; letter-spacing: -.06em; }
h2 { font-size: clamp(38px, 7vw, 88px); letter-spacing: -.045em; }
h3 { font-size: 26px; }
.lead { max-width: 720px; font-size: clamp(19px, 2.4vw, 29px); margin: 26px 0 0; color: rgba(255,255,255,.88); }
.hero-actions, .contact-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .02em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--red); color: white; box-shadow: 0 14px 38px rgba(197,22,46,.35); }
.button.ghost { border: 1px solid rgba(255,255,255,.42); background: rgba(255,255,255,.06); }
.button.ghost.dark { border-color: rgba(0,0,0,.25); background: rgba(0,0,0,.05); color: var(--ink); }

.section { padding: clamp(70px, 9vw, 130px) clamp(20px, 5vw, 70px); }
.intro-section { background: var(--paper); color: var(--ink); }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr); gap: clamp(30px, 6vw, 80px); align-items: start; }
.text-block { font-size: 19px; color: rgba(16,16,21,.78); }
.text-block p:first-child { margin-top: 0; }
.text-block p:last-child { margin-bottom: 0; }

.dark-section { background: linear-gradient(180deg, #0b0b10, #12121a); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 34px; margin-bottom: 34px; }
.section-head p { max-width: 570px; color: var(--muted); margin: 0; font-size: 18px; }
.section-head.compact { margin-bottom: 28px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 14px;
}
figure { margin: 0; position: relative; overflow: hidden; border-radius: 24px; background: #222; box-shadow: var(--shadow); }
figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, filter .45s ease; }
figure:hover img { transform: scale(1.055); filter: saturate(1.12); }
figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.55);
  color: white;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.wide { grid-column: span 2; }
.tall { grid-row: span 2; }

.band-section { background: var(--bg); }
.members-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.member-card { background: var(--bg-soft); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.member-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; filter: contrast(1.04) saturate(1.03); }
.member-info { padding: 22px; }
.member-info p { margin: 6px 0 0; color: var(--blue); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; }

.quote-section {
  min-height: 390px;
  display: grid;
  place-items: center;
  padding: 60px 24px;
  text-align: center;
  background:
    linear-gradient(rgba(10,10,15,.35), rgba(10,10,15,.8)),
    url('assets/road-03.jpeg') center/cover fixed;
}
.quote-section p {
  font-family: "Playfair Display", Georgia, serif;
  max-width: 980px;
  font-size: clamp(38px, 7vw, 82px);
  line-height: 1;
  margin: 0;
  letter-spacing: -.045em;
}

.contact-section { background: var(--paper); color: var(--ink); }
.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  background: var(--paper-soft);
  border-radius: 34px;
  padding: clamp(28px, 5vw, 60px);
  box-shadow: 0 24px 70px rgba(30,20,10,.13);
}
.contact-card p { max-width: 620px; color: rgba(16,16,21,.72); font-size: 18px; }
.contact-actions { justify-content: flex-end; margin-top: 0; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 70px);
  background: #07070a;
  color: rgba(255,255,255,.62);
  font-size: 14px;
}
.site-footer p { margin: 0; }

@media (max-width: 980px) {
  .split, .contact-card { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .section-head p { margin-top: 18px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 230px; }
  .members-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-actions { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .brand-logo { width: 50px; height: 50px; }
  .site-header { background: rgba(8,8,12,.88); }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 74px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 14px;
    border-radius: 20px;
    background: rgba(12,12,18,.96);
    border: 1px solid var(--line);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 10px; }
  .hero-content { padding: 135px 22px 70px; }
  .lead { font-size: 19px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .wide, .tall { grid-column: auto; grid-row: auto; }
  .members-grid { grid-template-columns: 1fr; }
  .site-footer { display: block; }
  .site-footer p + p { margin-top: 8px; }
}
