:root {
  --color-parchment: #f5f0e6;
  --color-ink: #1a1a1a;
  --color-red: #8b2332;
  --color-red-dark: #6d1a27;
  --color-navy: #1d3557;
  --color-navy-light: #264673;
  --color-gold: #c9a227;
  --color-gold-muted: #b8943f;
  --color-cream: #fffef7;
  --color-shadow: rgba(26, 26, 26, 0.08);
  --font-display: 'Libre Baskerville', Georgia, serif;
  --font-body: 'Source Sans 3', 'Helvetica Neue', sans-serif;
  --max-width: 1200px;
  --section-padding: clamp(4rem, 10vw, 8rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-parchment);
  color: var(--color-ink);
  line-height: 1.7;
  font-size: 18px;
  overflow-x: hidden;
}

/* Texture overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  z-index: 1000;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
header {
  background: #ffffff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-area img {
  height: 50px;
  width: auto;
}

.logo-text {
  font-family: var(--font-display);
  color: var(--color-navy);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: var(--color-navy);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width 0.3s;
}

nav a:hover::after {
  width: 100%;
}

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

/* Hero Section */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 50%, var(--color-red-dark) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(201, 162, 39, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(139, 35, 50, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: var(--section-padding) 2rem;
}

.hero-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  display: inline-block;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-gold-muted);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--color-cream);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255, 254, 247, 0.9);
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.hero-text {
  font-size: 1.1rem;
  color: rgba(255, 254, 247, 0.85);
  max-width: 700px;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-ink);
}

.btn-primary:hover {
  background: var(--color-gold-muted);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-cream);
  border: 2px solid var(--color-cream);
}

.btn-outline:hover {
  background: var(--color-cream);
  color: var(--color-navy);
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-download .download-icon {
  transition: transform 0.3s ease;
}

.btn-download:hover .download-icon {
  transform: translateY(3px);
}

/* Section Styles */
section {
  padding: var(--section-padding) 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-header p {
  font-size: 1.15rem;
  color: #555;
}

/* Roots Section */
.roots-section {
  background: var(--color-cream);
}

.roots-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.roots-text {
  font-size: 1.05rem;
}

.roots-text .lead {
  font-size: 1.25rem;
  color: var(--color-navy);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.roots-text p {
  margin-bottom: 1.25rem;
  color: #444;
}

.highlight-box {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  padding: 2.5rem;
  color: var(--color-cream);
  position: relative;
}

.highlight-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-gold);
}

.highlight-box p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
}

/* Adams Quote Box */
.adams-quote {
  background: var(--color-parchment);
  border: 1px solid rgba(26, 26, 26, 0.1);
  padding: 2.5rem;
  margin-top: 2rem;
  position: relative;
}

.adams-quote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--color-red);
  opacity: 0.15;
  position: absolute;
  top: -1rem;
  left: 1rem;
  line-height: 1;
}

.adams-quote blockquote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-ink);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.adams-quote cite {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-style: normal;
  color: var(--color-red);
  font-weight: 600;
}

/* Principles Section */
.principles-section {
  background: var(--color-navy);
  color: var(--color-cream);
  position: relative;
  overflow: hidden;
}

.principles-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(139, 35, 50, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.principles-section .section-header h2 {
  color: var(--color-cream);
}

.principles-section .section-header p {
  color: rgba(255, 254, 247, 0.8);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.principle-card {
  background: rgba(255, 254, 247, 0.05);
  border: 1px solid rgba(255, 254, 247, 0.1);
  padding: 2.5rem;
  transition: all 0.4s ease;
}

.principle-card:hover {
  background: rgba(255, 254, 247, 0.1);
  transform: translateY(-4px);
  border-color: var(--color-gold);
}

.principle-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.principle-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--color-gold);
}

.principle-card p {
  font-size: 1rem;
  color: rgba(255, 254, 247, 0.85);
  margin-bottom: 0.75rem;
}

.principle-card .detail {
  font-size: 0.95rem;
  color: rgba(255, 254, 247, 0.65);
  font-style: italic;
}

/* Economic Equation Section */
.equation-section {
  background: var(--color-cream);
}

.equation-intro {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

.equation-display {
  background: var(--color-ink);
  color: var(--color-cream);
  padding: 3rem;
  text-align: center;
  margin: 3rem 0;
  position: relative;
}

.equation-display::before,
.equation-display::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  border: 3px solid var(--color-gold);
}

.equation-display::before {
  top: 1rem;
  left: 1rem;
  border-right: none;
  border-bottom: none;
}

.equation-display::after {
  bottom: 1rem;
  right: 1rem;
  border-left: none;
  border-top: none;
}

.equation-formula {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-style: italic;
  letter-spacing: 0.05em;
}

.equation-explanation {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: rgba(255, 254, 247, 0.7);
}

.equation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.equation-card {
  background: var(--color-parchment);
  padding: 2rem;
  border-left: 4px solid var(--color-red);
}

.equation-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-navy);
  margin-bottom: 1rem;
}

.equation-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Wealth Visualization */
.wealth-visualization {
  background: var(--color-parchment);
  padding: 3rem;
  margin: 3rem 0;
  text-align: center;
}

.wealth-visualization h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-navy);
  margin-bottom: 2rem;
}

.wealth-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.wealth-stat {
  text-align: center;
}

.wealth-stat .amount {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-red);
  font-weight: 700;
}

.wealth-stat .labor {
  font-size: 0.95rem;
  color: #555;
  margin-top: 0.5rem;
}

/* Justice Section */
.justice-section {
  background: linear-gradient(to bottom, var(--color-parchment), var(--color-cream));
}

.justice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.justice-card {
  background: var(--color-cream);
  padding: 2.5rem;
  border: 1px solid rgba(26, 26, 26, 0.08);
  transition: all 0.3s ease;
}

.justice-card:hover {
  box-shadow: 0 10px 40px var(--color-shadow);
  transform: translateY(-4px);
}

.justice-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-navy);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-gold);
}

.justice-card p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1rem;
}

/* Crisis Section */
.crisis-section {
  background: var(--color-red);
  color: var(--color-cream);
  position: relative;
  overflow: hidden;
}

.crisis-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(135deg, transparent 40%, rgba(0, 0, 0, 0.2) 100%),
    radial-gradient(ellipse at 20% 80%, rgba(201, 162, 39, 0.1) 0%, transparent 50%);
}

.crisis-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.crisis-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2rem;
  color: var(--color-cream);
}

.crisis-content p {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 254, 247, 0.9);
}

.crisis-list {
  text-align: left;
  max-width: 600px;
  margin: 2rem auto;
  background: rgba(0, 0, 0, 0.2);
  padding: 2rem;
}

.crisis-list h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--color-gold);
}

.crisis-list ul {
  list-style: none;
}

.crisis-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 1rem;
}

.crisis-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-gold);
}

/* Rebuttal Sections */
.rebuttal-section {
  padding: var(--section-padding) 0;
  border-bottom: 3px solid var(--color-gold);
}

.rebuttal-section.alt-bg {
  background: var(--color-cream);
}

.rebuttal-header {
  text-align: center;
  margin-bottom: 3rem;
}

.rebuttal-number {
  display: inline-block;
  background: var(--color-red);
  color: var(--color-cream);
  padding: 0.4rem 1.25rem;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.rebuttal-header h2 {
  font-family: var(--font-display);
  color: var(--color-navy);
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.subtitle {
  font-size: 1.1rem;
  color: #666;
  font-style: italic;
}

/* Claim Box (False/Misleading) */
.claim-box {
  background: var(--color-danger-light);
  border: 2px solid #ffcccc;
  padding: 2rem;
  margin: 2rem 0;
}

.claim-box h3 {
  color: var(--color-danger);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.false-quote {
  background: #fff;
  border-left: 5px solid var(--color-danger);
  padding: 1.5rem;
  margin: 1rem 0;
}

.false-quote p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: #333;
  margin-bottom: 0.75rem;
}

.false-quote cite {
  color: var(--color-danger);
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 600;
}

.claim-use {
  font-weight: 600;
  color: #333;
  margin-top: 1rem;
  font-size: 1rem;
}

/* Truth Box */
.truth-box {
  background: var(--color-success-light);
  border: 2px solid #a7d7a9;
  padding: 2rem;
  margin: 2rem 0;
}

.truth-box h3 {
  color: var(--color-success);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.truth-box>p {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
  color: #333;
}

.real-quote {
  background: #fff;
  border-left: 5px solid var(--color-success);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.real-quote p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: #333;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.real-quote cite {
  color: var(--color-success);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 600;
}

.emphasis-text {
  background: #fffacd;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--color-gold);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.5rem 0;
}

.bombshell {
  background: var(--color-gold);
  color: var(--color-ink);
  padding: 1.25rem 1.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 1.5rem 0;
  text-align: center;
}

/* What Believed Box */
.what-believed {
  background: #fff;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.what-believed h4 {
  font-family: var(--font-display);
  color: var(--color-navy);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.what-believed ul {
  list-style: none;
  padding-left: 0;
}

.what-believed li {
  padding-left: 2rem;
  margin-bottom: 0.7rem;
  position: relative;
  font-size: 1rem;
  color: #444;
}

.what-believed li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Breakdown Box */
.breakdown-box {
  background: #e8f4fc;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-left: 4px solid var(--color-navy);
}

.breakdown-box h4 {
  font-family: var(--font-display);
  color: var(--color-navy);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.proposal-list {
  list-style: none;
  padding-left: 0;
}

.proposal-list li {
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  background: #fff;
  font-size: 1rem;
}

.proposal-list li strong {
  color: var(--color-navy);
}

/* Why Matters */
.why-matters {
  background: var(--color-parchment);
  padding: 2rem;
  margin: 2rem 0;
  border-left: 5px solid var(--color-gold);
}

.why-matters h3 {
  font-family: var(--font-display);
  color: var(--color-navy);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.why-matters p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
}

/* Response Box */
.response-box {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  color: var(--color-cream);
  padding: 2rem;
  margin: 2rem 0;
}

.response-box h3 {
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.copyable-response {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.copyable-response p {
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.copy-btn {
  background: var(--color-red);
  color: var(--color-cream);
  border: none;
  padding: 0.75rem 1.75rem;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-body);
}

.copy-btn:hover {
  background: var(--color-red-dark);
  transform: translateY(-2px);
}


/* Creed Section */
.creed-section {
  background: var(--color-ink);
  color: var(--color-cream);
  text-align: center;
}

.creed-content {
  max-width: 800px;
  margin: 0 auto;
}

.creed-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 3rem;
  color: var(--color-gold);
}

.creed-lines {
  text-align: left;
}

.creed-line {
  font-family: var(--font-display);
  font-size: 1.1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 254, 247, 0.1);
  color: rgba(255, 254, 247, 0.9);
  font-style: italic;
}

.creed-line:first-child {
  border-top: 1px solid rgba(255, 254, 247, 0.1);
}

.creed-line strong {
  color: var(--color-cream);
  font-style: normal;
}

/* CTA Section */
.cta-section {
  background: var(--color-navy);
  color: var(--color-cream);
  text-align: center;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: rgba(255, 254, 247, 0.85);
}

.cta-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--color-gold);
  margin-bottom: 2.5rem;
}

/* Footer */
footer {
  background: var(--color-ink);
  color: var(--color-cream);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--color-gold);
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: rgba(255, 254, 247, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: var(--color-cream);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 254, 247, 0.1);
}

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(255, 254, 247, 0.5);
  margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 1024px) {

  .roots-content,
  .justice-grid {
    grid-template-columns: 1fr;
  }

  .equation-grid {
    grid-template-columns: 1fr;
  }

  .principles-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
  }

  .header-inner {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .wealth-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.hero-content>* {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.hero-content>*:nth-child(1) {
  animation-delay: 0.1s;
}

.hero-content>*:nth-child(2) {
  animation-delay: 0.2s;
}

.hero-content>*:nth-child(3) {
  animation-delay: 0.3s;
}

.hero-content>*:nth-child(4) {
  animation-delay: 0.4s;
}

.hero-content>*:nth-child(5) {
  animation-delay: 0.5s;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--color-navy);
  margin: 5px 0;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -7px);
}

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

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

  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFFFF;
    flex-direction: column;
    padding: 1rem 2rem 2rem;
    gap: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  nav ul li:last-child {
    border-bottom: none;
  }

  nav a {
    display: block;
    padding: 1rem 0;
  }

  nav a::after {
    display: none;
  }
}