:root {
  --rose-500: #f43f5e;
  --rose-600: #e11d48;
  --purple-500: #a855f7;
  --purple-600: #9333ea;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --green-500: #22c55e;
  --white: #ffffff;
  --cream-50: #fffdf7;
  --cream-100: #fef3e2;
  --cream-200: #fde68a;
  --gold-100: #fef3c7;
  --gold-200: #fde68a;
  --gold-400: #dbb978;
  --gold-500: #d4a574;
  --gold-600: #b8860b;
  --gold-700: #92400e;
  --font-serif: 'Georgia', 'Times New Roman', serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: Poppins, system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--gray-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}
a { color: inherit; text-decoration: none; }
a:focus, button:focus, input:focus { outline: 2px solid var(--gold-500); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
img { max-width: 100%; height: auto; display: block; }
.container { width: 100%; max-width: 72rem; margin: 0 auto; padding: 0 1rem; position: relative; z-index: 1; overflow: visible; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-in-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in-scale.visible {
  opacity: 1;
  transform: scale(1);
}
.fade-in:nth-child(1) { transition-delay: 0s; }
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.4s; }
.fade-in:nth-child(6) { transition-delay: 0.5s; }

.gradient-text {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--white);
  box-shadow: 0 4px 14px rgba(184, 134, 11, 0.4);
}
.btn-primary:hover { box-shadow: 0 6px 20px rgba(184, 134, 11, 0.5); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold-500);
  color: var(--gold-600);
}
.btn-outline:hover { background: var(--cream-100); }
.btn-outline-light {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.25); }
.btn-white {
  background: var(--white);
  color: var(--gold-600);
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
  max-width: 100vw;
  box-sizing: border-box;
}
@media (min-width: 768px) { .site-header { padding: 1rem 1.5rem; } }
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
@media (min-width: 768px) { .site-logo { font-size: 1.25rem; } }
.site-logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
@media (min-width: 768px) { .site-logo img { width: 40px; height: 40px; } }
.site-logo-text { display: none; }
@media (min-width: 480px) { .site-logo-text { display: inline; } }
.site-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) { .site-nav { display: flex; } }
.site-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--white); }
.site-nav a.active { color: var(--white); font-weight: 600; }
.header-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
@media (min-width: 768px) { .header-cta { gap: 0.75rem; } }
.header-cta .btn {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  white-space: nowrap;
}
@media (min-width: 768px) { .header-cta .btn { padding: 0.5rem 1rem; font-size: 0.875rem; } }

/* Mobile Menu */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  cursor: pointer;
  color: var(--white);
}
@media (min-width: 768px) { .mobile-menu-btn { display: none; } }
.mobile-nav {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: rgba(17,24,39,0.95);
  backdrop-filter: blur(20px);
  padding: 1rem;
  z-index: 99;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 0.75rem 1rem;
  color: rgba(255,255,255,0.9);
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-nav a:hover { background: rgba(255,255,255,0.1); }
.mobile-nav a.active { color: var(--white); font-weight: 600; }
@media (min-width: 768px) { .mobile-nav { display: none !important; } }

/* Section Styles */
section { padding: 4rem 0; }
@media (min-width: 768px) { section { padding: 6rem 0; } }
.section-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold-600);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .section-title { font-size: 2rem; } }
@media (min-width: 768px) { .section-title { font-size: 2.5rem; } }
.section-desc {
  color: var(--gray-600);
  max-width: 36rem;
  line-height: 1.7;
}

/* CTA Banner */
.cta-banner {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  overflow: hidden;
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}
.cta-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .cta-title { font-size: 2.25rem; } }
@media (min-width: 768px) { .cta-title { font-size: 2.75rem; } }
.cta-desc {
  font-size: 1rem;
  opacity: 0.9;
  max-width: 32rem;
  margin: 0 auto 2rem;
}

/* Footer */
footer {
  position: relative;
  background: url('/images/landing/footer-castle.jpg') center bottom/cover no-repeat;
  color: var(--white);
  padding: 4rem 0 2rem;
}
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,24,39,0.85) 0%, rgba(17,24,39,0.95) 100%);
}
footer .container {
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr repeat(3, 1fr); } }
.footer-brand { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.footer-tagline { color: var(--gray-400); font-size: 0.875rem; margin-bottom: 1rem; }
.footer-column h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--gray-300);
}
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 0.5rem; }
.footer-column a {
  font-size: 0.875rem;
  color: var(--gray-400);
  transition: color 0.2s;
}
.footer-column a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--gray-800);
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gray-900);
  color: var(--white);
  padding: 1rem;
  z-index: 1000;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-content {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 768px) { .cookie-content { flex-direction: row; justify-content: space-between; } }
.cookie-text { font-size: 0.875rem; color: var(--gray-300); }
.cookie-text a { color: var(--gold-500); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 0.5rem; }
.cookie-btn {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  cursor: pointer;
  border: none;
}
.cookie-btn-accept { background: var(--gold-500); color: var(--white); }
.cookie-btn-decline { background: transparent; color: var(--gray-400); border: 1px solid var(--gray-600); }
