:root {
  --ink: #151515;
  --paper: #ffffff;
  --muted: #646b6d;
  --line: #dedede;
  --smoke: #f4f4f1;
  --steel: #202828;
  --steel-2: #313b3b;
  --red: #c82127;
  --red-dark: #8f171c;
  --gold: #c7a15c;
  --max: 1160px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 4vw, 48px);
  color: #fff;
  transition: background 180ms ease, padding 180ms ease, box-shadow 180ms ease;
}

.site-header.solid,
.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(22, 22, 22, 0.96);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid currentColor;
  color: #fff;
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 28px);
  color: #d7dcdd;
}

.nav a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 700;
}

.nav a:hover,
.nav a.active {
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  background: transparent;
  color: #fff;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero,
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.42) 50%, rgba(0, 0, 0, 0.14)),
    url("assets/hero-workshop.png") center / cover;
}

.hero {
  min-height: 92vh;
}

.page-hero {
  min-height: 520px;
  padding-top: 98px;
}

.departments-hero,
.partners-hero,
.application-hero,
.faq-hero,
.contact-hero {
  background-position: center;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-workshop.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.48) 46%, rgba(0, 0, 0, 0.12)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.55), transparent 42%);
}

.hero-content,
.page-hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 8vw, 112px);
  padding-top: 80px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 12px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  line-height: 1.04;
  font-weight: 400;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 88px);
  max-width: 900px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 5vw, 58px);
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.25;
}

.hero p,
.page-hero p:not(.section-kicker) {
  max-width: 680px;
  color: #e9ecec;
  font-size: clamp(17px, 2vw, 22px);
}

.hero-actions,
.split,
.subscribe-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 23px;
  border: 1px solid currentColor;
  border-radius: 4px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 13px;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.button.primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.button.ghost {
  color: #fff;
  background: rgba(0, 0, 0, 0.12);
}

.button.light {
  background: #fff;
  color: var(--steel);
}

.section {
  padding: clamp(70px, 9vw, 118px) 0;
}

.container {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.narrow {
  width: min(860px, calc(100% - 36px));
}

.intro {
  background: #fff;
  text-align: center;
}

.intro p:not(.section-kicker) {
  color: #4b5052;
  font-size: 18px;
}

.intro a,
.text-link {
  color: var(--red);
  font-weight: 700;
}

.text-link {
  display: inline-block;
  margin-top: 10px;
}

.light-link {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.dark {
  background: var(--steel);
  color: #fff;
}

.dark p,
.dark li,
.dark .department-card p {
  color: #d5dddd;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.metrics-band {
  padding: 32px 0;
  color: #fff;
  background: var(--red);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}

.metric-grid div {
  padding: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.metric-grid div:first-child {
  border-left: 0;
}

.metric-grid strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 72px);
  line-height: 1;
  font-weight: 400;
}

.metric-grid span {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 700;
}

.feature-grid,
.partner-grid,
.application-layout,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.feature-panel {
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 12px;
  height: 2px;
  background: var(--gold);
}

.check-list.large {
  font-size: 18px;
}

.quick-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.quick-card,
.process-grid article {
  min-height: 210px;
  padding: 28px;
  color: inherit;
  text-decoration: none;
  background: var(--smoke);
  border: 1px solid #e6e6e2;
  border-radius: 4px;
}

.quick-card:hover {
  border-color: var(--red);
}

.quick-card span,
.process-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--red);
  font-family: var(--serif);
  font-size: 32px;
}

.department-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.department-card {
  min-height: 245px;
  padding: 30px;
  background: #1b2222;
}

.department-card.wide {
  grid-column: span 3;
}

.department-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 30px;
}

.department-card h3 {
  color: #fff;
}

.detail-grid {
  margin-top: -1px;
}

.cta-band {
  background: var(--smoke);
}

.split {
  justify-content: space-between;
}

.split > div {
  max-width: 740px;
}

.partner-section {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(22, 22, 22, 0.95), rgba(22, 22, 22, 0.82)),
    url("assets/hero-workshop.png") center / cover;
}

.partner-grid.light p:not(.section-kicker),
.partner-grid p:not(.section-kicker) {
  color: #444c4e;
  font-size: 18px;
}

.partner-section .partner-grid p:not(.section-kicker) {
  color: #e4e8e8;
}

.gallery-section {
  background: #fff;
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-auto-rows: minmax(210px, auto);
  gap: 16px;
}

.gallery-tile {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 240px;
  padding: 26px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.78)),
    linear-gradient(135deg, #3a4545, #141414);
  border-radius: 4px;
  overflow: hidden;
}

.tile-large {
  grid-row: span 2;
  min-height: 496px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.82)),
    url("assets/hero-workshop.png") center / cover;
}

.gallery-tile strong {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.gallery-tile span {
  color: #e5e7e7;
}

.faq-section,
.application-section {
  background: var(--smoke);
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
  padding: 21px 0;
}

summary {
  cursor: pointer;
  color: #1c1f20;
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--red);
  font-size: 24px;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 14px 0 0;
  color: var(--muted);
}

.application-sidebar {
  position: sticky;
  top: 120px;
  padding: 34px;
  color: #fff;
  background: var(--steel);
  border-radius: 4px;
}

.application-form {
  display: grid;
  gap: 22px;
}

fieldset {
  margin: 0;
  padding: 28px;
  border: 1px solid #ddddda;
  border-radius: 4px;
  background: #fff;
}

legend {
  padding: 0 8px;
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

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

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.option-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.option-grid input {
  width: auto;
}

.contact-section {
  background: #161616;
  color: #fff;
}

.contact-copy p {
  color: #d3d7d8;
}

.contact-card {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.contact-card a {
  color: #fff;
}

.hours {
  color: var(--gold) !important;
}

.contact-form {
  display: grid;
  gap: 16px;
}

label span {
  display: block;
  margin-bottom: 7px;
  color: #384042;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.contact-form label span,
.subscribe-form label span {
  color: #d8dddd;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #cfd2d2;
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  padding: 14px 15px;
  font: inherit;
}

.contact-form input,
.contact-form textarea,
.subscribe-form input {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.subscribe {
  padding: 46px 0;
  color: #fff;
  background: var(--red);
}

.subscribe h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 42px);
}

.subscribe .section-kicker {
  color: #fff;
}

.subscribe-inner {
  justify-content: space-between;
}

.subscribe-form {
  display: flex;
  gap: 12px;
  width: min(480px, 100%);
}

.subscribe-form input {
  border-color: rgba(255, 255, 255, 0.65);
}

.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.82);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(18px, 4vw, 48px);
  color: #d5dddd;
  background: #111;
  font-size: 14px;
}

.footer strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.footer p {
  max-width: 640px;
  margin: 0 0 6px;
}

.footer nav {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}

.footer a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 700;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1040px) {
  .quick-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .nav {
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 0;
    background: rgba(22, 22, 22, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.16);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 14px 18px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    margin: 0 auto;
    padding-top: 120px;
  }

  .feature-grid,
  .partner-grid,
  .application-layout,
  .contact-grid,
  .department-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .application-sidebar {
    position: static;
  }

  .department-card.wide {
    grid-column: auto;
  }

  .tile-large {
    grid-row: auto;
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .brand {
    max-width: 230px;
    font-size: 12px;
  }

  .hero {
    min-height: 710px;
  }

  .hero,
  .page-hero {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.64) 52%, rgba(0, 0, 0, 0.86)),
      url("assets/hero-workshop.png") center / cover;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.52) 48%, rgba(0, 0, 0, 0.78)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.08));
  }

  .metric-grid,
  .quick-grid,
  .process-grid,
  .form-grid.two,
  .option-grid {
    grid-template-columns: 1fr;
  }

  .metric-grid div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
  }

  .metric-grid div:first-child {
    border-top: 0;
  }

  .hero-actions,
  .subscribe-form,
  .footer {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .footer a {
    width: 100%;
    text-align: center;
  }

  .department-card,
  fieldset,
  .application-sidebar {
    min-height: auto;
    padding: 24px;
  }
}
