/* ============================================================
   Akoko — West African Cuisine Redesign
   Design system: Premium dark mode, earthy tones, luxury feel.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Inter:wght@300;400;500&display=swap');

:root {
  /* Colors */
  --bg-dark: #0a0908;
  --bg-card: #151312;
  --text-main: #f4f1eb;
  --text-muted: #b8b2a7;
  --accent-gold: #c29b62;
  --accent-gold-hover: #dfb57b;
  --border-color: rgba(194, 155, 98, 0.2);
  
  /* Typography */
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Inter", sans-serif;
  
  /* Spacing & Sizes */
  --space-section: clamp(4rem, 10vw, 8rem);
  --gutter: clamp(1.5rem, 5vw, 4rem);
  --radius: 4px;
  --ease: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-main);
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 1rem;
  color: var(--text-main);
}

h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

p {
  margin: 0 0 1.2rem;
  font-weight: 300;
}

/* Utilities */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--accent-gold);
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.button::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--accent-gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s var(--ease-out);
  z-index: -1;
}

.button:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.button:hover {
  color: var(--bg-dark);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(10,9,8,0.9) 0%, rgba(10,9,8,0) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(194, 155, 98, 0.1);
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-side {
  flex: 1;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-side--right {
  justify-content: flex-end;
}

.brand {
  flex: 0 0 auto;
  margin: 0 2rem;
}

.brand__logo-svg {
  height: 25px;
  width: auto;
  overflow: visible;
}

.logo-text {
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.1em;
  fill: transparent;
  stroke: var(--text-main);
  stroke-width: 1px;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawLogo 3s ease forwards;
}

@keyframes drawLogo {
  0% {
    stroke-dashoffset: 300;
    fill: transparent;
  }
  70% {
    stroke-dashoffset: 0;
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 0;
    fill: var(--text-main);
  }
}

.brand:hover .brand__logo {
  transform: scale(1.05);
}

.nav-link {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-out);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-btn {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--accent-gold);
  border-radius: 2px;
  color: var(--accent-gold);
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__image-wrapper {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
}

.hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: slowZoom 20s ease-out infinite alternate;
}

.hero__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to right, rgba(10,9,8,0.95) 0%, rgba(10,9,8,0.6) 40%, rgba(10,9,8,0.2) 100%);
  z-index: 1;
}

.hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 5rem;
}

.hero__content-box {
  max-width: 600px;
  animation: fadeUp 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 1.05;
  margin-bottom: 2rem;
  color: #fff;
}

.hero__desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 85%;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.button--solid {
  background: var(--accent-gold);
  color: var(--bg-dark);
  border-color: var(--accent-gold);
}

.button--solid::before {
  background: var(--text-main);
}

.button--solid:hover {
  border-color: var(--text-main);
  color: var(--bg-dark);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero__scroll span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(194, 155, 98, 0.3);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-gold);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

/* Story Feature (Homepage) */
.story-feature {
  padding: var(--space-section) 0;
  background: var(--bg-card);
  position: relative;
}

.story-feature--alt {
  background: var(--bg-dark);
}

.story-feature__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media(min-width: 900px) {
  .story-feature__grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
  }
  .story-feature__grid--reverse {
    grid-template-columns: 1.2fr 1fr;
  }
}

.story-feature__content {
  padding: 2rem 0;
}

.story-feature__title {
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

.story-feature__lead {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.story-feature__text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.story-feature__images {
  position: relative;
  height: 500px;
}

.story-feature__img-main {
  width: 80%;
  height: 80%;
  object-fit: cover;
  border-radius: var(--radius);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.story-feature__img-accent {
  width: 50%;
  height: 55%;
  object-fit: cover;
  border-radius: var(--radius);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  border: 10px solid var(--bg-card);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: transform 0.5s var(--ease-out);
}

.story-feature__images:hover .story-feature__img-accent {
  transform: translate(-10px, -10px);
}

/* Menu Feature */
.menu-feature {
  position: relative;
  padding: var(--space-section) 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.menu-feature__bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.menu-feature__bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,9,8,0.7);
}

.menu-feature__card {
  position: relative;
  z-index: 2;
  background: rgba(21,19,18,0.9);
  padding: 4rem;
  max-width: 600px;
  border-left: 2px solid var(--accent-gold);
  backdrop-filter: blur(10px);
}

.menu-feature__title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.menu-feature__text {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Experiences Grid */
.experiences {
  padding: var(--space-section) 0;
  background: var(--bg-card);
}

.experiences__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

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

.experience-card {
  position: relative;
}

.experience-card--offset {
  transform: translateY(40px);
}

.experience-card__img {
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.experience-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.experience-card:hover .experience-card__img img {
  transform: scale(1.05);
}

.experience-card__content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.experience-card__content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.text-button {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-gold);
  padding-bottom: 0.2rem;
  transition: opacity 0.3s ease;
}

.text-button:hover {
  opacity: 0.7;
}

/* Gift Banner */
.gift-banner {
  padding: var(--space-section) 0;
  background: var(--bg-card);
}

.gift-banner__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media(min-width: 900px) {
  .gift-banner__container {
    grid-template-columns: 1fr 1fr;
  }
}

.gift-banner__content h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.gift-banner__content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.gift-banner__image {
  height: 100%;
  min-height: 400px;
}

.gift-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Info Section */
.info-section {
  padding: var(--space-section) 0;
  background: var(--bg-dark);
}

.info-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  text-align: center;
}

@media(min-width: 768px) {
  .info-section__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.info-block h3 {
  color: var(--accent-gold);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.info-block p {
  color: var(--text-main);
  line-height: 1.8;
}

.info-block em {
  color: var(--text-muted);
  font-style: italic;
}

/* Custom Cursor */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background-color 0.3s;
  mix-blend-mode: difference;
}

.cursor.hovered {
  width: 40px;
  height: 40px;
  background-color: var(--text-main);
  opacity: 0.5;
}

/* Film Grain Overlay */
.grain {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.04;
  background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
  animation: grain 1.5s steps(2) infinite;
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-1%, -1%); }
  20% { transform: translate(1%, 1%); }
  30% { transform: translate(-2%, 2%); }
  40% { transform: translate(2%, -2%); }
  50% { transform: translate(-1%, 2%); }
  60% { transform: translate(2%, 1%); }
  70% { transform: translate(-2%, -1%); }
  80% { transform: translate(1%, -2%); }
  90% { transform: translate(1%, 2%); }
}

/* Hide default cursor on desktop */
@media (pointer: fine) {
  body {
    cursor: none;
  }
  a, button, input {
    cursor: none;
  }
}

/* Press Section */
.press-section {
  padding: 4rem 0;
  background: var(--bg-card);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.press__container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  text-align: center;
}

@media(min-width: 768px) {
  .press__container {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }
}

.press-logo h4 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 1rem;
}

.press-quote {
  font-family: var(--font-secondary);
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

/* Split Section (Image Text Widget) */
.split-section {
  display: flex;
  flex-direction: column;
}

/* Menu Page Styles */
.menu-page-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.menu-page-hero__bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.menu-page-hero__overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(10,9,8,0.6);
  z-index: 1;
}

.menu-page-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter);
}

.menu-page-hero__title {
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--text-main);
  margin-bottom: 1rem;
}

.editorial-menu {
  padding: var(--space-section) var(--gutter);
  background: var(--bg-dark);
}

.editorial-menu__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media(min-width: 768px) {
  .editorial-menu__grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.menu-block {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
}

.menu-block h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 2.5rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.2rem;
  border-bottom: 1px dotted rgba(255,255,255,0.15);
  padding-bottom: 0.8rem;
}

.menu-item__name {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  color: var(--text-main);
}

.menu-item__price {
  font-family: var(--font-secondary);
  font-size: 1rem;
  color: var(--text-muted);
}

.dietary-notice {
  background: var(--bg-card);
  padding: var(--space-section) var(--gutter);
  text-align: center;
  border-top: 1px solid var(--border-color);
}

.dietary-notice__inner {
  max-width: 700px;
  margin: 0 auto;
}

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

.dietary-notice p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.1rem;
}

@media(min-width: 900px) {
  .split-section {
    flex-direction: row;
    min-height: 80vh;
  }
  .split-section--reverse {
    flex-direction: row-reverse;
  }
}

.split-section__image {
  flex: 1;
  position: relative;
  min-height: 50vh;
  overflow: hidden;
}

.split-section__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.split-section:hover .split-section__image img {
  transform: scale(1.05);
}

.split-section__text {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-section) var(--gutter);
  background-size: cover;
  background-position: center;
  position: relative;
}

.split-section__text::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,9,8,0.85); /* Overlay to ensure text readability on bg images */
}

.split-section__inner {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.inner-links {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.text-button {
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: var(--accent-gold);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.2rem;
  display: inline-block;
  width: fit-content;
}

.text-button:hover {
  border-bottom-color: var(--accent-gold);
}

/* Intro Text */
.intro-text {
  padding: var(--space-section) 0;
  text-align: center;
  background: var(--bg-card);
}

.intro-text h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
}

.intro-text p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-muted);
}

/* Newsletter */
.newsletter {
  padding: var(--space-section) var(--gutter);
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,9,8,0.9);
}

.newsletter-inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-direction: column;
}

@media(min-width: 600px) {
  .form-group {
    flex-direction: row;
  }
}

.form-input {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-bottom-color: var(--accent-gold);
}

/* Footer */
footer {
  background: var(--bg-dark);
  padding: var(--space-section) var(--gutter) 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

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

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

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Story Page Specifics */
.story-page-hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.story-page-hero__bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.story-page-hero__overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(10,9,8,0.5);
  z-index: 1;
}

.story-page-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter);
}

.story-quote {
  padding: 8rem var(--gutter);
  background: var(--bg-card);
  text-align: center;
}

.story-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--accent-gold);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.3;
}

.story-quote cite {
  display: block;
  margin-top: 2rem;
  font-family: var(--font-primary);
  font-size: 1.2rem;
  color: var(--text-main);
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Timeline */
.timeline-section {
  padding: var(--space-section) var(--gutter);
  background: var(--bg-dark);
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255,255,255,0.1);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
  width: 100%;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-item__content {
  width: 45%;
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-item__content {
  text-align: left;
}

.timeline-item__content h3 {
  font-family: var(--font-display);
  color: var(--accent-gold);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.timeline-item__content p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.1rem;
}

.timeline-item__point {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: var(--bg-dark);
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  z-index: 2;
}

/* Three Pillars */
.pillars-section {
  padding: var(--space-section) var(--gutter);
  background: var(--bg-card);
  text-align: center;
}

.pillars-section h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  margin-bottom: 4rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media(min-width: 768px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar-card {
  padding: 3rem 2rem;
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color 0.4s ease;
}

.pillar-card:hover {
  border-color: rgba(255,255,255,0.2);
}

.pillar-card h3 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pillar-card p {
  color: var(--text-muted);
  line-height: 1.8;
}

@media(max-width: 768px) {
  .timeline::before {
    left: 20px;
  }
  .timeline-item {
    flex-direction: column !important;
    align-items: flex-start;
  }
  .timeline-item__content {
    width: 100%;
    text-align: left !important;
    padding-left: 50px;
  }
  .timeline-item__point {
    left: 20px;
    transform: translate(-50%, 0);
    top: 10px;
  }
}
