:root {
  /* Colors */
  --background: #fef3e7;
  --foreground: #1a1a1a;
  --muted: #f5f5f5;
  --muted-foreground: #666666;
  --border: #e5e5e5;
  --accent: #c9663c;
  --accent-light: #d4a574;
  --secondary: #f0f0f0;

  /* Typography - Updated to Raleway & Merriweather */
  --font-sans: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Merriweather', Georgia, serif;

  /* Spacing */
  --radius: 12px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-sans);
  color: var(--foreground);
  background: var(--background);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  /* Reduced from 1280px for better breathing room */
  margin: 0 auto;
  padding: 0 3rem;
  /* Increased from 2rem for more whitespace */
}

/* Typography - Merriweather for headers */
h1,
h2,
h3,
h4,
.section-title,
.hero h1 {
  font-family: var(--font-serif);
  letter-spacing: -0.02em;
}

/* ===== PREMIUM NAVBAR ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 250, 245, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(232, 221, 212, 0.3);
  transition: all 0.3s var(--transition-smooth);
}

.header.scrolled {
  background: rgba(255, 250, 245, 0.95);
  box-shadow: var(--shadow-sm);
}

.header-content {
  display: flex;
  height: 90px;
  /* Increased from 80px */
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--foreground);
  text-decoration: none;
  letter-spacing: -0.03em;
  transition: transform 0.3s var(--transition-smooth);
}

.logo:hover {
  transform: translateY(-2px);
}

.logo-img {
  height: 45px;
  width: auto;
  transition: transform 0.3s var(--transition-smooth);
}

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

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

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

.nav-link {
  position: relative;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--foreground);
  text-decoration: none;
  border-radius: 12px;
  white-space: nowrap;
  transition: all 0.3s var(--transition-smooth);
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  opacity: 0;
  transition: opacity 0.3s var(--transition-smooth);
  border-radius: 12px;
  z-index: -1;
}

.nav-link:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.nav-link:hover::before {
  opacity: 1;
}

.nav-link:active {
  transform: translateY(0);
}

.lang-toggle {
  display: flex;
  margin-left: 1rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(232, 221, 212, 0.5);
  border-radius: 12px;
  overflow: hidden;
  padding: 4px;
  box-shadow: var(--shadow-sm);
}

.lang-btn {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  background: transparent;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  border-radius: 8px;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.8);
  color: var(--foreground);
  transform: scale(1.05);
}

.lang-btn.active {
  background: white;
  color: var(--accent);
  box-shadow: var(--shadow-sm);
}

/* ===== PREMIUM BUTTONS ===== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s var(--transition-smooth);
  min-height: 56px;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: white;
  box-shadow: 0 4px 16px rgba(201, 102, 60, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201, 102, 60, 0.35);
}

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

.btn-outline {
  background: white;
  border: 2px solid var(--border);
  color: var(--foreground);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  background: var(--secondary);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 1.35rem 3rem;
  font-size: 1.05rem;
  min-height: 64px;
  border-radius: 16px;
}

.btn svg {
  transition: transform 0.3s var(--transition-smooth);
}

.btn:hover svg {
  transform: translateX(4px);
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 1.5rem;
  background: linear-gradient(to bottom, var(--background), var(--secondary));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 1.5rem;
}

.footer-brand {
  text-align: center;
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.footer-brand p {
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 300px;
  margin: 0 auto 1.5rem;
}

.footer-social {
  justify-content: center;
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  transition: all 0.3s var(--transition-smooth);
  text-decoration: none;
  background: white;
}

.footer-social a:hover {
  background: var(--foreground);
  color: white;
  border-color: var(--foreground);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.footer-column h4 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  color: var(--foreground);
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s var(--transition-smooth);
  display: inline-block;
}

.footer-column a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

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

/* ===== HAMBURGER MENU ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--foreground);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

.mobile-lang-toggle {
  display: none;
}

.desktop-only {
  display: flex;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .container {
    padding: 0 2.5rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 16px;
  }

  .container {
    padding: 0 1.5rem;
  }

  .hamburger {
    display: flex;
  }

  .desktop-only {
    display: none !important;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background: rgba(255, 250, 245, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem 2rem 2rem;
    gap: 0;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--border);
    max-height: calc(100vh - 90px);
    overflow-y: auto;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(232, 221, 212, 0.3);
    font-size: 1.1rem;
  }

  .nav-links li:last-child .nav-link {
    border-bottom: none;
  }

  .mobile-lang-toggle {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem 0 0.5rem;
    border-top: 1px solid var(--border);
    margin-top: 0.5rem;
  }

  .mobile-lang-toggle .lang-btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

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

  .footer-brand {
    margin: 0 auto;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-brand h3 {
    font-size: 1.25rem;
  }

  .footer-brand p {
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
  }

  .footer-column {
    text-align: center;
  }

  .footer-column ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}