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

/* ===== CSS VARIABLES ===== */
:root {
  --bg-primary: #08080a;
  --bg-secondary: #0e0e10;
  --bg-card: rgba(18, 18, 22, 0.9);
  --bg-card-hover: rgba(24, 24, 30, 0.95);
  --text-primary: #f0ede8;
  --text-secondary: #9a968e;
  --text-muted: #5a5854;
  --accent: #d4cfc5;
  --accent-warm: #e8e4db;
  --border-color: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.1);
  --border-hover: rgba(255, 255, 255, 0.15);
  --glow: rgba(240, 237, 232, 0.03);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  font-weight: 300;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: rgba(212, 207, 197, 0.2);
  color: var(--text-primary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 2rem 4rem;
  background: transparent;
  transition: var(--transition);
}

.header.scrolled {
  padding: 1.25rem 4rem;
  background: rgba(8, 8, 10, 0.85);
  backdrop-filter: blur(30px) saturate(1.2);
  -webkit-backdrop-filter: blur(30px) saturate(1.2);
  border-bottom: 1px solid var(--border-color);
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--text-primary);
  transition: var(--transition);
}

.logo:hover {
  letter-spacing: 0.3em;
  opacity: 0.8;
}

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

.nav-links {
  display: flex;
  gap: 3.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--text-secondary);
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--text-primary);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.social-links {
  display: flex;
  gap: 0.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--text-primary);
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.social-links svg {
  width: 16px;
  height: 16px;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 1px;
  background: var(--text-primary);
  transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10rem 2rem 8rem;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: linear-gradient(135deg, #0a0a0c 0%, #15151a 50%, #0a0a0c 100%);
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-background img.loaded {
  opacity: 1;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center top, transparent 0%, rgba(8, 8, 10, 0.4) 50%);
  z-index: 1;
}

.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 8, 10, 0.1) 0%,
    rgba(8, 8, 10, 0.3) 30%,
    rgba(8, 8, 10, 0.7) 70%,
    rgba(8, 8, 10, 1) 100%
  );
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: rgba(8, 8, 10, 0.6);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 3rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  animation: fadeInDown 1s ease-out;
  position: relative;
  z-index: 3;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 2rem;
  animation: fadeInUp 1.2s ease-out 0.2s both;
  position: relative;
  z-index: 3;
}

.hero-title .highlight {
  color: var(--accent-warm);
  font-weight: 500;
  display: block;
}

.hero-title .italic {
  font-style: italic;
  font-weight: 300;
  color: var(--text-secondary);
  font-size: 0.65em;
  display: block;
  margin-top: 0.5rem;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.9;
  animation: fadeInUp 1.2s ease-out 0.4s both;
  position: relative;
  z-index: 3;
}

.hero-subtitle span {
  display: block;
}

/* ===== HERO SHORT ===== */
.hero-short {
  min-height: 60vh;
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.hero-short .hero-title {
  font-size: clamp(2.25rem, 6vw, 4rem);
  margin-bottom: 1.25rem;
}

.hero-short .hero-subtitle {
  font-size: 1rem;
}

/* ===== SECTIONS ===== */
.section {
  padding: 2rem 2rem 4rem;
  max-width: 900px;
  margin: 0 auto;
}

/* ===== GLASS CARD ===== */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 28px;
  padding: 3.5rem;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 400;
  margin-bottom: 1.75rem;
  letter-spacing: 0.02em;
}

.card-lead {
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
  font-style: italic;
  opacity: 0.9;
}

.card-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 2;
}

.card-text p {
  margin-bottom: 1.5rem;
}

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

.quote-block {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--text-secondary);
  padding: 1.75rem 0 1.75rem 2rem;
  margin: 2rem 0;
  border-left: 1px solid var(--border-light);
  position: relative;
}

.quote-block::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: -0.5rem;
  font-size: 3rem;
  color: var(--border-light);
  font-family: var(--font-display);
}

.quote-block p {
  margin-bottom: 0.5rem;
}

/* ===== VIDEO ===== */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  margin-top: 2rem;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-primary);
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center;
  padding: 6rem 2rem 8rem;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.cta-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.cta-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-weight: 300;
}

/* ===== SUBSCRIBE FORM ===== */
.subscribe-form {
  display: flex;
  gap: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

.subscribe-input {
  flex: 1;
  padding: 1.25rem 1.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  outline: none;
  transition: var(--transition);
}

.subscribe-input::placeholder {
  color: var(--text-muted);
}

.subscribe-input:focus {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.02);
}

.subscribe-btn {
  padding: 1.25rem 2.5rem;
  background: var(--text-primary);
  border: none;
  border-radius: 12px;
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.subscribe-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(240, 237, 232, 0.3);
}

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

.subscribe-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn-link {
  display: inline-block;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: var(--transition);
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
}

.btn-link:hover {
  color: var(--text-primary);
  border-bottom-color: var(--text-primary);
}

.form-message {
  margin-top: 1.5rem;
  font-size: 0.9rem;
}

.form-message.success {
  color: #a8c4a0;
}

.form-message.error {
  color: #c4a0a0;
}

/* ===== CONTENT SECTION ===== */
.content-section {
  padding: 4rem 2rem 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.content-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 2.1;
  font-weight: 300;
}

.content-text p {
  margin-bottom: 2rem;
}

.content-text strong {
  color: var(--text-primary);
  font-weight: 400;
}

/* ===== PRIVACY PAGE ===== */
.privacy-section {
  padding: 12rem 2rem 6rem;
  max-width: 720px;
  margin: 0 auto;
}

.privacy-section h1 {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.privacy-section .last-updated {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 4rem;
  letter-spacing: 0.02em;
}

.privacy-section h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 3.5rem;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.privacy-section h3 {
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.privacy-section p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 2;
  font-weight: 300;
}

.privacy-section ul {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
  line-height: 2;
}

.privacy-section li {
  margin-bottom: 0.5rem;
}

.privacy-section a {
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.privacy-section a:hover {
  border-bottom-color: var(--text-primary);
}

/* ===== FOOTER ===== */
.footer {
  padding: 4rem 2rem;
  border-top: 1px solid var(--border-color);
  background: var(--bg-secondary);
  margin-top: 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}

.footer-links {
  display: flex;
  gap: 2.5rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--text-secondary);
}

.footer-social {
  display: flex;
  gap: 0.25rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-social a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation for multiple elements */
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header {
    padding: 1.25rem 1.5rem;
  }

  .header.scrolled {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    transform: translateX(100%);
    transition: var(--transition);
    z-index: 1000;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1rem;
    letter-spacing: 0.25em;
  }

  .social-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
    z-index: 1001;
  }

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

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

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

  .hero {
    padding: 8rem 1.5rem 5rem;
  }

  .hero-badge {
    font-size: 0.6rem;
    padding: 0.75rem 1.5rem;
  }

  .hero-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .section {
    padding: 1.5rem 1.5rem 3rem;
  }

  .glass-card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }

  .cta-section {
    padding: 4rem 1.5rem 5rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .subscribe-form {
    flex-direction: column;
  }

  .subscribe-btn {
    width: 100%;
    padding: 1.25rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .footer-social {
    justify-content: center;
  }

  .privacy-section {
    padding-top: 8rem;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--border-hover);
}
