:root {
  color-scheme: dark;
  --ink: #f7f2e8;
  --muted: #c9c0b2;
  --line: rgba(247, 242, 232, 0.18);
  --deep: #071b19;
  --green: #0e2f2a;
  --green-2: #17483f;
  --brass: #c9a85d;
  --paper: #f2e6cd;
  --panel: rgba(12, 38, 34, 0.86);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--deep);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(7, 27, 25, 0.72);
  border-bottom: 1px solid rgba(247, 242, 232, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(201, 168, 93, 0.7);
  background: rgba(201, 168, 93, 0.12);
  color: var(--brass);
  font-family: Georgia, serif;
  font-size: 20px;
}

.nav {
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-overlay,
.hero-content {
  grid-area: 1 / 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 92vh;
  object-fit: cover;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 27, 25, 0.94) 0%, rgba(7, 27, 25, 0.74) 43%, rgba(7, 27, 25, 0.15) 100%),
    linear-gradient(180deg, rgba(7, 27, 25, 0.35) 0%, rgba(7, 27, 25, 0.04) 52%, var(--deep) 100%);
}

.hero-content {
  z-index: 2;
  align-self: center;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding-top: 72px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 10vw, 126px);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

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

.hero-copy {
  max-width: 610px;
  color: var(--paper);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

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

.button.primary {
  border-color: var(--brass);
  background: var(--brass);
  color: #12211f;
}

.button.secondary {
  background: rgba(247, 242, 232, 0.08);
  color: var(--ink);
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 72px);
  color: var(--muted);
  font-size: 18px;
}

.about-section {
  background: #08211e;
}

.profile-section {
  background: var(--green);
}

.profile-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  background: rgba(247, 242, 232, 0.04);
}

.profile-panel p:last-child {
  color: var(--paper);
  font-size: 19px;
}

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

.content-card {
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.card-label {
  display: inline-block;
  margin-bottom: 40px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.content-card p,
.series-list p,
.cta-section p {
  color: var(--muted);
}

.series-section {
  background: #102b27;
}

.series-list {
  display: grid;
  gap: 14px;
}

.series-list article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.series-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.series-list span {
  color: var(--brass);
  font-family: Georgia, serif;
  font-size: 28px;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--paper);
  color: #10211f;
}

.cta-section p {
  max-width: 760px;
  color: #40534d;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    gap: 14px;
    flex-direction: column;
    background: rgba(7, 27, 25, 0.42);
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }

  .hero,
  .hero-image {
    min-height: 860px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 27, 25, 0.92), rgba(7, 27, 25, 0.62)),
      linear-gradient(180deg, rgba(7, 27, 25, 0.08), var(--deep));
  }

  .hero-content {
    align-self: end;
    margin: 0 auto;
    padding-bottom: 72px;
  }

  .two-column,
  .profile-panel,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    align-items: flex-start;
    flex-direction: column;
  }
}
