:root {
  --background: #f7f3eb;
  --foreground: #1a1410;
  --primary: #b45309;
  --primary-light: #d97706;
  --primary-dark: #92400e;
  --primary-deep: #78350f;
  --muted: rgba(26, 20, 16, 0.45);
  --muted-light: rgba(26, 20, 16, 0.28);
  --surface: #fffdf8;
  --border: rgba(26, 20, 16, 0.07);
  --hover-bg: rgba(180, 83, 9, 0.04);
  --color-beam-primary: #b45309;
  --color-beam-neutral: #1a1410;
  --shadow-soft: 0 4px 24px rgba(26, 20, 16, 0.06);
  --shadow-card: 0 8px 32px rgba(26, 20, 16, 0.08);
  --shadow-primary-glow: 0 8px 28px rgba(180, 83, 9, 0.28);
  --shadow-primary-glow-soft: 0 4px 18px rgba(180, 83, 9, 0.2);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --font-sans: "Outfit", system-ui, sans-serif;
  --font-display: "Bebas Neue", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --hero-beams-height: min(65vh, 640px);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* Nav — floating pill */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem 1rem 0;
}

@media (min-width: 640px) {
  .nav {
    padding: 1.25rem 1.5rem 0;
  }
}

@media (min-width: 1024px) {
  .nav {
    padding: 1.5rem 2.5rem 0;
  }
}

.nav-inner {
  display: flex;
  height: 64px;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.5rem 0 1.25rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 253, 248, 0.82);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .nav-inner {
    padding: 0 0.75rem 0 1.5rem;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  transition: opacity 0.2s;
}

.brand:hover {
  opacity: 0.85;
}

.brand-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: none;
}

.brand-text .accent {
  color: var(--primary);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  transition: all 0.2s;
}

.nav-links a:hover {
  color: var(--primary-dark);
  background: var(--hover-bg);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--muted);
  transition: all 0.2s;
}

.menu-toggle:hover {
  color: var(--primary);
  background: var(--hover-bg);
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.5rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  padding: 0.625rem 1rem;
  border-radius: var(--radius-sm);
}

.mobile-menu a:hover {
  color: var(--primary);
  background: var(--hover-bg);
}

/* Buttons — pill shape */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: all 0.25s;
  white-space: nowrap;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 13px;
}

.btn-md {
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: var(--shadow-primary-glow-soft);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--surface);
  color: var(--foreground);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn .arrow {
  transition: transform 0.2s;
}

.btn:hover .arrow {
  transform: translateX(4px);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-dark);
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-pill);
  background: rgba(180, 83, 9, 0.08);
  transition: all 0.2s;
}

.link-arrow:hover {
  gap: 0.75rem;
  background: rgba(180, 83, 9, 0.14);
}

/* Hero — beams kept, new layout */
.hero-wrap {
  position: relative;
  overflow: hidden;
}

/* 3D sun anchored to the true top-left corner of the viewport (rendered by
   js/sun.js). It lives at <body> level and is centered on the page origin so
   only its bottom-right quarter shows — the screen edges form the quarter's
   straight edges, and it sits behind the floating nav. */
.hero-sun {
  --sun-size: clamp(414px, 64vw, 760px);
  position: absolute;
  top: calc(var(--sun-size) / -2);
  left: calc(var(--sun-size) / -2);
  width: var(--sun-size);
  height: var(--sun-size);
  z-index: 1;
  pointer-events: none;
  /* Soft glow shown until the WebGL canvas takes over (or if it can't). */
  background: radial-gradient(circle at 50% 50%,
    rgba(255, 200, 120, 0.55) 0%,
    rgba(217, 119, 6, 0.28) 28%,
    rgba(180, 83, 9, 0.1) 46%,
    rgba(180, 83, 9, 0) 62%);
}

.hero-sun.is-live {
  background: none;
}

.hero-sun canvas {
  display: block;
}

@media (max-width: 640px) {
  .hero-sun {
    --sun-size: clamp(260px, 81vw, 397px);
    opacity: 0.85;
  }
}

.hero-feathers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.hero-feather {
  position: absolute;
  left: 0;
  top: 0;
  height: auto;
  transform-origin: center center;
  will-change: transform, opacity;
  opacity: 0;
  z-index: 1;
  filter: drop-shadow(0 1px 2px rgba(26, 20, 16, 0.12));
}

@keyframes feather-spin-fall {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
    opacity: 0;
  }

  6% {
    opacity: var(--feather-peak-opacity, 0.92);
  }

  72% {
    opacity: var(--feather-peak-opacity, 0.92);
  }

  100% {
    transform: translate3d(var(--feather-dx), var(--feather-dy), 0) rotate(var(--feather-spin));
    opacity: 0;
  }
}

.hero-feather.is-active {
  animation: feather-spin-fall var(--feather-duration, 6s) var(--feather-delay, 0s) linear infinite;
}

.hero {
  position: relative;
  height: var(--hero-beams-height);
  min-height: var(--hero-beams-height);
  max-height: var(--hero-beams-height);
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1rem 0;
  overflow: visible;
}

@media (min-width: 640px) {
  .hero {
    padding: 2rem 1.5rem 0;
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    align-content: center;
    align-items: center;
    gap: 1.25rem 2rem;
    padding: 1.5rem 2.5rem 0;
  }

  .hero-main {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
  }

  .hero-figure {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }
}

.hero-beams {
  position: absolute;
  inset: 0;
  bottom: auto;
  height: var(--hero-beams-height);
  opacity: 0.4;
  pointer-events: none;
  overflow: hidden;
}

@media (min-width: 640px) {
  .hero-beams {
    opacity: 0.55;
  }
}

.hero-divider {
  display: block;
  width: 100%;
  height: 1px;
  margin: 0;
  padding: 0;
  border: none;
  background: #c5bbb0;
  flex-shrink: 0;
}

.hero-beams svg {
  width: 100%;
  height: 100%;
}

@keyframes beam-travel {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: var(--beam-target, -2050);
  }
}

.hero-main {
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.375rem 1rem 0.375rem 0.375rem;
  border-radius: var(--radius-pill);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-badge-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-badge-dot svg {
  color: #fff;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 16vw, 148px);
  line-height: 0.88;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}

.hero-title .fill {
  display: block;
  color: var(--foreground);
  text-transform: none;
}

.hero-title .outline {
  display: block;
  color: var(--primary-dark);
  -webkit-text-stroke: 2px var(--primary-dark);
  -webkit-text-fill-color: transparent;
  transition: color 0.3s, -webkit-text-stroke-color 0.3s;
}

.hero-title .outline:hover {
  color: var(--primary);
  -webkit-text-stroke-color: var(--primary);
}

.hero-subtitle {
  max-width: 26rem;
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

.hero-figure {
  position: relative;
  z-index: 10;
  flex-shrink: 0;
  margin: 0;
  line-height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

.hero-figure img.hero-icarus,
.hero-icarus {
  position: relative;
  z-index: 2;
}

@keyframes hero-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.hero-figure img {
  display: block;
  width: clamp(260px, 68vw, 520px);
  max-width: 100%;
  height: auto;
  max-height: calc(var(--hero-beams-height) - 2.5rem);
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 16px 36px rgba(26, 20, 16, 0.14));
  animation: hero-float 5s ease-in-out infinite;
}

@media (min-width: 1024px) {
  .hero-figure img {
    width: clamp(300px, 32vw, 520px);
    margin-left: auto;
    margin-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-figure img {
    animation: none;
  }

  .hero-feather.is-active {
    animation: none;
    display: none;
  }
}

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

/* Sections */
.section {
  padding: 3rem 1rem 4rem;
}

.section-first {
  padding-top: 1.25rem;
}

@media (min-width: 640px) {
  .section {
    padding: 3rem 1.5rem 4rem;
  }

  .section-first {
    padding-top: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.section-alt {
  background: linear-gradient(180deg, transparent, rgba(180, 83, 9, 0.03) 50%, transparent);
}

.container {
  max-width: 72rem;
  margin: 0 auto;
}

.container-narrow {
  max-width: 44rem;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-header.center {
  text-align: center;
}

.section-header.center p {
  margin: 1rem auto 0;
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(180, 83, 9, 0.1);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 80px);
  line-height: 0.92;
  letter-spacing: 0.01em;
}

.section-title .muted {
  color: var(--muted);
}

.section-desc {
  max-width: 30rem;
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

/* Timeline — myth section */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .timeline {
    gap: 2rem;
  }
}

.timeline-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s, box-shadow 0.25s;
}

@media (min-width: 640px) {
  .timeline-card {
    padding: 2rem 2.25rem;
    gap: 1.75rem;
  }
}

.timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.timeline-card:nth-child(even) {
  margin-left: 0;
}

@media (min-width: 768px) {
  .timeline-card:nth-child(even) {
    margin-left: 4rem;
  }

  .timeline-card:nth-child(odd) {
    margin-right: 4rem;
  }
}

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.timeline-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(180, 83, 9, 0.3);
}

.timeline-num {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 1px;
  color: var(--muted-light);
}

.timeline-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
}

.timeline-body p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--muted);
}

.section-link-wrap {
  margin-top: 2.5rem;
}

/* Bento grid — themes */
.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .bento {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 1.25rem;
  }
}

.bento-card {
  position: relative;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

@media (min-width: 640px) {
  .bento-card {
    padding: 2rem;
  }
}

.bento-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-card);
}

.bento-card:nth-child(1) {
  grid-column: span 1;
}

.bento-card:nth-child(2) {
  grid-column: span 1;
}

.bento-card:nth-child(3) {
  grid-column: span 1;
}

.bento-card:nth-child(4) {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .bento-card:nth-child(1) {
    grid-column: span 5;
  }

  .bento-card:nth-child(2) {
    grid-column: span 7;
  }

  .bento-card:nth-child(3) {
    grid-column: span 7;
  }

  .bento-card:nth-child(4) {
    grid-column: span 5;
  }
}

.bento-blob {
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  width: 80px;
  height: 80px;
  border-radius: 40% 60% 55% 45% / 55% 45% 55% 45%;
  background: rgba(180, 83, 9, 0.08);
  transition: transform 0.4s;
}

.bento-card:hover .bento-blob {
  transform: rotate(20deg) scale(1.2);
}

.bento-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: rgba(180, 83, 9, 0.1);
  color: var(--primary-dark);
  transition: background 0.2s, color 0.2s;
}

.bento-card:hover .bento-icon {
  background: var(--primary);
  color: #fff;
}

.bento-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
}

.bento-card p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

/* Figures — circular cards */
.figures-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .figures-wrap {
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
  }
}

.figures-intro .section-title {
  font-size: clamp(40px, 6vw, 68px);
  margin-bottom: 1.25rem;
}

.figures-intro p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 22rem;
}

.figures-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .figures-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .figures-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

.figure-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s;
}

.figure-card:hover {
  transform: translateY(-6px);
}

.figure-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: conic-gradient(from 180deg, var(--primary-dark), var(--primary-light), var(--primary-dark));
  padding: 3px;
}

.figure-ring-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--primary-dark);
  letter-spacing: 0.05em;
}

.figure-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.figure-role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted-light);
}

/* Quote */
.quote-section {
  padding: 3rem 1rem;
}

@media (min-width: 640px) {
  .quote-section {
    padding: 3.5rem 1.5rem;
  }
}

.quote-block {
  position: relative;
  max-width: 52rem;
  margin: 0 auto;
  padding: 3.5rem 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--primary-deep), var(--primary-dark));
  color: #fff;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-primary-glow);
}

.quote-block::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.quote-block::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.quote-text {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

.quote-text .accent {
  color: rgba(255, 255, 255, 0.75);
}

.quote-attribution {
  position: relative;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* FAQ — stacked rounded cards */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item.open {
  box-shadow: var(--shadow-card);
  border-color: rgba(180, 83, 9, 0.2);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 1.25rem;
  text-align: left;
  gap: 1rem;
}

@media (min-width: 640px) {
  .faq-question {
    padding: 1.25rem 1.5rem;
  }
}

.faq-question-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.faq-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  background: rgba(180, 83, 9, 0.08);
  color: var(--primary-dark);
  transition: all 0.2s;
}

.faq-item.open .faq-num,
.faq-question:hover .faq-num {
  background: var(--primary);
  color: #fff;
}

.faq-question-text {
  font-size: 0.9375rem;
  font-weight: 600;
}

.faq-chevron {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  padding: 8px;
  border-radius: 50%;
  color: var(--muted);
  background: rgba(26, 20, 16, 0.04);
  transition: transform 0.2s, background 0.2s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: rgba(180, 83, 9, 0.1);
  color: var(--primary-dark);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem 4.25rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--muted);
}

@media (min-width: 640px) {
  .faq-answer {
    padding: 0 1.5rem 1.5rem 4.5rem;
  }
}

.faq-item.open .faq-answer {
  display: block;
}

/* Footer */
.footer {
  margin: 0 1rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

@media (min-width: 640px) {
  .footer {
    margin: 0 1.5rem 2rem;
  }
}

@media (min-width: 1024px) {
  .footer {
    margin: 0 2.5rem 2.5rem;
  }
}

.footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

@media (min-width: 640px) {
  .footer-inner {
    padding: 3rem 2rem;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2.5rem;
  }
}

.footer-brand {
  margin-bottom: 0.75rem;
}

.footer-desc {
  font-size: 0.8125rem;
  color: var(--muted-light);
  max-width: 20rem;
  line-height: 1.65;
}

.footer-heading {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary-dark);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  font-size: 11px;
  color: var(--muted-light);
  letter-spacing: 0.025em;
}
