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

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  background: #000F1F;
  color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Cormorant Garamond', serif; font-weight: 400; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font-family: 'Inter', sans-serif; }

/* ===== UTILITIES ===== */
.font-display { font-family: 'Cormorant Garamond', serif; }
.font-body { font-family: 'Inter', sans-serif; }
.font-mono { font-family: 'IBM Plex Mono', monospace; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-40 { gap: 40px; }
.hidden { display: none; }
.w-full { width: 100%; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  height: 80px;
  transition: all 0.3s ease;
  background: transparent;
}
.nav.scrolled {
  background: rgba(0, 15, 31, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #FFFFFF;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
  position: relative;
}
.nav-link:hover { color: #FFFFFF; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #D4AF37;
  transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }
.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 24px;
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn-nav:hover { background: rgba(255, 255, 255, 0.1); }

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 1px;
  background: #FFFFFF;
  transition: all 0.3s ease;
}
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #000F1F;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: #FFFFFF;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.mobile-menu.open a { opacity: 1; transform: translateY(0); }
.mobile-menu.open a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 24px;
  color: #FFFFFF;
  background: none;
  border: none;
  cursor: pointer;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: #D4AF37;
  color: #000F1F;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: all 0.2s ease-out;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn-primary:hover { background: #E5C04A; transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 24px;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.1); }

/* ===== SECTION LABEL ===== */
.section-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #D4AF37;
  margin-bottom: 20px;
  display: block;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,15,31,0.3) 0%, rgba(0,15,31,0.1) 40%, rgba(0,15,31,0.5) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}
.hero-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
  display: block;
  text-transform: uppercase;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.1;
  margin: 0;
}
.hero-title em {
  font-style: italic;
  font-size: 1.05em;
  display: inline-block;
  transform: skew(-2deg);
}
.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
  margin-top: 24px;
  line-height: 1.5;
}
.hero-categories {
  position: absolute;
  bottom: 100px;
  left: 48px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 32px;
}
.hero-categories-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
}
.hero-categories a {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}
.hero-categories a:hover { color: #FFFFFF; }
.hero-counter {
  position: absolute;
  bottom: 100px;
  right: 48px;
  z-index: 2;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.1em;
}
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
}
.scroll-indicator-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
}
.scroll-indicator-dot {
  width: 6px;
  height: 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: scrollBounce 2s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(15px); }
}

/* ===== ABOUT SECTION ===== */
.about-section { background: #000F1F; padding: 120px 0; }
.about-grid { display: grid; grid-template-columns: 55% 45%; gap: 64px; align-items: center; }
.about-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.15;
  margin: 0;
}
.about-title em { font-style: italic; }
.about-text {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  max-width: 460px;
  margin-top: 28px;
  line-height: 1.6;
}
.about-link {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #FFFFFF;
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s ease;
}
.about-link:hover { color: #D4AF37; }
.about-image-wrapper { position: relative; display: flex; justify-content: flex-end; }
.about-image { width: 100%; max-width: 400px; aspect-ratio: 3/4; object-fit: cover; }
.about-accent {
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 80px;
  background: #D4AF37;
}

/* ===== SERVICES ===== */
.services-section { background: #001A33; padding: 120px 0; }
.services-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.15;
  margin: 0;
}
.services-title em { font-style: italic; }
.service-card {
  background: transparent;
  border-top: 1px solid #1A3A5C;
  padding-top: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.service-card:hover .service-title { transform: translateX(8px); }
.service-card:hover .service-number { color: #D4AF37; }
.service-card:hover .service-line { transform: scaleX(1); }
.service-number {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
  transition: color 0.3s ease;
}
.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: #FFFFFF;
  transition: transform 0.3s ease;
  line-height: 1.3;
}
.service-title em { font-style: italic; }
.service-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 12px;
  line-height: 1.6;
}
.service-line {
  width: 100%;
  height: 1px;
  background: #D4AF37;
  margin-top: 12px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

/* ===== QUOTE ===== */
.quote-section { background: #000F1F; padding: 160px 48px; }
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px;
  color: rgba(212, 175, 55, 0.3);
  line-height: 0.5;
  margin-bottom: 20px;
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.3;
  max-width: 800px;
  margin: 0 auto;
}
.quote-attr {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 32px;
  letter-spacing: 0.05em;
}

/* ===== KNOWLEDGE ===== */
.knowledge-section { background: #001A33; padding: 120px 0; }
.knowledge-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.15;
  margin: 0;
}
.knowledge-title em { font-style: italic; }
.knowledge-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 16px;
  max-width: 500px;
}
.article-card {
  background: #001A33;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s ease;
  text-decoration: none;
  display: block;
}
.article-card:hover .article-img { transform: scale(1.04); }
.article-card:hover .article-card-title { color: #D4AF37; }
.article-img-wrap { overflow: hidden; aspect-ratio: 16/9; }
.article-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.article-content { padding: 24px; }
.article-category {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #D4AF37;
  text-transform: uppercase;
}
.article-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: #FFFFFF;
  margin-top: 8px;
  line-height: 1.3;
  transition: color 0.3s ease;
}
.article-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-date {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 16px;
  display: block;
}

/* ===== CONTACT CTA ===== */
.contact-section { background: #000F1F; padding: 120px 0; }
.contact-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
  color: #FFFFFF;
}
.contact-cta-title em { font-style: italic; color: #D4AF37; }
.contact-cta-text {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  max-width: 440px;
  margin-top: 24px;
  line-height: 1.6;
}
.contact-detail-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.contact-detail a {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #FFFFFF;
  transition: color 0.3s ease;
}
.contact-detail a:hover { color: #D4AF37; }
.contact-detail span {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #FFFFFF;
  line-height: 1.6;
}

/* ===== GLOBE ===== */
.globe-section { background: #000F1F; padding: 80px 48px 120px; }
.globe-container {
  width: 500px;
  height: 500px;
  margin: 0 auto;
  position: relative;
}

/* ===== FOOTER ===== */
.footer { background: #000F1F; padding: 80px 48px 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #FFFFFF;
}
.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 16px;
  line-height: 1.6;
}
.footer-heading {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-link {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}
.footer-link:hover { color: #FFFFFF; }
.footer-contact {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}
.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}
.footer-contact a:hover { color: #FFFFFF; }
.footer-bottom {
  border-top: 1px solid #1A3A5C;
  margin-top: 60px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
}
.footer-legal { display: flex; gap: 16px; }
.footer-legal a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.3s ease;
}
.footer-legal a:hover { color: rgba(255, 255, 255, 0.6); }

/* ===== COOKIE CONSENT ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 26, 51, 0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid #1A3A5C;
  z-index: 99999;
  padding: 24px 48px;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  flex: 1;
}
.cookie-text a { color: #D4AF37; text-decoration: underline; }
.cookie-buttons { display: flex; gap: 12px; flex-shrink: 0; }

/* ===== BLOG PAGE ===== */
.blog-page { background: #000F1F; min-height: 100vh; padding-top: 80px; }
.blog-header { padding: 60px 0 80px; }
.blog-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.1;
  margin: 16px 0 0;
}
.blog-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  max-width: 540px;
  margin-top: 20px;
  line-height: 1.6;
}
.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: #001A33;
  margin-bottom: 48px;
  overflow: hidden;
  text-decoration: none;
}
.featured-img-wrap { overflow: hidden; aspect-ratio: 16/9; }
.featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.featured-article:hover .featured-img { transform: scale(1.04); }
.featured-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}
.featured-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: #FFFFFF;
  margin-top: 12px;
  line-height: 1.3;
}
.featured-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 12px;
  line-height: 1.6;
}

/* ===== BLOG POST ===== */
.blog-post-page { background: #000F1F; min-height: 100vh; padding-top: 80px; }
.blog-post-content { max-width: 800px; margin: 0 auto; padding: 60px 48px 120px; }
.blog-post-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.blog-post-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.15;
  margin: 0;
}
.blog-post-image { margin-top: 40px; overflow: hidden; }
.blog-post-image img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.blog-post-body {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 48px;
}
.blog-post-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: #FFFFFF;
  margin: 32px 0 12px;
}
.blog-post-body p { margin-bottom: 16px; }
.blog-post-body strong { color: #FFFFFF; font-weight: 500; }
.blog-post-body a { color: #D4AF37; text-decoration: underline; }
.blog-post-body ul { padding-left: 20px; margin: 8px 0 16px; }
.blog-post-body li { margin-bottom: 8px; }
.back-link {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 40px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s ease;
}
.back-link:hover { color: #D4AF37; }

/* ===== ABOUT PAGE ===== */
.about-page { background: #000F1F; min-height: 100vh; padding-top: 80px; }
.about-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.1;
  margin: 16px 0 0;
}
.about-hero-title em { font-style: italic; }
.about-body {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}
.about-body p { margin-bottom: 20px; }
.value-card {
  border-top: 1px solid #1A3A5C;
  padding-top: 32px;
}
.value-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: #FFFFFF;
  margin: 0 0 12px;
}
.value-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: #D4AF37;
  line-height: 1;
}
.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
}

/* ===== CONTACT PAGE ===== */
.contact-page { background: #000F1F; min-height: 100vh; padding-top: 80px; }
.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.1;
  margin: 16px 0 0;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-group { margin-bottom: 0; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  background: transparent;
  border: 1px solid #1A3A5C;
  padding: 12px 16px;
  color: #FFFFFF;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s ease;
  font-family: 'Inter', sans-serif;
}
.form-input:focus { border-color: #D4AF37; }
.form-input::placeholder { color: rgba(255, 255, 255, 0.25); }
textarea.form-input { resize: vertical; min-height: 150px; }
select.form-input {
  appearance: none;
  background: #000F1F;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.4)' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
}
.checkbox-wrap input[type="checkbox"] {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  accent-color: #D4AF37;
  flex-shrink: 0;
}
.checkbox-wrap label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}
.checkbox-wrap label a { color: #D4AF37; text-decoration: underline; }

/* ===== DANKE PAGE ===== */
.danke-page {
  background: #000F1F;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 48px 48px;
}
.danke-check {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  color: #D4AF37;
  line-height: 1;
  margin-bottom: 32px;
}
.danke-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.2;
  margin: 0;
}
.danke-text {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 20px;
  line-height: 1.6;
}
.danke-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

/* ===== LEGAL PAGES ===== */
.legal-page { background: #000F1F; min-height: 100vh; padding-top: 80px; }
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 48px 120px;
}
.legal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.1;
  margin: 16px 0 48px;
}
.legal-body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}
.legal-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: #FFFFFF;
  margin: 32px 0 12px;
}
.legal-body p { margin-bottom: 12px; }
.legal-body a { color: #D4AF37; text-decoration: underline; }
.legal-body ul { padding-left: 20px; margin: 8px 0 16px; }
.legal-body li { margin-bottom: 8px; }
.legal-body table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.legal-body th {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #D4AF37;
  text-transform: uppercase;
  text-align: left;
  padding: 12px 16px 12px 0;
  border-bottom: 1px solid #1A3A5C;
}
.legal-body td {
  padding: 16px 16px 16px 0;
  border-bottom: 1px solid rgba(26, 58, 92, 0.5);
  font-size: 14px;
  vertical-align: top;
}
.legal-body td strong { color: #FFFFFF; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 0 20px; }
  .hero-categories { left: 20px; display: none; }
  .hero-counter { right: 20px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .featured-article { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .globe-container { width: 320px; height: 320px; }
  .quote-section { padding: 80px 20px; }
  .cookie-inner { flex-direction: column; }
  .cookie-buttons { width: 100%; justify-content: center; }
}

@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
}
