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

:root {
  --amber: #d4a843;
  --amber-light: #f0c96a;
  --amber2: #f0c96a;
  --amber-glow: rgba(212, 168, 67, 0.08);
  --amber-rule: rgba(212, 168, 67, 0.18);
  --ink: #06060a;
  --bg-card: #0d0d0d;
  --bg-raised: #121212;
  --text: #ede9e2;
  --cream: #f0ede6;
  --text-mid: #9a9088;
  --text-dim: #4a4440;
}

html {
  scroll-behavior: smooth;
  background: #080808;
}

body {
  background: var(--ink);
  color: var(--text);
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Keep About footer identical to shared root-page footer spacing */
.site-footer .footer-group {
  gap: 14px;
}

.site-footer .footer-list {
  gap: 12px;
}

.site-footer .footer-list a {
  font-size: 14px;
  line-height: 1.5;
}

.hero {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  height: 100vh;
  overflow: hidden;
}
html.force-desktop-mode .hero {
  height: clamp(740px, 56vw, 820px) !important;
  min-height: clamp(740px, 56vw, 820px) !important;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 100% 70% at 50% -10%,
      rgba(212, 168, 67, 0.07) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 50% 50% at 85% 70%,
      rgba(212, 168, 67, 0.04) 0%,
      transparent 50%
    );
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px;
  opacity: 0.028;
  pointer-events: none;
}

.hero-accent-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 3rem;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--amber) 30%,
    var(--amber) 70%,
    transparent 100%
  );
  opacity: 0.3;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 900px;
  padding: 0 3rem 0 5.5rem;
}

.hero-eyebrow {
  margin-bottom: 1.6rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  opacity: 0;
  animation: fadeUp 0.7s 0.3s forwards;
}

.hero-title {
  margin-bottom: 2rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 1;
  opacity: 0;
  animation: fadeUp 0.8s 0.45s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--amber);
}

.hero-desc {
  max-width: 480px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-bottom {
  position: relative;
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 2rem 3rem 2rem 5.5rem;
  border-top: 1px solid var(--amber-rule);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  opacity: 0;
  animation: fadeUp 0.7s 0.75s forwards;
}

.hero-stat-delay-2 {
  animation-delay: 0.85s;
}

.hero-stat-delay-3 {
  animation-delay: 0.95s;
}

.hero-stat-num {
  font-family: "Syne", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  color: var(--amber);
}

.hero-stat-label {
  margin-top: 0.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--amber-rule);
}

.story {
  max-width: 1100px;
  margin: 0 auto;
  padding: 9rem 5.5rem;
  border-top: 1px solid var(--amber-rule);
}

.story-label {
  margin-bottom: 1.2rem;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
}

.story-headline {
  max-width: 600px;
  margin-bottom: 2.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
}

.story-headline em {
  font-style: italic;
  color: var(--amber);
}

.pull-quote {
  max-width: 640px;
  margin: 2.5rem 0;
  padding: 1.2rem 0 1.2rem 1.8rem;
  border-left: 2px solid var(--amber);
}

.pull-quote p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
  font-weight: 400;
}

.story-body {
  max-width: 680px;
  margin-bottom: 1.3rem;
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-mid);
  font-weight: 300;
}

.story-body strong {
  color: var(--text);
  font-weight: 500;
}

.vision {
  max-width: 1100px;
  margin: 0 auto;
  padding: 8rem 5.5rem;
  border-top: 1px solid var(--amber-rule);
}

.vision-label {
  margin-bottom: 3rem;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
}

.vision-statement {
  max-width: 820px;
  margin-bottom: 5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.2;
}

.vision-statement em {
  font-style: italic;
  color: var(--amber);
}

.vision-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.pillar {
  padding: 2.5rem 2.5rem 2.5rem 0;
  border-right: 1px solid var(--amber-rule);
}

.pillar:last-child {
  padding-right: 0;
  padding-left: 2.5rem;
  border-right: none;
}

.pillar:nth-child(2) {
  padding-left: 2.5rem;
}

.pillar-num {
  margin-bottom: 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-style: italic;
  line-height: 1;
  color: var(--amber);
  opacity: 0.3;
}

.pillar-title {
  margin-bottom: 0.7rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
}

.pillar-body {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
}

.building {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 5.5rem;
  border-top: 1px solid var(--amber-rule);
}

.building-left h2 {
  margin-bottom: 1.4rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
}

.building-left h2 em {
  font-style: italic;
  color: var(--amber);
}

.building-left p {
  margin-bottom: 2rem;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 300;
}

.building-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid var(--amber-rule);
  color: var(--amber);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: border-color 0.2s ease;
}

.building-cta:hover {
  border-color: var(--amber);
}

.open-roles {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.role-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.4rem;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.2s ease;
}

.role-row:hover {
  border-color: var(--amber-rule);
}

.role-title {
  margin-bottom: 0.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.role-sub {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.role-status {
  padding: 0.25rem 0.65rem;
  border-radius: 2rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-open {
  color: var(--amber);
  background: var(--amber-glow);
  border: 1px solid var(--amber-rule);
}

.status-progress {
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

.reveal-delay-1 {
  transition-delay: 0s;
}

.reveal-delay-2 {
  transition-delay: 0s;
}

.reveal-delay-3 {
  transition-delay: 0s;
}

@media (max-width: 900px) {
  .hero-content {
    padding: 0 1.5rem;
  }

  .hero-bottom {
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .story {
    padding: 5rem 1.5rem;
  }

  .vision {
    padding: 5rem 1.5rem;
  }

  .vision-pillars {
    grid-template-columns: 1fr;
  }

  .pillar {
    padding: 2rem 0;
    border-right: none;
    border-bottom: 1px solid var(--amber-rule);
  }

  .pillar:last-child {
    padding-left: 0;
    border-bottom: none;
  }

  .pillar:nth-child(2) {
    padding-left: 0;
  }

  .building {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 1.5rem;
  }

  .hero-accent-line {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-footer .footer-list {
    gap: 10px;
  }

  .site-footer .footer-list a {
    font-size: 15px;
    line-height: 1.45;
  }
}
