/**
 * AR Flavour Labs - Founder's Story Page Styles
 * =============================================
 * Author: AR Flavour Labs Dev Team
 * Date: December 2024
 * 
 * Color Scheme: Luxurious Gold (#D4A84B) on Black base
 * Typography: Playfair Display (headings) + Outfit (body)
 * 
 * CSS Organization:
 * 1. CSS Variables (Custom Properties)
 * 2. Reset & Base Styles
 * 3. Typography Scale
 * 4. Layout Components
 * 5. Header & Navigation
 * 6. Hero Section
 * 7. Story Sections
 * 8. Pull Quotes & Highlights
 * 9. Profile Image
 * 10. Footer
 * 11. Animations & Transitions
 * 12. Utility Classes
 * 13. Responsive Breakpoints
 */

/* ===========================================
   1. CSS Variables (Custom Properties)
   =========================================== */
:root {
  /* Primary Colors - Gold & Black Luxury Theme */
  --color-gold: #D4A84B;
  --color-gold-light: #E8C97A;
  --color-gold-dark: #B8923D;
  --color-black: #0A0A0A;
  --color-black-soft: #141414;
  --color-black-lighter: #1E1E1E;
  
  /* Accent - Flame/Fire for highlights */
  --color-flame: #FF6B35;
  --color-ember: #FF8C42;
  
  /* Neutrals */
  --color-white: #FAFAFA;
  --color-cream: #F5F0E6;
  --color-gray-100: #E5E5E5;
  --color-gray-200: #CCCCCC;
  --color-gray-500: #666666;
  --color-gray-700: #333333;
  
  /* Typography */
  --font-heading: 'Playfair Display', 'Noto Serif Devanagari', Georgia, serif;
  --font-body: 'Outfit', 'Noto Sans', system-ui, sans-serif;
  --font-accent: 'Cormorant Garamond', 'Noto Serif Devanagari', serif;
  
  /* Font Sizes - Fluid Typography */
  --fs-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --fs-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --fs-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  --fs-lg: clamp(1.125rem, 1rem + 0.6vw, 1.375rem);
  --fs-xl: clamp(1.375rem, 1.2rem + 0.85vw, 1.75rem);
  --fs-2xl: clamp(1.75rem, 1.5rem + 1.25vw, 2.5rem);
  --fs-3xl: clamp(2.25rem, 1.8rem + 2.25vw, 3.5rem);
  --fs-4xl: clamp(2.75rem, 2rem + 3.75vw, 5rem);
  
  /* Spacing Scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  /* Layout */
  --max-width: 1200px;
  --content-width: 800px;
  --header-height: 72px;
  
  /* Borders & Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 24px;
  --radius-full: 50%;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 0 30px rgba(212, 168, 75, 0.3);
  --shadow-glow: 0 0 60px rgba(212, 168, 75, 0.2);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --transition-smooth: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===========================================
   2. Reset & Base Styles
   =========================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--color-white);
  background-color: var(--color-black);
  overflow-x: hidden;
}

/* Focus styles for accessibility */
:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

ul, ol {
  list-style: none;
}

/* ===========================================
   3. Typography Scale
   =========================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-gold);
}

h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }

p {
  margin-bottom: var(--space-md);
}

p:last-child {
  margin-bottom: 0;
}

/* ===========================================
   4. Layout Components
   =========================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.content-narrow {
  max-width: var(--content-width);
  margin: 0 auto;
}

/* Skip Link for Accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  z-index: 9999;
  padding: var(--space-sm) var(--space-md);
  background-color: var(--color-gold);
  color: var(--color-black);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-md);
}

/* ===========================================
   5. Header & Navigation
   =========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.95) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 168, 75, 0.15);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.header--hidden {
  transform: translateY(-100%);
}

.header--scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  z-index: 1001;
}

.logo__image {
  height: 48px;
  width: auto;
  transition: transform var(--transition-base);
}

.logo:hover .logo__image {
  transform: scale(1.05);
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__list {
  display: flex;
  gap: var(--space-lg);
}

.nav__link {
  position: relative;
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-gray-200);
  padding: var(--space-sm) 0;
  transition: color var(--transition-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-flame));
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-gold);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: var(--space-sm);
  z-index: 1001;
}

.nav__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-gold);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.nav__toggle-bar:nth-child(1) { margin-bottom: 6px; }
.nav__toggle-bar:nth-child(3) { margin-top: 6px; }

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ===========================================
   6. Hero Section
   =========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: calc(var(--header-height) + var(--space-3xl)) var(--space-lg) var(--space-3xl);
  overflow: hidden;
  background: radial-gradient(ellipse at center bottom, rgba(212, 168, 75, 0.08) 0%, transparent 60%),
              linear-gradient(180deg, var(--color-black) 0%, var(--color-black-soft) 100%);
}

/* Particle Canvas Container */
.hero__particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

#particle-canvas {
  width: 100%;
  height: 100%;
}

/* Decorative Pattern Overlay */
.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4A84B' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Vignette Effect */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, var(--color-black) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
}

/* Hero Logo */
.hero__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-xl);
}

.hero__logo-image {
  width: clamp(180px, 30vw, 280px);
  height: auto;
  filter: drop-shadow(0 0 30px rgba(212, 168, 75, 0.4));
  animation: logo-glow 3s ease-in-out infinite;
}

@keyframes logo-glow {
  0%, 100% { 
    filter: drop-shadow(0 0 30px rgba(212, 168, 75, 0.4));
    transform: scale(1);
  }
  50% { 
    filter: drop-shadow(0 0 50px rgba(212, 168, 75, 0.6));
    transform: scale(1.02);
  }
}

.hero__quote {
  font-family: var(--font-accent);
  font-size: var(--fs-3xl);
  font-weight: 500;
  font-style: italic;
  line-height: 1.3;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.hero__quote::before,
.hero__quote::after {
  color: var(--color-gold);
  font-size: 1.2em;
}

.hero__quote::before { content: '"'; }
.hero__quote::after { content: '"'; }

.hero__author {
  font-size: var(--fs-lg);
  font-weight: 400;
  color: var(--color-gold);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-3xl);
}

.hero__author::before {
  content: '— ';
}

.hero__tagline {
  margin-top: calc(-1 * var(--space-2xl));
  margin-bottom: var(--space-3xl);
  font-size: var(--fs-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gray-200);
}

/* CTA Button */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-black);
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(212, 168, 75, 0.5), var(--shadow-md);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn__icon {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.btn:hover .btn__icon {
  transform: translateY(3px);
}

/* Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-gray-500);
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scroll-bounce 2s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--color-gold) 0%, transparent 100%);
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===========================================
   7. Story Sections
   =========================================== */
.story {
  padding: var(--space-4xl) 0;
}

.story__section {
  padding: var(--space-3xl) 0;
  border-bottom: 1px solid rgba(212, 168, 75, 0.1);
}

.story__section:last-child {
  border-bottom: none;
}

.story__header {
  margin-bottom: var(--space-2xl);
}

.story__title {
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-md);
}

.story__title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-flame));
  border-radius: 2px;
}

.story__intro {
  font-size: var(--fs-xl);
  color: var(--color-cream);
  max-width: 700px;
}

/* Two-column layout for larger screens */
.story__grid {
  display: grid;
  gap: var(--space-3xl);
}

.story__text p {
  color: var(--color-gray-100);
  margin-bottom: var(--space-lg);
}

.story__text p:last-child {
  margin-bottom: 0;
}

/* Emphasis text */
.story__emphasis {
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--color-gold-light);
  font-style: italic;
}

/* ===========================================
   8. Pull Quotes & Highlights
   =========================================== */
.pull-quote {
  position: relative;
  margin: var(--space-2xl) 0;
  padding: var(--space-xl) var(--space-2xl);
  background: linear-gradient(135deg, rgba(212, 168, 75, 0.08) 0%, rgba(255, 107, 53, 0.05) 100%);
  border-left: 4px solid var(--color-gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.pull-quote__text {
  font-family: var(--font-accent);
  font-size: var(--fs-xl);
  font-style: italic;
  line-height: 1.5;
  color: var(--color-cream);
  margin: 0;
}

.pull-quote__icon {
  position: absolute;
  top: var(--space-md);
  right: var(--space-xl);
  width: 32px;
  height: 32px;
  opacity: 0.3;
  fill: var(--color-gold);
}

/* Numbered List - Reasons Section */
.reasons-list {
  counter-reset: reason;
}

.reason-item {
  position: relative;
  padding: var(--space-xl);
  padding-left: calc(var(--space-3xl) + var(--space-xl));
  margin-bottom: var(--space-xl);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 168, 75, 0.15);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.reason-item:hover {
  background: rgba(212, 168, 75, 0.05);
  border-color: rgba(212, 168, 75, 0.3);
  transform: translateX(4px);
}

.reason-item::before {
  counter-increment: reason;
  content: counter(reason);
  position: absolute;
  left: var(--space-xl);
  top: var(--space-xl);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--color-black);
  background: var(--color-gold);
  border-radius: var(--radius-full);
}

.reason-item__title {
  font-size: var(--fs-xl);
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.reason-item__text {
  color: var(--color-gray-100);
}

/* Highlight Box */
.highlight-box {
  margin: var(--space-2xl) 0;
  padding: var(--space-xl);
  background: linear-gradient(135deg, rgba(212, 168, 75, 0.1) 0%, rgba(212, 168, 75, 0.05) 100%);
  border: 1px solid rgba(212, 168, 75, 0.2);
  border-radius: var(--radius-lg);
  text-align: center;
}

.highlight-box__text {
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--color-cream);
  margin: 0;
}

.highlight-box__text strong {
  color: var(--color-gold);
}

/* ===========================================
   9. Profile Image
   =========================================== */
.profile {
  display: flex;
  justify-content: center;
  margin: var(--space-2xl) 0;
}

.profile__image-wrapper {
  position: relative;
  width: 220px;
  height: 220px;
}

.profile__image-wrapper::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-gold), var(--color-flame), var(--color-gold-dark));
  z-index: -1;
  animation: profile-glow 3s ease-in-out infinite;
}

.profile__image-wrapper::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(212, 168, 75, 0.2) 0%, transparent 70%);
  z-index: -2;
}

@keyframes profile-glow {
  0%, 100% { box-shadow: 0 0 30px rgba(212, 168, 75, 0.4); }
  50% { box-shadow: 0 0 50px rgba(212, 168, 75, 0.6); }
}

.profile__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-full);
  border: 4px solid var(--color-black);
  filter: grayscale(20%);
  transition: filter var(--transition-base);
}

.profile__image:hover {
  filter: grayscale(0%);
}

/* Placeholder SVG for missing image */
.profile__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-black-lighter);
  border-radius: var(--radius-full);
  border: 4px solid var(--color-black);
}

.profile__placeholder svg {
  width: 60%;
  height: 60%;
  fill: var(--color-gray-500);
}

/* ===========================================
   10. Mission Section
   =========================================== */
.mission {
  padding: var(--space-4xl) 0;
  background: linear-gradient(180deg, var(--color-black-soft) 0%, var(--color-black) 100%);
}

.mission__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.mission__title {
  margin-bottom: var(--space-2xl);
}

.mission__pillars {
  display: grid;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.mission__pillar {
  padding: var(--space-lg);
  background: rgba(212, 168, 75, 0.05);
  border: 1px solid rgba(212, 168, 75, 0.15);
  border-radius: var(--radius-md);
  font-size: var(--fs-lg);
  color: var(--color-cream);
  transition: all var(--transition-base);
}

.mission__pillar:hover {
  background: rgba(212, 168, 75, 0.1);
  transform: translateY(-2px);
}

.mission__pillar strong {
  color: var(--color-gold);
}

.mission__tagline {
  font-family: var(--font-accent);
  font-size: var(--fs-2xl);
  font-style: italic;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.mission__tagline-sub {
  font-size: var(--fs-lg);
  color: var(--color-gray-200);
}

/* ===========================================
   11. Footer
   =========================================== */
.footer {
  padding: var(--space-3xl) 0 var(--space-xl);
  background: var(--color-black);
  border-top: 1px solid rgba(212, 168, 75, 0.15);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  text-align: center;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.footer__logo {
  height: 40px;
  width: auto;
  opacity: 0.8;
}

.footer__tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
}

/* Social Links */
.social-links {
  display: flex;
  gap: var(--space-md);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(212, 168, 75, 0.3);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: var(--color-gray-200);
  transition: fill var(--transition-fast);
}

.social-link:hover {
  border-color: var(--color-gold);
  background: rgba(212, 168, 75, 0.1);
}

.social-link:hover svg {
  fill: var(--color-gold);
}

/* Contact Info */
.footer__contact {
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
}

.footer__contact a {
  color: var(--color-gold);
  transition: color var(--transition-fast);
}

.footer__contact a:hover {
  color: var(--color-gold-light);
  text-decoration: underline;
}

/* Copyright */
.footer__bottom {
  width: 100%;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer__copyright {
  font-size: var(--fs-xs);
  color: var(--color-gray-500);
}

/* ===========================================
   12. Animations & Transitions
   =========================================== */
/* Fade in animation for sections */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ===========================================
   13. Utility Classes
   =========================================== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }

/* ===========================================
   14. Responsive Breakpoints
   =========================================== */

/* Small devices (max-width: 640px) - Mobile First Base */
@media (max-width: 640px) {
  .header {
    height: 60px;
  }
  
  .logo__image {
    height: 36px;
  }
  
  /* Mobile Navigation */
  .nav__toggle {
    display: flex;
  }
  
  .nav__list {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    max-width: 80vw;
    flex-direction: column;
    gap: 0;
    padding: calc(60px + var(--space-xl)) var(--space-xl) var(--space-xl);
    background: var(--color-black-soft);
    border-left: 1px solid rgba(212, 168, 75, 0.2);
    transform: translateX(100%);
    transition: transform var(--transition-smooth);
  }
  
  .nav__list.active {
    transform: translateX(0);
  }
  
  .nav__link {
    display: block;
    padding: var(--space-md) 0;
    font-size: var(--fs-base);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  /* Mobile overlay */
  .nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
    z-index: 999;
  }
  
  .nav__overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  .hero {
    min-height: 100svh;
    padding: calc(60px + var(--space-2xl)) var(--space-md) var(--space-2xl);
  }
  
  .hero__scroll {
    display: none;
  }
  
  .profile__image-wrapper {
    width: 180px;
    height: 180px;
  }
  
  .pull-quote {
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
  }
  
  .reason-item {
    padding-left: var(--space-lg);
    padding-top: calc(var(--space-3xl) + var(--space-sm));
  }
  
  .reason-item::before {
    left: var(--space-lg);
    top: var(--space-md);
  }
}

/* Medium devices (641px - 1024px) */
@media (min-width: 641px) {
  .story__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  
  .story__grid--reverse {
    direction: rtl;
  }
  
  .story__grid--reverse > * {
    direction: ltr;
  }
  
  .mission__pillars {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  
  .footer__brand {
    align-items: flex-start;
  }
}

/* Large devices (1025px+) */
@media (min-width: 1025px) {
  .hero__content {
    max-width: 1000px;
  }
  
  .story__section {
    padding: var(--space-4xl) 0;
  }
  
  .profile__image-wrapper {
    width: 280px;
    height: 280px;
  }
  
  .mission__pillars {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --color-gold: #FFD700;
    --color-gray-100: #FFFFFF;
  }
  
  .header,
  .nav__list {
    border-color: var(--color-gold);
  }
}

/* Print styles */
@media print {
  .header,
  .hero__particles,
  .hero__scroll,
  .btn,
  .footer__social,
  .nav {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  h1, h2, h3, h4, .story__title, .mission__title {
    color: black;
  }
}

