/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Colors — consolidated 7-color palette */
  --color-primary: #3D545A;
  --color-dark: #2C3E42;
  --color-mid: #6B8584;
  --color-background: #F0EDE2;
  --color-accent: #C4A87A;
  --color-white: #FAFAF7;
  --color-border: rgba(61, 84, 90, 0.12);
  --color-border-light: rgba(61, 84, 90, 0.06);

  /* Typography */
  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Arboria', 'Helvetica Neue', 'Segoe UI', sans-serif;

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 40px;
  --spacing-3xl: 48px;
  --spacing-4xl: 64px;
  --spacing-5xl: 80px;
  --spacing-6xl: 120px;

  /* Layout */
  --layout-section-padding-y: 120px;
  --layout-section-padding-y-sm: 80px;
  --layout-container-max-width: 1280px;
  --layout-container-padding-x: 80px;
  --layout-hero-height: 720px;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Motion */
  --motion-fast: 100ms;
  --motion-base: 200ms;
  --motion-slow: 350ms;
  --motion-slower: 500ms;
  --motion-easing: cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 4px 16px rgba(61, 84, 90, 0.15);
  --shadow-lg: 0 12px 40px rgba(38, 51, 57, 0.08);

  /* Letter-spacing */
  --tracking-tight: -0.02em;
  --tracking-normal: 0.03em;
  --tracking-wide: 0.1em;
}

@media (max-width: 768px) {
  :root {
    --spacing-lg: 20px;
    --spacing-xl: 24px;
    --spacing-2xl: 32px;
    --spacing-3xl: 40px;
    --spacing-4xl: 48px;
    --spacing-5xl: 64px;
    --spacing-6xl: 80px;
    --layout-section-padding-y: 64px;
    --layout-section-padding-y-sm: 48px;
    --layout-container-padding-x: 20px;
  }
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

/* Dot texture applied only to section backgrounds, not cards or header */

body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background-color: var(--color-white);
  line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.08;
  letter-spacing: var(--tracking-tight);
  color: var(--color-dark);
}
h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: var(--tracking-tight);
}
h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.2;
}
h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
}
h5 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.35;
}

.body-lead {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
}
.body-sm {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
}
.overline {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-mid);
}

@media (max-width: 768px) {
  h1 { font-size: 34px; line-height: 1.12; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  h4 { font-size: 20px; }
  .body-lead { font-size: 18px; }
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--layout-container-max-width);
  margin: 0 auto;
  padding: 0 var(--layout-container-padding-x);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: var(--tracking-normal);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--motion-base) var(--motion-easing);
  text-decoration: none;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.btn-ghost:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-accent {
  background: var(--color-accent);
  color: var(--color-dark);
  font-weight: 600;
}
.btn-accent:hover {
  background: var(--color-accent);
  filter: brightness(0.88);
  transform: translateY(-1px);
}
.btn-sm {
  font-size: 14px;
  padding: 10px 20px;
}
.btn-icon {
  width: 20px;
  height: 20px;
  transition: transform var(--motion-fast) var(--motion-easing);
}
.btn:hover .btn-icon {
  transform: translateX(3px);
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  height: 76px;
  display: flex;
  align-items: center;
  transition: all var(--motion-slow) var(--motion-easing);
  background: transparent;
}
.header.scrolled {
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--color-border);
}
.header-inner {
  max-width: var(--layout-container-max-width);
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--layout-container-padding-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  color: var(--color-dark);
}
.logo svg {
  height: 28px;
  width: auto;
  fill: currentColor;
}
.nav { display: flex; align-items: center; gap: var(--spacing-2xl); }
.nav-links { display: flex; gap: var(--spacing-xl); list-style: none; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-dark);
  transition: color var(--motion-base) var(--motion-easing);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-accent);
  transition: width var(--motion-base) var(--motion-easing);
}
.nav-links a:hover::after { width: 100%; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}
.lang-switch {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
  letter-spacing: var(--tracking-normal);
  padding: 4px 0;
}
.lang-switch svg {
  width: 18px;
  height: 18px;
  color: var(--color-dark);
  flex-shrink: 0;
}
.lang-switch .chevron {
  width: 12px;
  height: 12px;
  color: var(--color-mid);
  transition: transform var(--motion-base) var(--motion-easing);
}
.lang-switch.open .chevron {
  transform: rotate(180deg);
}
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 6px;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all var(--motion-base) var(--motion-easing);
  z-index: 100;
}
.lang-switch.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-mid);
  cursor: pointer;
  transition: background var(--motion-fast) var(--motion-easing);
  text-decoration: none;
}
.lang-option:hover {
  background: var(--color-background);
}
.lang-option.active {
  color: var(--color-dark);
  font-weight: 600;
}
.lang-option .check {
  width: 14px;
  height: 14px;
  margin-left: auto;
  color: var(--color-primary);
  opacity: 0;
}
.lang-option.active .check {
  opacity: 1;
}
.cart-icon, .account-icon {
  width: 22px;
  height: 22px;
  color: var(--color-dark);
  cursor: pointer;
  position: relative;
}
.account-icon svg {
  width: 22px;
  height: 22px;
}

/* Mobile nav */
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.mobile-toggle span {
  display: block; width: 22px; height: 1.5px; background: var(--color-dark);
  margin: 5px 0; transition: all var(--motion-base) var(--motion-easing);
}

@media (max-width: 768px) {
  .header { padding: 0 var(--layout-container-padding-x); height: 64px; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .lang-switch { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
/* Wave dividers */
.wave-divider {
  display: block;
  width: 100%;
  line-height: 0;
  margin: -1px 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 16px;
}
.wave-divider--hero {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  margin: 0;
}

.dot-texture {
  position: relative;
}
.dot-texture::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(61, 84, 90, 0.13) 1px, transparent 1px);
  background-size: 24px 24px;
  z-index: 0;
}
.dot-texture > * {
  position: relative;
  z-index: 1;
}

.hero {
  min-height: var(--layout-hero-height);
  display: flex;
  align-items: flex-end;
  padding-top: 76px;
  padding-bottom: 0;
  background: var(--color-background);
  overflow: hidden;
  position: relative;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-4xl);
  align-items: end;
  width: 100%;
}
.hero-content {
  padding: var(--spacing-4xl) 0;
}
.hero-overline {
  margin-bottom: var(--spacing-lg);
}
.hero h1 {
  margin-bottom: var(--spacing-lg);
  position: relative;
  padding-bottom: var(--spacing-lg);
}
.hero h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
}
.hero-text {
  font-size: 20px;
  line-height: 1.65;
  color: var(--color-mid);
  margin-bottom: var(--spacing-2xl);
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}
.hero-image {
  position: relative;
  overflow: hidden;
  align-self: stretch;
}
.hero-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #b8c5b4 0%, #a8b9a0 30%, #c2cdb8 60%, #d4dcc8 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: var(--spacing-xl);
  position: relative;
}
.hero-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(255,255,255,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(100,120,90,0.2) 0%, transparent 50%);
}
.hero-image-label {
  position: relative;
  z-index: 1;
  background: rgba(38, 51, 57, 0.75);
  backdrop-filter: blur(8px);
  color: var(--color-white);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .hero { min-height: auto; padding-top: 64px; }
  .hero .container {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  .hero-content { padding: var(--spacing-2xl) 0 0; }
  .hero-image { max-height: 360px; aspect-ratio: 16/10; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--color-primary);
  padding: var(--spacing-xl) 0;
}
.trust-strip .container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: var(--spacing-4xl);
  max-width: 1100px;
}
.trust-text p {
  white-space: nowrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  flex: 1;
}
.trust-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon {
  width: 22px;
  height: 22px;
  color: #E0C994;
}
.trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  letter-spacing: var(--tracking-normal);
}
.trust-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .trust-strip .container {
    flex-direction: column;
    gap: var(--spacing-lg);
  }
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products {
  padding: var(--layout-section-padding-y) 0;
  background: var(--color-white);
}
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-4xl);
}
.section-header .overline {
  margin-bottom: var(--spacing-md);
  display: block;
}
.section-header h2 {
  margin-bottom: var(--spacing-md);
}
.section-header .body-lead {
  color: var(--color-mid);
  max-width: 560px;
  margin: 0 auto;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-3xl);
}
.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--motion-slow) var(--motion-easing);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product-image-wrap {
  position: relative;
  padding: var(--spacing-md) var(--spacing-md) 0;
  background: var(--color-background);
  aspect-ratio: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.product-badge {
  position: absolute;
  top: var(--spacing-md);
  left: var(--spacing-md);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}
.badge-swiss {
  background: var(--color-primary);
  color: var(--color-white);
}
.badge-bestseller {
  background: var(--color-accent);
  color: var(--color-dark);
}
.badge-new {
  background: var(--color-mid);
  color: var(--color-white);
}
.product-image-placeholder {
  width: 70%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--color-mid);
  text-align: center;
  padding: var(--spacing-md);
}
.placeholder-dose {
  background: linear-gradient(160deg, #c9c6b8, #b8b5a5);
  border: 1px solid rgba(0,0,0,0.06);
}
.placeholder-bottle {
  background: linear-gradient(160deg, #d4cdb8, #c4bca5);
  border: 1px solid rgba(0,0,0,0.06);
  aspect-ratio: 1/2.2;
  width: 35%;
  border-radius: var(--radius-md);
}
.placeholder-dose-sm {
  background: linear-gradient(160deg, #c4c1b3, #b3b0a2);
  border: 1px solid rgba(0,0,0,0.06);
  aspect-ratio: 1;
  width: 55%;
  border-radius: 50%;
}
.product-info {
  padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-xl);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-category {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-mid);
  margin-bottom: var(--spacing-xs);
}
.product-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: var(--spacing-sm);
  color: var(--color-dark);
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: var(--spacing-sm);
}
.stars {
  display: flex;
  gap: 1px;
  color: var(--color-accent);
}
.stars svg {
  width: 14px;
  height: 14px;
}
.rating-count {
  font-size: 14px;
  color: var(--color-mid);
}
.product-claim {
  font-size: 16px;
  color: var(--color-mid);
  line-height: 1.55;
  margin-bottom: var(--spacing-lg);
  flex: 1;
}
.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
}
.product-price {
  display: flex;
  align-items: baseline;
  gap: var(--spacing-xs);
}
.price-amount {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-dark);
}
.price-unit {
  font-size: 14px;
  color: var(--color-mid);
}
.btn-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-md);
  width: 42px;
  height: 42px;
  cursor: pointer;
  transition: all var(--motion-base) var(--motion-easing);
  flex-shrink: 0;
}
.btn-cart:hover {
  background: var(--color-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.btn-cart svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto var(--spacing-3xl);
  }
}

/* ============================================================
   VET QUOTE
   ============================================================ */
.vet-quote {
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--layout-section-padding-y) 0;
}
.vet-quote .container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--spacing-4xl);
  align-items: center;
  max-width: 1000px;
}
.vet-portrait {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-lg);
}
.vet-photo {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.15);
  object-fit: cover;
  object-position: center 20%;
}
.vet-info { text-align: center; }
.vet-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  color: var(--color-white);
  margin-bottom: 2px;
}
.vet-title {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2px;
}
.vet-clinic {
  font-size: 12px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.vet-content {
  position: relative;
}
.quote-mark {
  font-family: var(--font-heading);
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
  color: rgba(196, 168, 122, 0.2);
  position: absolute;
  top: -30px;
  left: -10px;
  user-select: none;
}
.vet-quote blockquote {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  color: rgba(255,255,255,0.92);
  position: relative;
  z-index: 1;
}
.vet-trust-note {
  margin-top: var(--spacing-xl);
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  letter-spacing: var(--tracking-normal);
}
.vet-trust-note svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
}

@media (max-width: 768px) {
  .vet-quote .container {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    text-align: center;
  }
  .vet-quote blockquote { font-size: 20px; }
  .vet-photo { width: 200px; height: 200px; }
  .quote-mark { display: none; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.85);
  padding: var(--spacing-5xl) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: var(--spacing-4xl);
  margin-bottom: var(--spacing-4xl);
}
.footer-brand-text {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin: var(--spacing-md) 0 var(--spacing-lg);
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: var(--spacing-md);
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--motion-base) var(--motion-easing);
}
.footer-social a:hover {
  border-color: var(--color-accent);
  background: rgba(255,255,255,0.05);
}
.footer-social svg { width: 16px; height: 16px; color: rgba(255,255,255,0.7); }
.footer-col h6 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--spacing-lg);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: var(--spacing-sm); }
.footer-links a {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  transition: color var(--motion-base) var(--motion-easing);
}
.footer-links a:hover { color: var(--color-accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--spacing-lg) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.footer-legal-links {
  display: flex;
  gap: var(--spacing-xl);
}
.footer-legal-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  transition: color var(--motion-base) var(--motion-easing);
}
.footer-legal-links a:hover { color: rgba(255,255,255,0.7); }
.footer-payments {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
}
.payment-icon {
  width: 38px;
  height: 24px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  letter-spacing: var(--tracking-normal);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
  }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  animation: fadeUp 0.7s var(--motion-easing) forwards;
}
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.35s; }
.fade-up-4 { animation-delay: 0.5s; }

/* Gentler, longer entrance specifically for the hero photo */
@keyframes heroImageIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(1.02);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}
.hero-image.fade-up {
  animation: heroImageIn 2.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.4s;
}
