:root {
  --void: #150404;
  --maroon-deep: #3a0a0a;
  --crimson: #6b1313;
  --crimson-bright: #9c1c1c;
  --gold: #c9a13b;
  --gold-light: #e8c96e;
  --ivory: #f3e8d8;
  --ivory-dim: #c9b79c;
  --hair: rgba(230, 201, 110, 0.18);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--void);
  color: var(--ivory);
  font-family: "Inter", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

::selection {
  background: var(--gold);
  color: var(--void);
}

h1,
h2,
h3,
.display {
  font-family: "Fraunces", serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.7rem;
  color: var(--gold-light);
  font-weight: 500;
}

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 640px) {
  .container {
    padding: 0 24px;
  }
}

/* ---------- NAV ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 26px 0;
  background: linear-gradient(to bottom, rgba(10, 2, 2, 0.85), transparent);
  backdrop-filter: blur(2px);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  font-family: "Fraunces", serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--ivory);
}
.brand em {
  color: var(--gold-light);
  font-style: italic;
}
nav ul {
  display: flex;
  gap: 36px;
  list-style: none;
}
nav a {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ivory-dim);
  transition: color 0.3s ease;
}
nav a:hover {
  color: var(--gold-light);
}
@media (max-width: 720px) {
  nav {
    display: none;
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.corridor {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: repeating-linear-gradient(
    100deg,
    var(--maroon-deep) 0px,
    var(--crimson) 40px,
    var(--maroon-deep) 90px,
    var(--void) 150px,
    var(--crimson-bright) 210px,
    var(--maroon-deep) 260px
  );
  background-size: 1400px 100%;
  animation: drift 46s linear infinite;
  filter: saturate(1.15);
}
.corridor::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(21, 4, 4, 0.55) 0%,
      rgba(21, 4, 4, 0.15) 30%,
      rgba(21, 4, 4, 0.35) 65%,
      var(--void) 100%
    ),
    radial-gradient(
      ellipse 70% 60% at 50% 45%,
      rgba(21, 4, 4, 0) 0%,
      rgba(21, 4, 4, 0.75) 100%
    );
}
.corridor::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.035) 0px,
    rgba(255, 255, 255, 0.035) 1px,
    transparent 1px,
    transparent 14px
  );
  mix-blend-mode: overlay;
}
@keyframes drift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1400px 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .corridor {
    animation: none;
  }
}

.hero-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  align-items: center;
  gap: 40px;
  padding-top: 90px;
}
@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-portrait {
    order: -1;
    margin: 0 auto;
  }
}

.hero-copy .eyebrow {
  margin-bottom: 22px;
  display: block;
}
.hero-copy h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.03;
  color: var(--ivory);
}
.hero-copy h1 i {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}
.hero-copy .role {
  margin-top: 22px;
  font-size: 1.05rem;
  color: var(--ivory-dim);
  font-weight: 400;
  max-width: 480px;
  line-height: 1.6;
}
@media (max-width: 860px) {
  .hero-copy .role {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
@media (max-width: 860px) {
  .hero-actions {
    justify-content: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  transition: all 0.35s ease;
}
.btn.solid {
  background: var(--gold);
  color: var(--void);
  border-color: var(--gold);
  font-weight: 500;
}
.btn:hover {
  background: var(--gold-light);
  color: var(--void);
  border-color: var(--gold-light);
}
.btn.solid:hover {
  background: var(--ivory);
  border-color: var(--ivory);
}

.hero-portrait {
  position: relative;
  width: min(360px, 80vw);
  justify-self: center;
}
.hero-portrait .frame {
  position: relative;
  padding: 14px;
  border: 1px solid var(--hair);
}
.hero-portrait img {
  display: block;
  width: 100%;
  filter: sepia(0.15) saturate(1.05) contrast(1.02);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.8);
}
.hero-portrait .tag {
  position: absolute;
  left: -18px;
  bottom: 26px;
  background: var(--void);
  border: 1px solid var(--gold);
  padding: 10px 16px;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
}
@media (max-width: 860px) {
  .hero-portrait .tag {
    left: 50%;
    transform: translateX(-50%);
    bottom: -18px;
  }
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--ivory-dim);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.scroll-cue .line {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--gold-light), transparent);
}

/* ---------- SECTION GENERIC ---------- */
section {
  padding: 130px 0;
  position: relative;
}
.rule {
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 26px;
}
.rule.left {
  margin: 0 0 26px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 64px;
}
.section-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin-top: 16px;
  color: var(--ivory);
}
.section-head h2 i {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}

/* ---------- ABOUT ---------- */
.about {
  background: var(--void);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

.about-lede {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ivory);
}
.about-lede i {
  color: var(--gold-light);
  font-style: italic;
}

.about-body p {
  color: var(--ivory-dim);
  line-height: 1.85;
  font-size: 0.98rem;
  margin-bottom: 20px;
  font-weight: 300;
}
.about-body strong {
  color: var(--ivory);
  font-weight: 500;
}

/* ---------- PILLARS ---------- */
.pillars {
  background: var(--maroon-deep);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hair);
}
@media (max-width: 760px) {
  .pillar-grid {
    grid-template-columns: 1fr;
  }
}
.pillar {
  background: var(--maroon-deep);
  padding: 52px 44px;
}
.pillar .num {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold);
}
.pillar h3 {
  margin-top: 18px;
  font-size: 1.4rem;
  color: var(--ivory);
  font-weight: 500;
}
.pillar p {
  margin-top: 14px;
  color: var(--ivory-dim);
  font-size: 0.92rem;
  line-height: 1.75;
  font-weight: 300;
}

/* ---------- COMPANY ---------- */
.company {
  background: var(--void);
}
.company-panel {
  position: relative;
  border: 1px solid var(--hair);
  padding: 70px 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  overflow: hidden;
}
.company-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      115deg,
      transparent 0 60px,
      rgba(201, 161, 59, 0.045) 60px 62px
    ),
    radial-gradient(
      ellipse 60% 90% at 90% 20%,
      rgba(154, 28, 28, 0.35),
      transparent 60%
    );
  z-index: -1;
}
@media (max-width: 760px) {
  .company-panel {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 48px 30px;
  }
}

.company-panel h3 {
  font-size: 1.9rem;
  color: var(--ivory);
  line-height: 1.25;
}
.company-panel h3 i {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 400;
}
.company-panel p {
  margin-top: 18px;
  color: var(--ivory-dim);
  line-height: 1.8;
  max-width: 520px;
  font-size: 0.95rem;
  font-weight: 300;
}

/* ---------- CONNECT ---------- */
.connect {
  background: var(--void);
  text-align: center;
}
.connect .rule {
  margin: 0 auto 26px;
}
.connect h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}
.connect .lede {
  max-width: 520px;
  margin: 20px auto 48px;
  color: var(--ivory-dim);
  line-height: 1.8;
  font-weight: 300;
}
.social-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.social-card {
  width: 230px;
  border: 1px solid var(--hair);
  padding: 32px 24px;
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}
.social-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.social-card .icon {
  width: 34px;
  height: 34px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
}
.social-card .label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-light);
}
.social-card .sub {
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--ivory-dim);
}

/* ---------- FOOTER ---------- */
footer {
  padding: 44px 0;
  border-top: 1px solid var(--hair);
  background: var(--void);
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
footer .fine {
  font-size: 0.72rem;
  color: var(--ivory-dim);
  letter-spacing: 0.04em;
}
footer .fine a {
  color: var(--gold-light);
}
