:root {
  --bg: #0b0b0c;
  --panel: #151312;
  --panel-2: #1f1a17;
  --text: #f5efe5;
  --muted: #c9bcae;
  --soft: #8f8173;
  --gold: #d8b66b;
  --gold-2: #f0d99d;
  --line: rgba(216, 182, 107, 0.22);
  --shadow: rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(216, 182, 107, 0.12), transparent 32rem),
    linear-gradient(180deg, #090909 0%, #12100f 45%, #090909 100%);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem clamp(1.25rem, 4vw, 4.5rem);
  background: rgba(11, 11, 12, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 0.05rem;
  min-width: max-content;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: clamp(1rem, 1.45vw, 1.35rem);
}

.brand-accent {
  color: var(--gold-2);
}

.brand small {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.15rem;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem 1.15rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

nav a:hover {
  color: var(--gold-2);
}

.header-email {
  min-height: 2.25rem;
  padding: 0 0.9rem;
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.72fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  min-height: calc(100vh - 4.7rem);
  padding: clamp(3rem, 7vw, 7rem) clamp(1.25rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem);
  overflow: hidden;
}

.hero-copy {
  max-width: 48rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 0.98;
}

h1 {
  max-width: 12ch;
  font-size: clamp(4rem, 10vw, 8.8rem);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  line-height: 0.86;
  text-transform: uppercase;
}

h2 {
  color: var(--text);
  font-size: clamp(2.3rem, 5vw, 5rem);
}

h3 {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.intro {
  max-width: 43rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.trust-badge {
  display: inline-flex;
  width: fit-content;
  margin: 1.25rem 0 0;
  padding: 0.5rem 0.7rem;
  border: 1px solid rgba(216, 182, 107, 0.38);
  border-radius: 0.25rem;
  background: rgba(216, 182, 107, 0.1);
  color: var(--gold-2);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0 1.25rem;
  border: 1px solid var(--line);
  border-radius: 0.25rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: rgba(240, 217, 157, 0.72);
}

.button.primary {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
}

.button.secondary {
  color: var(--gold-2);
  background: rgba(255, 255, 255, 0.04);
}

.hero-portrait {
  position: relative;
  margin: 0;
  min-height: 32rem;
  border: 1px solid var(--line);
  box-shadow: 0 2rem 5rem var(--shadow);
  background: var(--panel);
}

.hero-portrait::before,
.hero-portrait::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-portrait::before {
  inset: 1rem;
  border: 1px solid rgba(240, 217, 157, 0.22);
  z-index: 2;
}

.hero-portrait::after {
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.35) 100%);
  z-index: 1;
}

.hero-portrait img {
  width: 100%;
  height: min(72vh, 46rem);
  min-height: 32rem;
  object-fit: cover;
  object-position: center top;
}

.section {
  padding: clamp(4rem, 8vw, 7.5rem) clamp(1.25rem, 6vw, 6rem);
  border-top: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(16rem, 0.62fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 6rem);
  background: #111213;
}

.about-photo {
  margin: 0;
}

.about-photo img {
  width: 100%;
  max-height: 32rem;
  object-fit: cover;
  object-position: center top;
}

.about-copy {
  max-width: 48rem;
}

.about-copy h2 {
  margin-bottom: 1.15rem;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  font-weight: 900;
  line-height: 0.88;
  text-transform: uppercase;
}

.about-copy p {
  margin: 0 0 1.1rem;
  color: var(--text);
  font-weight: 700;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.prose {
  color: var(--muted);
  font-size: 1.02rem;
}

.prose p {
  margin: 0 0 1.15rem;
}

.section-heading {
  max-width: 56rem;
  margin-bottom: 2.3rem;
}

.card-grid,
.student-grid,
.credits-grid {
  display: grid;
  gap: 1rem;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.student-grid article,
.credit-column,
.contact-card,
.experience-panel {
  background: linear-gradient(145deg, rgba(31, 26, 23, 0.94), rgba(14, 13, 13, 0.94));
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.18);
}

.service-card {
  min-height: 13rem;
  padding: 1.35rem;
}

.service-card p,
.student-grid p,
.credit-column p,
.contact-card p,
.experience-panel li {
  margin: 0;
  color: var(--muted);
}

.experience {
  background:
    linear-gradient(rgba(9, 9, 9, 0.68), rgba(9, 9, 9, 0.86)),
    radial-gradient(circle at 80% 30%, rgba(216, 182, 107, 0.16), transparent 28rem);
}

.experience-panel {
  max-width: 82rem;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.experience-intro {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 5rem);
}

.experience-panel h2 {
  max-width: 11ch;
  margin-bottom: 1.5rem;
}

.experience-panel ul {
  display: grid;
  gap: 0.85rem;
  margin: 0 0 1.5rem;
  padding-left: 1.2rem;
}

.screen-credits {
  margin-top: clamp(2rem, 5vw, 4rem);
  padding-top: clamp(1.4rem, 3vw, 2rem);
  border-top: 1px solid var(--line);
}

.credits-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.credit-column {
  padding: 1.5rem;
}

.credit-column p + p {
  margin-top: 0.45rem;
}

.student-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.student-grid article {
  min-height: 9rem;
  padding: 1.15rem;
}

.student-grid h3 {
  color: var(--gold-2);
}

.quote-section {
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 8vw, 9rem);
  background: #f5efe5;
  color: #12100f;
}

blockquote {
  max-width: 64rem;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.3rem, 5vw, 5.7rem);
  font-weight: 700;
  line-height: 1.02;
}

cite {
  display: block;
  margin-top: 1.5rem;
  color: #6c5330;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 78rem;
  margin: 0 auto;
  text-align: center;
}

.contact-heading {
  max-width: 62rem;
  margin: 0 auto;
}

.contact-heading h2 {
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.contact-heading p:not(.eyebrow) {
  max-width: 42rem;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
}

.contact-card {
  width: 100%;
  max-width: none;
  padding: clamp(1.35rem, 3vw, 2rem);
}

.info-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.35rem;
}

.info-panel {
  scroll-margin-top: 6rem;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.035);
}

.schedule-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
}

.schedule-list div {
  display: grid;
  gap: 0.1rem;
}

.schedule-list dt {
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.schedule-list dd {
  margin: 0;
  color: var(--muted);
}

.contact-action {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-top: 1.35rem;
}

.contact-action .button {
  width: fit-content;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.9rem;
  }

  .header-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.85rem;
  }

  nav {
    justify-content: flex-start;
  }

  .hero,
  .split,
  .about-section,
  .experience-intro,
  .contact,
  .info-panels {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    max-width: 11ch;
  }

  .card-grid,
  .student-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    position: relative;
  }

  .brand {
    min-width: 0;
    line-height: 1.35;
  }

  nav {
    gap: 0.65rem 0.85rem;
    font-size: 0.7rem;
  }

  .header-email {
    width: auto;
  }

  .hero {
    padding-top: 2.5rem;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.45rem;
    line-height: 1.03;
  }

  .hero-actions,
  .contact .hero-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .contact-action .button {
    width: 100%;
  }

  .hero-portrait,
  .hero-portrait img {
    min-height: 27rem;
  }

  .hero-portrait img {
    height: 30rem;
  }

  .card-grid,
  .student-grid,
  .credits-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .student-grid article {
    min-height: auto;
  }
}
