:root {
  --bg: #0d0d0f;
  --paper: #f6efe3;
  --ink: #15110d;
  --muted: #b9aa95;
  --line: rgba(246,239,227,.18);
  --line-dark: rgba(21,17,13,.14);
  --gold: #d9a441;
  --green: #829c62;
  --panel: rgba(255,255,255,.065);
  --shadow: 0 24px 82px rgba(0,0,0,.44);
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--paper);
  font-family: var(--sans);
  line-height: 1.5;
}

a { color: inherit; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 58px);
  background: linear-gradient(to bottom, rgba(13,13,15,.78), rgba(13,13,15,.18));
  backdrop-filter: blur(12px);
}

.brand {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .16em;
  text-decoration: none;
}

.menu-button {
  display: none;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255,255,255,.06);
  color: var(--paper);
  padding: 7px 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 750;
}

.nav a:hover, .nav a.active {
  color: var(--paper);
  background: rgba(255,255,255,.08);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 120px clamp(20px, 6vw, 90px) clamp(46px, 7vw, 90px);
  overflow: hidden;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  filter: contrast(1.02) saturate(1.04);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(13,13,15,.92), rgba(13,13,15,.52) 46%, rgba(13,13,15,.12)),
    linear-gradient(0deg, rgba(13,13,15,.88), rgba(13,13,15,.08) 48%, rgba(13,13,15,.55));
}

.hero-copy {
  max-width: 920px;
}

.eyebrow,
.section-label,
.link-grid span,
.booking-number span {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1, h2, p { margin-top: 0; }
h1 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(82px, 18vw, 230px);
  line-height: .78;
  letter-spacing: .02em;
}

h2 {
  margin: 0 0 22px;
  max-width: 980px;
  font-size: clamp(38px, 6.8vw, 96px);
  line-height: .92;
  letter-spacing: 0;
}

.hero-line {
  max-width: 700px;
  color: rgba(246,239,227,.86);
  font-size: clamp(21px, 3vw, 36px);
  line-height: 1.16;
}

.hero-actions,
.booking-actions,
.release-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.primary {
  background: var(--gold);
  color: #171006;
  border-color: transparent;
}

.secondary {
  background: rgba(255,255,255,.06);
  color: var(--paper);
}

.scroll-cue {
  position: absolute;
  right: clamp(20px, 5vw, 70px);
  bottom: clamp(26px, 5vw, 66px);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  transform: rotate(90deg);
  transform-origin: right center;
}

.section {
  padding: clamp(72px, 10vw, 142px) clamp(20px, 6vw, 90px);
  border-top: 1px solid var(--line);
}

.identity {
  background: var(--paper);
  color: var(--ink);
}

.identity .section-label,
.releases .section-label,
.connect .section-label {
  color: #936d22;
}

.identity-copy {
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: start;
}

.identity-copy p,
.release-copy p,
.academy-grid p,
.note {
  max-width: 700px;
  color: #6b5b49;
  font-size: clamp(18px, 2vw, 24px);
}

.keyword-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
}

.keyword-row span {
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  padding: 9px 12px;
  color: #2b2118;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
}

.releases {
  background: #141315;
}

.release-layout {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 7vw, 110px);
  align-items: center;
}

.release-art {
  max-width: 420px;
}

.release-art img {
  width: 100%;
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.release-copy p,
.academy-grid p {
  color: var(--muted);
}

.soft-status {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--muted);
  font-weight: 750;
}

.media {
  background: #0f0f12;
}

.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, .8fr) minmax(220px, .8fr);
  gap: 14px;
}

.media-feature,
.media-card {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 20px;
  box-shadow: var(--shadow);
}

.media-feature {
  display: grid;
  align-content: end;
  background:
    linear-gradient(0deg, rgba(15,15,18,.92), rgba(15,15,18,.3)),
    url("assets/law28-facebook-profile.jpg") center / cover no-repeat;
}

.media-feature span,
.media-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.media-feature h2 {
  max-width: 800px;
  font-size: clamp(34px, 5.2vw, 76px);
}

.media-feature p,
.media-card p {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
}

.media-card {
  display: grid;
  align-content: end;
}

.media-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--paper);
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1;
}

.academy {
  background: #10140f;
}

.academy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(240px, .95fr);
  gap: clamp(28px, 7vw, 110px);
  align-items: center;
}

.academy-mark {
  min-height: 360px;
  display: grid;
  align-content: end;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(130,156,98,.4);
  border-radius: 8px;
  background:
    linear-gradient(0deg, rgba(16,20,15,.94), rgba(16,20,15,.2)),
    url("assets/law28-cover.svg") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.academy-mark span {
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 112px);
  line-height: .78;
}

.academy-mark strong {
  max-width: 360px;
  color: var(--gold);
  font-size: 18px;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: clamp(28px, 7vw, 110px);
  align-items: center;
  background: var(--paper);
  color: var(--ink);
}

.booking-copy h2 {
  max-width: 880px;
  font-size: clamp(36px, 5.6vw, 78px);
}

.booking-number {
  min-height: 220px;
  display: grid;
  align-content: center;
  padding: 22px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  color: var(--ink);
  text-decoration: none;
  background: #ead7b7;
}

.booking-number strong {
  display: block;
  font-size: clamp(28px, 4vw, 54px);
  line-height: .98;
}

.connect {
  background: #0d0d0f;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.link-grid a {
  min-height: 170px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  text-decoration: none;
}

.link-grid strong {
  display: block;
  color: var(--paper);
  font-size: clamp(22px, 2.8vw, 38px);
  line-height: 1;
  overflow-wrap: anywhere;
}

.note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 30px clamp(20px, 6vw, 90px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 80;
  transform: translateX(-50%) translateY(18px);
  opacity: 0;
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--gold);
  color: #171006;
  font-weight: 850;
  transition: .25s ease;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 920px) {
  .menu-button { display: inline-flex; }
  .nav {
    position: absolute;
    top: 68px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(13,13,15,.97);
  }
  .nav.open { display: flex; }
  .identity-copy,
  .release-layout,
  .media-grid,
  .academy-grid,
  .booking {
    grid-template-columns: 1fr;
  }
  .release-art {
    max-width: 320px;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 92svh;
    padding-top: 102px;
  }
  .hero-image img {
    object-position: center top;
  }
  .hero::after {
    background:
      linear-gradient(0deg, rgba(13,13,15,.94), rgba(13,13,15,.3) 50%, rgba(13,13,15,.62)),
      linear-gradient(90deg, rgba(13,13,15,.85), rgba(13,13,15,.2));
  }
  .scroll-cue {
    display: none;
  }
  .hero-actions,
  .booking-actions,
  .release-actions {
    display: grid;
  }
  .link-grid {
    grid-template-columns: 1fr;
  }
  .academy-mark {
    min-height: 280px;
  }
  .footer {
    display: block;
  }
}
