/* CSS Variables - Design System */
:root {
  --morandi-bg: #F5F0EB;
  --morandi-surface: #FDFBF9;
  --morandi-primary: #B8A99A;
  --morandi-secondary: #9CAF96;
  --morandi-accent: #C4A882;
  --morandi-rose: #D4B5A0;
  --morandi-text-primary: #4A4340;
  --morandi-text-secondary: #8A8280;
  --morandi-border: #E8E0D8;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;
  --shadow-soft: 0 4px 20px -2px rgba(74, 67, 64, 0.05);
  --shadow-soft-lg: 0 10px 30px -5px rgba(74, 67, 64, 0.08);
}
/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: var(--morandi-bg);
  color: var(--morandi-text-primary);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
}
::selection {
  background-color: var(--morandi-primary);
  color: #fff;
}
h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: var(--font-serif);
  letter-spacing: -0.02em;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
/* Layout Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}
.page {
  display: none;
  min-height: 100vh;
  animation: fadeIn 0.4s ease-out forwards;
}
.page.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.5rem 0;
  transition: all 0.3s ease;
  background-color: transparent;
}
.navbar.glass-nav {
  padding: 1rem 0;
  background-color: rgba(245, 240, 235, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--morandi-border);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  margin-left: -0.5rem;
}
.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  flex: 1;
}
@media (min-width: 768px) {
  .logo { font-size: 1.875rem; }
}
.desktop-nav {
  display: none;
  flex: 1;
  justify-content: center;
}
.desktop-nav ul {
  display: flex;
  gap: 2.5rem;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--morandi-text-secondary);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s;
}
.nav-link:hover, .nav-link.active {
  color: var(--morandi-text-primary);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: var(--morandi-primary);
  width: 0;
  transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}
.nav-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  justify-content: flex-end;
}
.icon-btn {
  color: var(--morandi-text-secondary);
  transition: color 0.3s;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-btn:hover {
  color: var(--morandi-text-primary);
}
.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: var(--morandi-rose);
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.globe-icon {
  display: none;
}
@media (min-width: 640px) {
  .globe-icon { display: block; }
}
@media (min-width: 1024px) {
  .mobile-menu-btn { display: none; }
  .logo { flex: none; text-align: left; }
  .desktop-nav { display: flex; }
  .nav-icons { flex: none; gap: 1.5rem; }
}
/* Mobile Menu */
.mobile-menu {
  display: none;
  background-color: var(--morandi-surface);
  border-bottom: 1px solid var(--morandi-border);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-out;
}
.mobile-menu.open {
  display: block;
  max-height: 400px;
}
.mobile-menu ul {
  padding: 0.5rem 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-nav-link {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 1.125rem;
  font-family: var(--font-serif);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(232, 224, 216, 0.5);
  color: var(--morandi-text-primary);
}
.mobile-nav-link.active {
  color: var(--morandi-primary);
}
.mobile-lang {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--morandi-text-secondary);
  padding-top: 0.5rem;
  font-size: 0.875rem;
}
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: center;
}
.btn-primary {
  background-color: var(--morandi-text-primary);
  color: white;
}
.btn-primary:hover {
  background-color: var(--morandi-primary);
}
.btn-outline {
  border: 1px solid var(--morandi-text-primary);
  color: var(--morandi-text-primary);
}
.btn-outline:hover {
  background-color: var(--morandi-text-primary);
  color: white;
}
/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 3rem;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--morandi-bg), var(--morandi-surface));
}
.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
.hero-label {
  color: var(--morandi-primary);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  display: block;
}
.hero-title {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-title .italic {
  font-style: italic;
  color: var(--morandi-primary);
}
@media (min-width: 640px) { .hero-title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 4.5rem; } }
.hero-desc {
  font-size: 1.125rem;
  color: var(--morandi-text-secondary);
  margin-bottom: 2.5rem;
  max-width: 32rem;
  line-height: 1.6;
}
.hero-image-container {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (min-width: 640px) { .hero-image-container { height: 500px; } }
@media (min-width: 1024px) { 
  .hero-image-container { height: 600px; justify-content: flex-end; } 
}
.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 28rem;
  aspect-ratio: 4/5;
  border-radius: 1rem;
  box-shadow: var(--shadow-soft-lg);
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  z-index: 10;
}
.blob {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: multiply;
  filter: blur(24px);
  z-index: 0;
}
.blob-1 {
  top: -2.5rem;
  right: -2.5rem;
  width: 16rem;
  height: 16rem;
  background-color: rgba(156, 175, 150, 0.3);
  animation: float-blob-1 8s ease-in-out infinite;
}
.blob-2 {
  bottom: -2.5rem;
  left: -2.5rem;
  width: 18rem;
  height: 18rem;
  background-color: rgba(212, 181, 160, 0.3);
  animation: float-blob-2 10s ease-in-out infinite 1s;
}
@keyframes float-blob-1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}
@keyframes float-blob-2 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(20px) translateX(-10px); }
}
/* Sections */
.section {
  padding: 6rem 0;
}
.bg-surface { background-color: var(--morandi-surface); }
.bg-bg { background-color: var(--morandi-bg); }
.section-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) {
  .section-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.section-title {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}
.section-subtitle {
  color: var(--morandi-text-secondary);
}
.view-all-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--morandi-text-primary);
  border-bottom: 1px solid var(--morandi-text-primary);
  padding-bottom: 0.25rem;
  transition: color 0.3s;
}
.view-all-link:hover {
  color: var(--morandi-primary);
}
/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
/* Product Card */
.product-card {
  display: flex;
  flex-direction: column;
  background-color: var(--morandi-surface);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(232, 224, 216, 0.5);
  transition: all 0.3s ease;
}
.product-card:hover {
  box-shadow: var(--shadow-soft-lg);
}
.product-image-container {
  position: relative;
  aspect-ratio: 1/1;
  width: 100%;
  border-radius: 0.75rem;
  background-color: var(--morandi-bg);
  overflow: hidden;
  margin-bottom: 1rem;
}
.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.product-card:hover .product-image {
  transform: scale(1.1);
}
.product-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(253, 251, 249, 0.4);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
.product-card:hover .product-overlay {
  opacity: 1;
}
.add-to-cart-btn {
  background-color: var(--morandi-text-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transform: translateY(1rem);
  transition: all 0.3s ease;
}
.product-card:hover .add-to-cart-btn {
  transform: translateY(0);
}
.add-to-cart-btn:hover {
  background-color: var(--morandi-primary);
}
.add-to-cart-btn span {
  font-size: 0.875rem;
  font-weight: 500;
}
.product-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.25rem;
}
.product-name {
  font-size: 1.125rem;
  font-weight: 500;
  transition: color 0.3s;
}
.product-card:hover .product-name {
  color: var(--morandi-primary);
}
.product-price {
  font-weight: 500;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: auto;
  padding-top: 0.5rem;
}
.stars {
  display: flex;
  color: var(--morandi-accent);
}
.stars svg {
  width: 14px;
  height: 14px;
}
.stars svg.filled {
  fill: currentColor;
}
.stars svg.empty {
  opacity: 0.3;
}
.review-count {
  font-size: 0.75rem;
  color: var(--morandi-text-secondary);
  margin-left: 0.25rem;
}
/* Brand Teaser */
.brand-teaser {
  padding: 5rem 0;
  text-align: center;
}
.brand-teaser-content {
  max-width: 48rem;
  margin: 0 auto;
}
.brand-teaser-title {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}
.brand-teaser-desc {
  color: var(--morandi-text-secondary);
  margin-bottom: 2rem;
}
/* Shop Page */
.shop-page {
  padding-top: 8rem;
  padding-bottom: 6rem;
}
.shop-header {
  text-align: center;
  margin-bottom: 3rem;
}
.shop-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .shop-title { font-size: 3rem; } }
.shop-subtitle {
  color: var(--morandi-text-secondary);
  max-width: 42rem;
  margin: 0 auto;
}
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}
.filter-tab {
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  background: transparent;
  border: 1px solid var(--morandi-border);
  color: var(--morandi-text-secondary);
}
.filter-tab:hover {
  border-color: var(--morandi-text-primary);
  color: var(--morandi-text-primary);
}
.filter-tab.active {
  background-color: var(--morandi-text-primary);
  color: white;
  border-color: var(--morandi-text-primary);
}
.empty-state {
  text-align: center;
  padding: 5rem 0;
  color: var(--morandi-text-secondary);
  display: none;
}
/* Collections Page */
.collections-page {
  padding-top: 6rem;
}
.collection-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .collection-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .collection-grid { grid-template-columns: repeat(4, 1fr); } }
.collection-card {
  position: relative;
  height: 24rem;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow-soft);
  transition: all 0.5s ease;
}
.collection-card:hover {
  box-shadow: var(--shadow-soft-lg);
  transform: translateY(-4px);
}
.collection-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.collection-card:hover .collection-image {
  transform: scale(1.1);
}
.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2), transparent);
}
.collection-content {
  position: relative;
  z-index: 10;
  padding: 2rem;
}
.collection-title {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.5rem;
}
.collection-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(1rem);
  transition: all 0.3s ease;
}
.collection-card:hover .collection-desc {
  opacity: 1;
  transform: translateY(0);
}
.collection-line {
  width: 2rem;
  height: 2px;
  background-color: white;
  transition: width 0.3s ease;
}
.collection-card:hover .collection-line {
  width: 4rem;
}
/* About Page */
.about-page {
  padding-top: 6rem;
}
.brand-story-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .brand-story-grid { grid-template-columns: 1fr 1fr; }
}
.story-label {
  color: var(--morandi-primary);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: block;
}
.story-title {
  font-size: 2.25rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .story-title { font-size: 3rem; } }
.story-title .italic {
  font-style: italic;
  color: var(--morandi-primary);
}
.story-desc {
  font-size: 1.125rem;
  color: var(--morandi-text-secondary);
  margin-bottom: 3rem;
}
.values-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.value-item {
  display: flex;
  gap: 1rem;
}
.value-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--morandi-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--morandi-primary);
  border: 1px solid rgba(232, 224, 216, 0.5);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.value-title {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
.value-desc {
  color: var(--morandi-text-secondary);
}
.story-image-container {
  position: relative;
  height: 600px;
  display: none;
}
@media (min-width: 1024px) {
  .story-image-container { display: block; }
}
.story-image-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-image-inner {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 28rem;
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
  overflow: hidden;
  box-shadow: var(--shadow-soft-lg);
}
.story-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-image-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(184, 169, 154, 0.1);
  mix-blend-mode: overlay;
}
.story-badge {
  position: absolute;
  bottom: 5rem;
  right: 0;
  z-index: 40;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-soft-lg);
  border: 1px solid white;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.badge-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--morandi-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-icon span {
  font-family: var(--font-serif);
  color: var(--morandi-primary);
  font-style: italic;
  font-size: 1.25rem;
}
.badge-text-top {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-text-bottom {
  font-size: 0.625rem;
  color: var(--morandi-text-secondary);
}
/* Reviews */
.reviews-section {
  border-top: 1px solid rgba(232, 224, 216, 0.3);
}
.reviews-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}
.review-card {
  background-color: var(--morandi-bg);
  padding: 2rem;
  border-radius: 1rem;
  position: relative;
  box-shadow: var(--shadow-soft);
}
.review-quote-mark {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 3.75rem;
  font-family: var(--font-serif);
  color: rgba(184, 169, 154, 0.2);
  line-height: 1;
}
.review-stars {
  display: flex;
  color: var(--morandi-accent);
  margin-bottom: 1.5rem;
}
.review-stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.review-text {
  margin-bottom: 2rem;
  position: relative;
  z-index: 10;
  font-style: italic;
  line-height: 1.6;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--morandi-border);
}
.review-name {
  font-size: 0.875rem;
  font-weight: 500;
}
.review-location {
  font-size: 0.75rem;
  color: var(--morandi-text-secondary);
}
/* Footer */
.footer {
  background-color: var(--morandi-text-primary);
  color: var(--morandi-bg);
  padding: 5rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}
.footer-logo {
  font-size: 1.875rem;
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--morandi-bg);
  margin-bottom: 1.5rem;
  display: block;
}
.footer-desc {
  color: rgba(245, 240, 235, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.social-links {
  display: flex;
  gap: 1rem;
}
.social-link {
  color: rgba(245, 240, 235, 0.7);
  transition: color 0.3s;
}
.social-link:hover {
  color: white;
}
.footer-heading {
  font-size: 1.125rem;
  font-family: var(--font-serif);
  margin-bottom: 1.5rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-link {
  font-size: 0.875rem;
  color: rgba(245, 240, 235, 0.7);
  transition: color 0.3s;
}
.footer-link:hover {
  color: white;
}
.newsletter-desc {
  font-size: 0.875rem;
  color: rgba(245, 240, 235, 0.7);
  margin-bottom: 1rem;
}
.newsletter-form {
  position: relative;
}
.newsletter-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(245, 240, 235, 0.3);
  padding: 0.5rem 2.5rem 0.5rem 0;
  font-size: 0.875rem;
  color: white;
  transition: border-color 0.3s;
}
.newsletter-input::placeholder {
  color: rgba(245, 240, 235, 0.5);
}
.newsletter-input:focus {
  outline: none;
  border-color: white;
}
.newsletter-submit {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(245, 240, 235, 0.7);
  transition: color 0.3s;
}
.newsletter-submit:hover {
  color: white;
}
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 240, 235, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; }
}
.copyright {
  font-size: 0.75rem;
  color: rgba(245, 240, 235, 0.5);
}
.legal-links {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(245, 240, 235, 0.5);
}
.legal-link {
  transition: color 0.3s;
}
.legal-link:hover {
  color: white;
}
/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
