/* ============================================================
   DAS BABYFLAIR — Premium Baby Concept Store
   Main Stylesheet
   
   Color Palette:
     Beige:       #e7e1d9
     Warm White:  #faf9f7
     Blush Pink:  rgba(255,145,129,0.4) → rgba(254,91,124,0.3)
     Dark Text:   #121212
   
   Fonts:
     Headings: 'Outfit', sans-serif
     Body:     'Inter', sans-serif
   ============================================================ */

/* ===========================================
   0. CSS CUSTOM PROPERTIES (Design Tokens)
   =========================================== */
:root {
  /* ---- Colors ---- */
  --color-beige:          #e7e1d9;
  --color-beige-light:    #efe9e2;
  --color-beige-dark:     #d5cec4;
  --color-warm-white:     #faf9f7;
  --color-cream:          #f5f0eb;
  --color-blush-start:    rgba(255, 145, 129, 0.4);
  --color-blush-end:      rgba(254, 91, 124, 0.3);
  --color-blush-solid:    #ff9181;
  --color-blush-deep:     #fe5b7c;
  --color-dark:           #121212;
  --color-dark-soft:      #2a2a2a;
  --color-text:           #333333;
  --color-text-muted:     #777777;
  --color-text-light:     #999999;
  --color-white:          #ffffff;
  --color-overlay-light:  rgba(255, 255, 255, 0.12);
  --color-overlay-dark:   rgba(18, 18, 18, 0.45);
  --color-shadow:         rgba(18, 18, 18, 0.08);
  --color-shadow-strong:  rgba(18, 18, 18, 0.15);
  --color-glass-bg:       rgba(255, 255, 255, 0.25);
  --color-glass-border:   rgba(255, 255, 255, 0.35);
  --color-success:        #6cbf84;
  --color-error:          #e85d5d;

  /* ---- Gradients ---- */
  --gradient-blush:       linear-gradient(135deg, var(--color-blush-start), var(--color-blush-end));
  --gradient-blush-solid: linear-gradient(135deg, #ff9181, #fe5b7c);
  --gradient-blush-soft:  linear-gradient(135deg, rgba(255,145,129,0.15), rgba(254,91,124,0.1));
  --gradient-warm:        linear-gradient(180deg, var(--color-warm-white) 0%, var(--color-beige) 100%);
  --gradient-dark:        linear-gradient(180deg, #1a1a1a 0%, var(--color-dark) 100%);
  --gradient-hero:        linear-gradient(160deg, rgba(250,249,247,0.95) 0%, rgba(231,225,217,0.85) 50%, rgba(255,145,129,0.25) 100%);
  --gradient-shimmer:     linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);

  /* ---- Typography ---- */
  --font-heading:         'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:            'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-size-base:       16px;
  --font-size-xs:         0.75rem;
  --font-size-sm:         0.875rem;
  --font-size-md:         1rem;
  --font-size-lg:         1.125rem;
  --font-size-xl:         1.25rem;
  --font-size-2xl:        1.5rem;
  --font-size-3xl:        2rem;
  --font-size-4xl:        2.5rem;
  --font-size-5xl:        3.5rem;
  --font-size-6xl:        4.5rem;
  --font-size-display:    6rem;
  --line-height-tight:    1.15;
  --line-height-snug:     1.3;
  --line-height-normal:   1.6;
  --line-height-relaxed:  1.8;
  --letter-spacing-tight: -0.03em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide:  0.05em;
  --letter-spacing-wider: 0.12em;
  --letter-spacing-ultra: 0.25em;

  /* ---- Spacing ---- */
  --space-2xs:  0.25rem;
  --space-xs:   0.5rem;
  --space-sm:   0.75rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2rem;
  --space-2xl:  3rem;
  --space-3xl:  4rem;
  --space-4xl:  6rem;
  --space-5xl:  8rem;
  --space-6xl:  12rem;

  /* ---- Layout ---- */
  --container-sm:    640px;
  --container-md:    768px;
  --container-lg:    1024px;
  --container-xl:    1200px;
  --container-2xl:   1440px;
  --header-height:   80px;
  --section-padding: var(--space-4xl) var(--space-lg);

  /* ---- Borders ---- */
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    30px;
  --radius-pill:  9999px;
  --radius-round: 50%;
  --border-thin:  1px solid var(--color-beige);
  --border-glass: 1px solid var(--color-glass-border);

  /* ---- Shadows ---- */
  --shadow-xs:     0 1px 3px var(--color-shadow);
  --shadow-sm:     0 2px 8px var(--color-shadow);
  --shadow-md:     0 4px 16px var(--color-shadow);
  --shadow-lg:     0 8px 32px var(--color-shadow);
  --shadow-xl:     0 16px 48px var(--color-shadow-strong);
  --shadow-glow:   0 0 30px rgba(255, 145, 129, 0.2);
  --shadow-card:   0 4px 20px rgba(18, 18, 18, 0.06);
  --shadow-card-hover: 0 12px 40px rgba(18, 18, 18, 0.12);
  --shadow-button: 0 4px 15px rgba(255, 145, 129, 0.3);

  /* ---- Transitions ---- */
  --ease-out:      cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out:   cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth:   cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast:   0.2s;
  --duration-normal: 0.3s;
  --duration-slow:   0.5s;
  --duration-slower: 0.6s;
  --duration-anim:   0.8s;

  /* ---- Z-Index Scale ---- */
  --z-behind:    -1;
  --z-base:      1;
  --z-dropdown:  100;
  --z-sticky:    200;
  --z-overlay:   300;
  --z-modal:     400;
  --z-toast:     500;
}


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

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-md);
  font-weight: 400;
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background-color: var(--color-warm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Scroll Snap Container (optional — applied to main) */
main {
  scroll-snap-type: y proximity;
}

main > section {
  scroll-snap-align: start;
}

/* ---- Links ---- */
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-normal) var(--ease-smooth);
}

a:hover {
  color: var(--color-blush-solid);
}

a:focus-visible {
  outline: 2px solid var(--color-blush-solid);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ---- Images ---- */
img,
picture,
video,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

img {
  object-fit: cover;
}

/* ---- Lists ---- */
ul, ol {
  list-style: none;
}

/* ---- Buttons ---- */
button, input, textarea, select {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* ---- Misc ---- */
::selection {
  background-color: rgba(255, 145, 129, 0.25);
  color: var(--color-dark);
}

::-moz-selection {
  background-color: rgba(255, 145, 129, 0.25);
  color: var(--color-dark);
}


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

::-webkit-scrollbar-track {
  background: var(--color-warm-white);
}

::-webkit-scrollbar-thumb {
  background: var(--color-beige-dark);
  border-radius: var(--radius-pill);
  border: 2px solid var(--color-warm-white);
  transition: background var(--duration-normal) var(--ease-smooth);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-blush-solid);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-beige-dark) var(--color-warm-white);
}


/* ===========================================
   3. TYPOGRAPHY
   =========================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: var(--line-height-tight);
  color: var(--color-dark);
  letter-spacing: var(--letter-spacing-tight);
}

h1 {
  font-size: var(--font-size-4xl);
  font-weight: 700;
}

h2 {
  font-size: var(--font-size-3xl);
}

h3 {
  font-size: var(--font-size-2xl);
}

h4 {
  font-size: var(--font-size-xl);
}

h5 {
  font-size: var(--font-size-lg);
}

h6 {
  font-size: var(--font-size-md);
  font-weight: 500;
}

p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

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

.text-light {
  color: var(--color-text-light);
}

.text-accent {
  color: var(--color-blush-solid);
}

.text-gradient {
  background: var(--gradient-blush-solid);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

/* Decorative Label / Tagline */
.label,
.tagline {
  font-family: var(--font-heading);
  font-size: var(--font-size-xs);
  font-weight: 500;
  letter-spacing: var(--letter-spacing-ultra);
  text-transform: uppercase;
  color: var(--color-blush-solid);
  margin-bottom: var(--space-sm);
  display: inline-block;
}

.label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--color-blush-solid);
  vertical-align: middle;
  margin-right: var(--space-xs);
}

/* Section heading group */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-3xl);
}

.section-header .tagline {
  margin-bottom: var(--space-sm);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  color: var(--color-text-muted);
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
}

/* Decorative dot separator */
.dot-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  margin: var(--space-lg) auto;
}

.dot-separator span {
  width: 5px;
  height: 5px;
  border-radius: var(--radius-round);
  background: var(--color-blush-solid);
  opacity: 0.5;
}

.dot-separator span:nth-child(2) {
  width: 7px;
  height: 7px;
  opacity: 1;
}


/* ===========================================
   4. LAYOUT & CONTAINERS
   =========================================== */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--sm {
  max-width: var(--container-sm);
}

.container--md {
  max-width: var(--container-md);
}

.container--lg {
  max-width: var(--container-lg);
}

.container--2xl {
  max-width: var(--container-2xl);
}

/* Section base */
section {
  position: relative;
  padding: var(--section-padding);
  overflow: hidden;
}

/* Alternating section backgrounds */
.section--light {
  background-color: var(--color-warm-white);
}

.section--cream {
  background-color: var(--color-cream);
}

.section--beige {
  background-color: var(--color-beige);
}

.section--dark {
  background-color: var(--color-dark);
  color: var(--color-warm-white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark h5,
.section--dark h6 {
  color: var(--color-warm-white);
}

.section--dark p {
  color: rgba(255, 255, 255, 0.75);
}

.section--dark .tagline,
.section--dark .label {
  color: var(--color-blush-solid);
}

.section--dark .label::before {
  background: var(--color-blush-solid);
}

.section--gradient {
  background: var(--gradient-blush-soft);
}

/* Grid Systems */
.grid {
  display: grid;
  gap: var(--space-xl);
}

.grid--2 {
  grid-template-columns: 1fr;
}

.grid--3 {
  grid-template-columns: 1fr;
}

.grid--4 {
  grid-template-columns: 1fr;
}

/* Flex Utilities */
.flex {
  display: flex;
}

.flex--center {
  align-items: center;
  justify-content: center;
}

.flex--between {
  align-items: center;
  justify-content: space-between;
}

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

.flex--wrap {
  flex-wrap: wrap;
}

.flex--gap-sm { gap: var(--space-sm); }
.flex--gap-md { gap: var(--space-md); }
.flex--gap-lg { gap: var(--space-lg); }
.flex--gap-xl { gap: var(--space-xl); }


/* ===========================================
   5. KEYFRAME ANIMATIONS
   =========================================== */

/* ---- Fade Animations ---- */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ---- Scale ---- */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes scaleInBounce {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  60% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* ---- Slide ---- */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* ---- Float (gentle hovering) ---- */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) rotate(0.5deg);
  }
  75% {
    transform: translateY(4px) rotate(-0.5deg);
  }
}

@keyframes floatHorizontal {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
}

/* ---- Shimmer ---- */
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes shimmerOverlay {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* ---- Pulse ---- */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 145, 129, 0.4);
  }
  50% {
    box-shadow: 0 0 20px 8px rgba(255, 145, 129, 0.15);
  }
}

/* ---- Rotate ---- */
@keyframes rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ---- Bounce ---- */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(-8px);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

/* ---- Parallax Drift ---- */
@keyframes parallaxDrift {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.02);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

/* ---- Blob Morph ---- */
@keyframes blobMorph {
  0%   { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  25%  { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  50%  { border-radius: 50% 60% 30% 60% / 30% 70% 50% 60%; }
  75%  { border-radius: 60% 30% 60% 40% / 70% 40% 60% 30%; }
  100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

/* ---- Underline draw ---- */
@keyframes drawLine {
  from { width: 0; }
  to   { width: 100%; }
}

/* ---- Marquee ---- */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Gradient shift ---- */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ---- Wave separator animation ---- */
@keyframes waveMove {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Heart beat (for icons) ---- */
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  14%      { transform: scale(1.15); }
  28%      { transform: scale(1); }
  42%      { transform: scale(1.1); }
  56%      { transform: scale(1); }
}

/* ---- Stagger helper ---- */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }
.delay-7 { animation-delay: 0.7s; }
.delay-8 { animation-delay: 0.8s; }


/* ---- Animation utility classes ---- */
.animate {
  opacity: 0;
  will-change: transform, opacity;
}

.animate.in-view {
  animation-fill-mode: forwards;
  animation-duration: var(--duration-anim);
  animation-timing-function: var(--ease-out);
}

.animate--fade-up.in-view       { animation-name: fadeInUp; }
.animate--fade-down.in-view     { animation-name: fadeInDown; }
.animate--fade-left.in-view     { animation-name: fadeInLeft; }
.animate--fade-right.in-view    { animation-name: fadeInRight; }
.animate--scale.in-view         { animation-name: scaleIn; }
.animate--scale-bounce.in-view  { animation-name: scaleInBounce; }
.animate--slide-left.in-view    { animation-name: slideInFromLeft; }
.animate--slide-right.in-view   { animation-name: slideInFromRight; }

.float          { animation: float 4s ease-in-out infinite; }
.float--slow    { animation: floatSlow 6s ease-in-out infinite; }
.float--horiz   { animation: floatHorizontal 5s ease-in-out infinite; }
.pulse          { animation: pulse 2s ease-in-out infinite; }
.pulse-glow     { animation: pulseGlow 2.5s ease-in-out infinite; }
.rotate         { animation: rotate 20s linear infinite; }
.rotate--slow   { animation: rotateSlow 40s linear infinite; }
.bounce-gentle  { animation: bounce 2s ease-in-out infinite; }


/* ===========================================
   6. BUTTONS
   =========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.875rem 2rem;
  font-family: var(--font-heading);
  font-size: var(--font-size-sm);
  font-weight: 500;
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--duration-normal) var(--ease-spring),
    box-shadow var(--duration-normal) var(--ease-smooth),
    background var(--duration-normal) var(--ease-smooth),
    color var(--duration-normal) var(--ease-smooth),
    border-color var(--duration-normal) var(--ease-smooth);
  white-space: nowrap;
  isolation: isolate;
}

/* Shimmer sweep on hover */
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left var(--duration-slow) var(--ease-smooth);
  z-index: 1;
}

.btn:hover::after {
  left: 100%;
}

.btn:active {
  transform: scale(0.97);
}

.btn:focus-visible {
  outline: 2px solid var(--color-blush-solid);
  outline-offset: 3px;
}

/* Primary */
.btn--primary {
  background: var(--gradient-blush-solid);
  color: var(--color-white);
  box-shadow: var(--shadow-button);
  border: none;
}

.btn--primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 145, 129, 0.4);
  color: var(--color-white);
}

/* Secondary / Outline */
.btn--secondary {
  background: transparent;
  color: var(--color-dark);
  border: 1.5px solid var(--color-dark);
}

.btn--secondary:hover {
  background: var(--color-dark);
  color: var(--color-warm-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Ghost */
.btn--ghost {
  background: transparent;
  color: var(--color-blush-solid);
  border: 1.5px solid var(--color-blush-solid);
}

.btn--ghost:hover {
  background: var(--color-blush-solid);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* White variant (on dark backgrounds) */
.btn--white {
  background: var(--color-white);
  color: var(--color-dark);
  border: none;
}

.btn--white:hover {
  background: var(--color-warm-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--color-dark);
}

/* Outline White (on dark backgrounds) */
.btn--outline-white {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
  transform: translateY(-2px);
  color: var(--color-white);
}

/* Sizes */
.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: var(--font-size-xs);
}

.btn--lg {
  padding: 1.1rem 2.75rem;
  font-size: var(--font-size-md);
}

/* Icon inside button */
.btn__icon {
  display: inline-flex;
  align-items: center;
  transition: transform var(--duration-normal) var(--ease-spring);
}

.btn:hover .btn__icon {
  transform: translateX(3px);
}

/* Button group */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
}


/* ===========================================
   7. CARD COMPONENTS
   =========================================== */
.card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition:
    transform var(--duration-slow) var(--ease-out),
    box-shadow var(--duration-slow) var(--ease-out);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

/* Card Image */
.card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slower) var(--ease-out);
}

.card:hover .card__image img {
  transform: scale(1.08);
}

/* Image Overlay Gradient */
.card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(18, 18, 18, 0.5) 100%
  );
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}

.card:hover .card__image::after {
  opacity: 1;
}

/* Card Body */
.card__body {
  padding: var(--space-xl);
}

.card__body h3 {
  margin-bottom: var(--space-xs);
  font-size: var(--font-size-xl);
}

.card__body p {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-md);
}

/* Card Tag */
.card__tag {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: var(--space-2xs) var(--space-sm);
  background: var(--color-white);
  border-radius: var(--radius-pill);
  font-size: var(--font-size-xs);
  font-weight: 500;
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  color: var(--color-blush-solid);
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

/* Card Link Underline */
.card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  font-family: var(--font-heading);
  font-size: var(--font-size-sm);
  font-weight: 500;
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  color: var(--color-blush-solid);
  position: relative;
}

.card__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-blush-solid);
  transition: width var(--duration-normal) var(--ease-out);
}

.card:hover .card__link::after {
  width: 100%;
}

/* Card — Glassmorphism Variant */
.card--glass {
  background: var(--color-glass-bg);
  border: var(--border-glass);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: var(--shadow-sm);
}

.card--glass:hover {
  background: rgba(255, 255, 255, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

/* Card — Minimal / No shadow */
.card--minimal {
  box-shadow: none;
  border: var(--border-thin);
}

.card--minimal:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--color-blush-solid);
}

/* Card — Feature / Icon */
.card--feature {
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
}

.card--feature .card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: var(--gradient-blush-soft);
  color: var(--color-blush-solid);
  font-size: var(--font-size-2xl);
  transition:
    transform var(--duration-normal) var(--ease-spring),
    background var(--duration-normal) var(--ease-smooth);
}

.card--feature:hover .card__icon {
  transform: scale(1.1) rotate(-5deg);
  background: var(--gradient-blush-solid);
  color: var(--color-white);
}


/* ===========================================
   8. GLASSMORPHISM UTILITY
   =========================================== */
.glass {
  background: var(--color-glass-bg);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
}

.glass--dark {
  background: rgba(18, 18, 18, 0.4);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass--strong {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
}


/* ===========================================
   9. HEADER / NAVIGATION
   =========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: var(--z-sticky);
  transition:
    background var(--duration-slow) var(--ease-smooth),
    box-shadow var(--duration-slow) var(--ease-smooth),
    height var(--duration-normal) var(--ease-smooth);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--space-lg);
  max-width: var(--container-2xl);
  margin: 0 auto;
}

/* Transparent state */
.header--transparent {
  background: transparent;
}

/* Scrolled / solid state */
.header--scrolled {
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 20px rgba(18, 18, 18, 0.06);
  height: 70px;
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  z-index: var(--z-sticky);
}

.header__logo-img {
  height: 38px;
  width: auto;
  transition: height var(--duration-normal) var(--ease-smooth);
}

.header--scrolled .header__logo-img {
  height: 32px;
}

.header__logo-text {
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-wider);
  text-transform: uppercase;
  color: var(--color-dark);
  transition: color var(--duration-normal) var(--ease-smooth);
}

.header__logo-text span {
  font-weight: 300;
}

/* Navigation */
.nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: rgba(250, 249, 247, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  z-index: calc(var(--z-sticky) - 1);
}

.nav--open {
  display: flex;
  animation: fadeIn var(--duration-normal) var(--ease-out);
}

.nav__link {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: 400;
  letter-spacing: var(--letter-spacing-wide);
  color: var(--color-dark);
  text-decoration: none;
  position: relative;
  padding: var(--space-xs) 0;
  transition:
    color var(--duration-normal) var(--ease-smooth),
    transform var(--duration-normal) var(--ease-spring);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-blush-solid);
  border-radius: var(--radius-pill);
  transition: width var(--duration-normal) var(--ease-out);
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-blush-solid);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

/* Hamburger */
.header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: var(--z-sticky);
  background: none;
  border: none;
  padding: 0;
  justify-content: center;
}

.header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-dark);
  border-radius: var(--radius-pill);
  transition:
    transform var(--duration-normal) var(--ease-out),
    opacity var(--duration-fast) var(--ease-smooth),
    width var(--duration-normal) var(--ease-out);
  transform-origin: center;
}

.header__hamburger span:nth-child(2) {
  width: 70%;
}

.header__hamburger:hover span:nth-child(2) {
  width: 100%;
}

/* Hamburger active state (X) */
.header__hamburger--active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.header__hamburger--active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Header CTA (desktop) */
.header__cta {
  display: none;
}


/* ===========================================
   10. HERO SECTION
   =========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding: calc(var(--header-height) + var(--space-2xl)) var(--space-lg) var(--space-2xl);
}

/* Decorative blobs */
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}

.hero__blob--1 {
  width: 400px;
  height: 400px;
  background: rgba(255, 145, 129, 0.3);
  top: -100px;
  right: -100px;
  animation: floatSlow 8s ease-in-out infinite;
}

.hero__blob--2 {
  width: 300px;
  height: 300px;
  background: rgba(254, 91, 124, 0.2);
  bottom: -50px;
  left: -80px;
  animation: floatSlow 10s ease-in-out infinite reverse;
}

.hero__blob--3 {
  width: 200px;
  height: 200px;
  background: rgba(231, 225, 217, 0.6);
  top: 40%;
  left: 50%;
  animation: blobMorph 12s ease-in-out infinite, float 6s ease-in-out infinite;
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: var(--z-base);
  text-align: center;
  max-width: 800px;
}

.hero__tagline {
  font-family: var(--font-heading);
  font-size: var(--font-size-xs);
  font-weight: 500;
  letter-spacing: var(--letter-spacing-ultra);
  text-transform: uppercase;
  color: var(--color-blush-solid);
  margin-bottom: var(--space-lg);
  animation: fadeInDown var(--duration-anim) var(--ease-out) 0.2s backwards;
}

.hero__tagline::before,
.hero__tagline::after {
  content: '—';
  margin: 0 var(--space-xs);
  opacity: 0.4;
}

.hero__title {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
  color: var(--color-dark);
  margin-bottom: var(--space-lg);
  animation: fadeInUp var(--duration-anim) var(--ease-out) 0.4s backwards;
}

.hero__title span {
  display: block;
}

.hero__title .highlight {
  background: var(--gradient-blush-solid);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.hero__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto var(--space-2xl);
  line-height: var(--line-height-relaxed);
  animation: fadeInUp var(--duration-anim) var(--ease-out) 0.6s backwards;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  animation: fadeInUp var(--duration-anim) var(--ease-out) 0.8s backwards;
}

/* Hero image (if used) */
.hero__image {
  position: relative;
  z-index: var(--z-base);
  animation: scaleIn 1s var(--ease-out) 0.5s backwards;
}

.hero__image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  letter-spacing: var(--letter-spacing-wider);
  text-transform: uppercase;
  animation: fadeIn 1s var(--ease-out) 1.2s backwards;
  z-index: var(--z-base);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: var(--color-beige-dark);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--color-blush-solid);
  animation: slideDown 1.8s ease-in-out infinite;
}


/* ===========================================
   11. WAVE / SECTION SEPARATORS
   =========================================== */
.wave-separator {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: var(--z-base);
}

.wave-separator--top {
  bottom: auto;
  top: 0;
  transform: rotate(180deg);
}

.wave-separator svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.wave-separator--lg svg {
  height: 100px;
}

.wave-separator svg path {
  fill: var(--color-warm-white);
}

.wave-separator--cream svg path {
  fill: var(--color-cream);
}

.wave-separator--beige svg path {
  fill: var(--color-beige);
}

.wave-separator--dark svg path {
  fill: var(--color-dark);
}

/* Curved separator */
.curve-separator {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: var(--z-base);
}

.curve-separator--top {
  bottom: auto;
  top: -1px;
  transform: scaleY(-1);
}

.curve-separator svg {
  display: block;
  width: 100%;
  height: 80px;
}


/* ===========================================
   12. ABOUT SECTION
   =========================================== */
.about {
  padding: var(--space-5xl) var(--space-lg);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about__image-wrapper {
  position: relative;
}

.about__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--duration-slower) var(--ease-out);
}

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

/* Decorative accent behind image */
.about__image-accent {
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: var(--radius-xl);
  background: var(--gradient-blush-soft);
  z-index: -1;
  bottom: -20px;
  right: -20px;
  animation: float 6s ease-in-out infinite;
}

/* Stats row */
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.about__stat {
  text-align: center;
  padding: var(--space-lg) var(--space-sm);
  border-radius: var(--radius-md);
  background: var(--gradient-blush-soft);
  transition: transform var(--duration-normal) var(--ease-spring);
}

.about__stat:hover {
  transform: translateY(-4px);
}

.about__stat-number {
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--color-blush-solid);
  line-height: 1;
  margin-bottom: var(--space-2xs);
}

.about__stat-label {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
}


/* ===========================================
   13. SERVICES / CATEGORIES SECTION
   =========================================== */
.services {
  padding: var(--space-5xl) var(--space-lg);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.service-card {
  position: relative;
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  border: 1px solid rgba(231, 225, 217, 0.5);
  text-align: center;
  overflow: hidden;
  transition:
    transform var(--duration-slow) var(--ease-out),
    box-shadow var(--duration-slow) var(--ease-out),
    border-color var(--duration-slow) var(--ease-smooth);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-blush-solid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-slow) var(--ease-out);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: var(--gradient-blush-soft);
  font-size: var(--font-size-2xl);
  transition:
    transform var(--duration-normal) var(--ease-spring),
    background var(--duration-normal) var(--ease-smooth);
}

.service-card:hover .service-card__icon {
  transform: scale(1.1) rotate(-5deg);
  background: var(--gradient-blush-solid);
  color: var(--color-white);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--color-dark);
}

.service-card__desc {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
}


/* ===========================================
   14. CONCEPT STORE / SHOWROOM SECTION
   =========================================== */
.concept {
  padding: var(--space-5xl) var(--space-lg);
  position: relative;
}

.concept__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

/* Image gallery item */
.concept__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
}

.concept__item--wide {
  aspect-ratio: 16 / 9;
}

.concept__item--tall {
  aspect-ratio: 3 / 4;
}

.concept__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slower) var(--ease-out);
}

.concept__item:hover img {
  transform: scale(1.1);
}

/* Image overlay */
.concept__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(18, 18, 18, 0.7) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-xl);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}

.concept__item:hover .concept__overlay {
  opacity: 1;
}

.concept__overlay h3 {
  color: var(--color-white);
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-2xs);
  transform: translateY(10px);
  transition: transform var(--duration-normal) var(--ease-out);
}

.concept__item:hover .concept__overlay h3 {
  transform: translateY(0);
}

.concept__overlay p {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--font-size-sm);
  transform: translateY(10px);
  transition: transform var(--duration-normal) var(--ease-out) 0.05s;
}

.concept__item:hover .concept__overlay p {
  transform: translateY(0);
}


/* ===========================================
   15. MARQUEE / BRAND STRIP
   =========================================== */
.marquee {
  overflow: hidden;
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--color-beige);
  border-bottom: 1px solid var(--color-beige);
}

.marquee__track {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__item {
  flex-shrink: 0;
  padding: 0 var(--space-3xl);
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: 300;
  letter-spacing: var(--letter-spacing-wider);
  text-transform: uppercase;
  color: var(--color-beige-dark);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.marquee__item::after {
  content: '✦';
  font-size: var(--font-size-sm);
  color: var(--color-blush-solid);
  opacity: 0.5;
}


/* ===========================================
   16. TESTIMONIALS
   =========================================== */
.testimonials {
  padding: var(--space-5xl) var(--space-lg);
}

.testimonial-card {
  position: relative;
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition:
    transform var(--duration-slow) var(--ease-out),
    box-shadow var(--duration-slow) var(--ease-out);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.testimonial-card__quote {
  font-size: var(--font-size-5xl);
  color: var(--color-blush-solid);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: var(--space-sm);
  font-family: Georgia, serif;
}

.testimonial-card__text {
  font-size: var(--font-size-lg);
  font-style: italic;
  color: var(--color-text);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-xl);
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-round);
  object-fit: cover;
  border: 2px solid var(--color-beige);
}

.testimonial-card__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--font-size-sm);
  color: var(--color-dark);
}

.testimonial-card__role {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

/* Stars */
.stars {
  display: flex;
  gap: 2px;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: #f0b429;
  font-size: var(--font-size-md);
}


/* ===========================================
   17. NEWSLETTER SECTION
   =========================================== */
.newsletter {
  padding: var(--space-5xl) var(--space-lg);
  text-align: center;
  position: relative;
}

.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 500px;
  margin: 0 auto;
}

.newsletter__input-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.newsletter__input {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1.5px solid var(--color-beige);
  border-radius: var(--radius-pill);
  background: var(--color-white);
  font-size: var(--font-size-md);
  color: var(--color-dark);
  transition:
    border-color var(--duration-normal) var(--ease-smooth),
    box-shadow var(--duration-normal) var(--ease-smooth);
}

.newsletter__input::placeholder {
  color: var(--color-text-light);
}

.newsletter__input:focus {
  border-color: var(--color-blush-solid);
  box-shadow: 0 0 0 4px rgba(255, 145, 129, 0.12);
}

.newsletter__consent {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  text-align: left;
  padding: 0 var(--space-sm);
}

.newsletter__consent a {
  color: var(--color-blush-solid);
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* ===========================================
   18. CONTACT / MAP SECTION
   =========================================== */
.contact {
  padding: var(--space-5xl) var(--space-lg);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

/* Contact Info Cards */
.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  background: var(--color-warm-white);
  border: 1px solid var(--color-beige);
  transition:
    transform var(--duration-normal) var(--ease-spring),
    box-shadow var(--duration-normal) var(--ease-smooth),
    border-color var(--duration-normal) var(--ease-smooth);
}

.contact-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: var(--color-blush-solid);
}

.contact-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--gradient-blush-soft);
  color: var(--color-blush-solid);
  font-size: var(--font-size-xl);
  transition: transform var(--duration-normal) var(--ease-spring);
}

.contact-item:hover .contact-item__icon {
  transform: scale(1.1);
}

.contact-item__label {
  font-family: var(--font-heading);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: var(--space-2xs);
}

.contact-item__value {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
}

.contact-item__value a {
  color: var(--color-blush-solid);
  text-decoration: none;
  transition: color var(--duration-normal) var(--ease-smooth);
}

.contact-item__value a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Map */
.contact__map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  min-height: 300px;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
  display: block;
}

/* Map overlay gradient (subtle) */
.contact__map::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  box-shadow: inset 0 0 30px rgba(18, 18, 18, 0.05);
  pointer-events: none;
}

/* Opening Hours */
.hours {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  background: var(--gradient-blush-soft);
}

.hours__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--color-dark);
}

.hours__row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-xs) 0;
  border-bottom: 1px solid rgba(231, 225, 217, 0.5);
  font-size: var(--font-size-sm);
}

.hours__row:last-child {
  border-bottom: none;
}

.hours__day {
  color: var(--color-text);
  font-weight: 500;
}

.hours__time {
  color: var(--color-text-muted);
}

.hours__time--closed {
  color: var(--color-blush-deep);
  font-weight: 500;
}


/* ===========================================
   19. FOOTER
   =========================================== */
.footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-4xl) var(--space-lg) var(--space-xl);
  position: relative;
  overflow: hidden;
}

/* Footer decorative blob */
.footer__blob {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 145, 129, 0.06);
  filter: blur(100px);
  pointer-events: none;
}

.footer__blob--1 {
  top: -150px;
  right: -100px;
}

.footer__blob--2 {
  bottom: -200px;
  left: -150px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  position: relative;
  z-index: var(--z-base);
}

/* Footer Brand */
.footer__brand {
  max-width: 320px;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-wider);
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  display: inline-block;
}

.footer__logo span {
  font-weight: 300;
}

.footer__brand p {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.5);
  line-height: var(--line-height-relaxed);
}

/* Footer Nav */
.footer__nav-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: var(--letter-spacing-wider);
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__nav-link {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition:
    color var(--duration-normal) var(--ease-smooth),
    transform var(--duration-normal) var(--ease-spring);
  display: inline-block;
}

.footer__nav-link:hover {
  color: var(--color-blush-solid);
  transform: translateX(4px);
}

/* Footer Social */
.footer__social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.footer__social-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-round);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition:
    background var(--duration-normal) var(--ease-smooth),
    border-color var(--duration-normal) var(--ease-smooth),
    color var(--duration-normal) var(--ease-smooth),
    transform var(--duration-normal) var(--ease-spring);
}

.footer__social-link:hover {
  background: var(--color-blush-solid);
  border-color: var(--color-blush-solid);
  color: var(--color-white);
  transform: translateY(-3px);
}

/* Footer Bottom */
.footer__bottom {
  margin-top: var(--space-3xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
  position: relative;
  z-index: var(--z-base);
}

.footer__copyright {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.35);
}

.footer__legal {
  display: flex;
  gap: var(--space-lg);
}

.footer__legal a {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color var(--duration-normal) var(--ease-smooth);
}

.footer__legal a:hover {
  color: var(--color-blush-solid);
}


/* ===========================================
   20. BACK TO TOP BUTTON
   =========================================== */
.back-to-top {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-round);
  background: var(--color-white);
  color: var(--color-dark);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-beige);
  cursor: pointer;
  z-index: var(--z-dropdown);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition:
    opacity var(--duration-normal) var(--ease-smooth),
    visibility var(--duration-normal) var(--ease-smooth),
    transform var(--duration-normal) var(--ease-spring),
    background var(--duration-normal) var(--ease-smooth),
    color var(--duration-normal) var(--ease-smooth);
}

.back-to-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gradient-blush-solid);
  color: var(--color-white);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}


/* ===========================================
   21. FORM ELEMENTS
   =========================================== */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: var(--space-xs);
  letter-spacing: var(--letter-spacing-wide);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 1.5px solid var(--color-beige);
  border-radius: var(--radius-md);
  background: var(--color-white);
  font-size: var(--font-size-md);
  color: var(--color-dark);
  transition:
    border-color var(--duration-normal) var(--ease-smooth),
    box-shadow var(--duration-normal) var(--ease-smooth);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--color-blush-solid);
  box-shadow: 0 0 0 4px rgba(255, 145, 129, 0.1);
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-light);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  border-radius: var(--radius-md);
}

/* Checkbox / Radio custom */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  cursor: pointer;
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--color-blush-solid);
  margin-top: 2px;
}


/* ===========================================
   22. IMAGE OVERLAYS & EFFECTS
   =========================================== */
.img-overlay {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.img-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slower) var(--ease-out);
}

.img-overlay:hover img {
  transform: scale(1.08);
}

.img-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(18, 18, 18, 0.55) 100%
  );
  pointer-events: none;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}

.img-overlay--blush::after {
  background: linear-gradient(
    135deg,
    rgba(255, 145, 129, 0.2) 0%,
    rgba(254, 91, 124, 0.15) 100%
  );
}

/* Shimmer effect on image */
.img-shimmer {
  position: relative;
  overflow: hidden;
}

.img-shimmer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  z-index: 2;
  transition: left 0.8s ease;
  pointer-events: none;
}

.img-shimmer:hover::before {
  left: 150%;
}


/* ===========================================
   23. DECORATIVE ELEMENTS
   =========================================== */
/* Floating decorative circles */
.deco-circle {
  position: absolute;
  border-radius: var(--radius-round);
  pointer-events: none;
  z-index: 0;
}

.deco-circle--sm {
  width: 80px;
  height: 80px;
}

.deco-circle--md {
  width: 160px;
  height: 160px;
}

.deco-circle--lg {
  width: 300px;
  height: 300px;
}

.deco-circle--blush {
  background: rgba(255, 145, 129, 0.08);
}

.deco-circle--beige {
  background: rgba(231, 225, 217, 0.3);
}

.deco-circle--outline {
  background: transparent;
  border: 1px solid rgba(255, 145, 129, 0.15);
}

/* Decorative dots pattern */
.deco-dots {
  position: absolute;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, var(--color-beige-dark) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

/* Decorative line */
.deco-line {
  width: 60px;
  height: 2px;
  background: var(--gradient-blush-solid);
  border-radius: var(--radius-pill);
  margin: var(--space-md) 0;
}

.deco-line--center {
  margin-left: auto;
  margin-right: auto;
}

/* Blob shape */
.deco-blob {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  animation: blobMorph 10s ease-in-out infinite;
}


/* ===========================================
   24. LOADING / SKELETON STATES
   =========================================== */
.skeleton {
  background: linear-gradient(
    90deg,
    var(--color-beige-light) 25%,
    var(--color-beige) 50%,
    var(--color-beige-light) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: var(--radius-md);
}

.skeleton--text {
  height: 16px;
  width: 80%;
  margin-bottom: var(--space-sm);
}

.skeleton--title {
  height: 28px;
  width: 60%;
  margin-bottom: var(--space-md);
}

.skeleton--image {
  aspect-ratio: 16 / 9;
  width: 100%;
}

/* Page loader */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--color-warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader--hidden {
  opacity: 0;
  visibility: hidden;
}

.page-loader__spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--color-beige);
  border-top-color: var(--color-blush-solid);
  border-radius: var(--radius-round);
  animation: rotate 0.8s linear infinite;
}


/* ===========================================
   25. COOKIE BANNER
   =========================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--space-lg);
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: rgba(255, 255, 255, 0.8);
  z-index: var(--z-toast);
  transform: translateY(100%);
  transition: transform var(--duration-slow) var(--ease-out);
}

.cookie-banner--visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: var(--container-lg);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
}

.cookie-banner__text {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
}

.cookie-banner__text a {
  color: var(--color-blush-solid);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
}


/* ===========================================
   26. INSTAGRAM / SOCIAL FEED
   =========================================== */
.social-feed {
  padding: var(--space-4xl) 0;
}

.social-feed__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

.social-feed__item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
}

.social-feed__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.social-feed__item:hover img {
  transform: scale(1.1);
}

.social-feed__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.3);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-feed__item:hover::after {
  opacity: 1;
}


/* ===========================================
   27. RESPONSIVE BREAKPOINTS
   =========================================== */

/* ---- 480px+ (Large phones) ---- */
@media (min-width: 480px) {
  .hero__title {
    font-size: var(--font-size-5xl);
  }

  .hero__actions {
    flex-direction: row;
    justify-content: center;
  }

  .social-feed__grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .newsletter__input-group {
    flex-direction: row;
  }

  .newsletter__input {
    flex: 1;
  }
}

/* ---- 768px+ (Tablets) ---- */
@media (min-width: 768px) {
  :root {
    --section-padding: var(--space-5xl) var(--space-xl);
    --header-height: 90px;
  }

  h1 { font-size: var(--font-size-5xl); }
  h2 { font-size: var(--font-size-4xl); }
  h3 { font-size: var(--font-size-2xl); }

  .hero__title {
    font-size: var(--font-size-5xl);
  }

  .hero__subtitle {
    font-size: var(--font-size-xl);
  }

  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }

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

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

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

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

  .contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }

  .contact__map {
    min-height: 400px;
  }

  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-3xl);
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-banner__inner {
    flex-direction: row;
    text-align: left;
  }

  .social-feed__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .wave-separator svg {
    height: 80px;
  }

  .wave-separator--lg svg {
    height: 140px;
  }
}

/* ---- 1024px+ (Desktop) ---- */
@media (min-width: 1024px) {
  :root {
    --section-padding: var(--space-6xl) var(--space-2xl);
  }

  h1 { font-size: var(--font-size-6xl); }
  h2 { font-size: var(--font-size-4xl); }

  .hero {
    padding: 0 var(--space-2xl);
  }

  .hero__title {
    font-size: var(--font-size-6xl);
  }

  .hero__content {
    max-width: 900px;
  }

  /* Desktop nav */
  .header__hamburger {
    display: none;
  }

  .nav {
    display: flex;
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    flex-direction: row;
    gap: var(--space-xl);
  }

  .nav__link {
    font-size: var(--font-size-sm);
    letter-spacing: var(--letter-spacing-wide);
  }

  .header__cta {
    display: inline-flex;
  }

  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .concept__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .concept__item:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }

  .footer__grid {
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
  }

  .social-feed__grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* ---- 1440px+ (Large Desktop) ---- */
@media (min-width: 1440px) {
  :root {
    --font-size-base: 17px;
  }

  .hero__title {
    font-size: var(--font-size-display);
  }

  .hero__content {
    max-width: 1000px;
  }

  .container {
    padding: 0 var(--space-2xl);
  }

  .services__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .concept__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* ===========================================
   28. SPECIAL COMPONENTS
   =========================================== */

/* Feature highlight row */
.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding: var(--space-3xl) 0;
}

.feature-row:nth-child(even) .feature-row__content {
  order: -1;
}

.feature-row__image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.feature-row__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--duration-slower) var(--ease-out);
}

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

.feature-row__content h3 {
  margin-bottom: var(--space-md);
}

.feature-row__content p {
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
}

/* Badge / Pill */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  padding: var(--space-2xs) var(--space-sm);
  border-radius: var(--radius-pill);
  font-size: var(--font-size-xs);
  font-weight: 500;
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
}

.badge--blush {
  background: rgba(255, 145, 129, 0.12);
  color: var(--color-blush-solid);
}

.badge--dark {
  background: var(--color-dark);
  color: var(--color-white);
}

.badge--outline {
  background: transparent;
  border: 1px solid var(--color-beige-dark);
  color: var(--color-text-muted);
}

/* Divider */
.divider {
  width: 100%;
  height: 1px;
  background: var(--color-beige);
  margin: var(--space-3xl) 0;
}

.divider--blush {
  background: var(--gradient-blush-solid);
  height: 2px;
}

/* Price tag */
.price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-dark);
}

.price__old {
  text-decoration: line-through;
  color: var(--color-text-light);
  font-weight: 400;
  margin-right: var(--space-xs);
}

/* Tooltip */
.tooltip {
  position: relative;
}

.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  padding: var(--space-xs) var(--space-sm);
  background: var(--color-dark);
  color: var(--color-white);
  font-size: var(--font-size-xs);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--duration-fast) var(--ease-smooth),
    visibility var(--duration-fast) var(--ease-smooth),
    transform var(--duration-fast) var(--ease-spring);
  pointer-events: none;
  z-index: var(--z-dropdown);
}

.tooltip:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-12px);
}


/* ===========================================
   29. ACCESSIBILITY
   =========================================== */
/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-dark);
  color: var(--color-white);
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  z-index: 9999;
  transition: top var(--duration-fast) var(--ease-smooth);
}

.skip-link:focus {
  top: var(--space-md);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .animate {
    opacity: 1 !important;
    transform: none !important;
  }

  .float,
  .float--slow,
  .float--horiz,
  .rotate,
  .rotate--slow,
  .bounce-gentle,
  .pulse,
  .pulse-glow {
    animation: none !important;
  }

  .marquee__track {
    animation: none !important;
  }
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--color-blush-solid);
  outline-offset: 3px;
}

/* Screen reader only */
.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;
}

/* High contrast mode support */
@media (forced-colors: active) {
  .btn--primary {
    border: 2px solid currentColor;
  }

  .card {
    border: 1px solid currentColor;
  }
}


/* ===========================================
   30. FEATURE SECTION RESPONSIVE
   =========================================== */
@media (min-width: 768px) {
  .feature-row {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }
}


/* ===========================================
   31. PARALLAX HELPERS (CSS only)
   =========================================== */
.parallax-container {
  perspective: 1000px;
  overflow: hidden;
}

.parallax-layer {
  will-change: transform;
}

.parallax-layer--back {
  transform: translateZ(-200px) scale(1.2);
}

.parallax-layer--mid {
  transform: translateZ(-100px) scale(1.1);
}

.parallax-layer--front {
  transform: translateZ(0);
}

/* Parallax via scroll-timeline (modern browsers) */
@supports (animation-timeline: scroll()) {
  .parallax-scroll {
    animation: parallaxDrift linear;
    animation-timeline: scroll();
    animation-range: entry 0% exit 100%;
  }
}


/* ===========================================
   32. CTA / BANNER SECTION
   =========================================== */
.cta-banner {
  position: relative;
  padding: var(--space-4xl) var(--space-lg);
  text-align: center;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(18, 18, 18, 0.7) 0%,
    rgba(18, 18, 18, 0.4) 100%
  );
}

.cta-banner__content {
  position: relative;
  z-index: var(--z-base);
  max-width: 650px;
  margin: 0 auto;
}

.cta-banner__content h2 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.cta-banner__content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2xl);
}


/* ===========================================
   33. NUMBER COUNTER / STATS
   =========================================== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  padding: var(--space-3xl) 0;
}

.stat-item {
  text-align: center;
}

.stat-item__number {
  font-family: var(--font-heading);
  font-size: var(--font-size-4xl);
  font-weight: 700;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-item__number--gradient {
  background: var(--gradient-blush-solid);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-item__label {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .stats-bar {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* ===========================================
   34. ACCORDION / FAQ
   =========================================== */
.accordion {
  max-width: 700px;
  margin: 0 auto;
}

.accordion__item {
  border-bottom: 1px solid var(--color-beige);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) 0;
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  font-weight: 500;
  color: var(--color-dark);
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  transition: color var(--duration-normal) var(--ease-smooth);
}

.accordion__trigger:hover {
  color: var(--color-blush-solid);
}

.accordion__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--duration-normal) var(--ease-spring);
}

.accordion__item--active .accordion__icon {
  transform: rotate(45deg);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-out);
}

.accordion__item--active .accordion__content {
  max-height: 500px;
}

.accordion__body {
  padding-bottom: var(--space-lg);
  font-size: var(--font-size-md);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
}


/* ===========================================
   35. BRAND LOGOS ROW
   =========================================== */
.brands {
  padding: var(--space-3xl) var(--space-lg);
}

.brands__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-2xl);
}

.brands__item {
  flex-shrink: 0;
  opacity: 0.4;
  transition:
    opacity var(--duration-normal) var(--ease-smooth),
    transform var(--duration-normal) var(--ease-spring);
  filter: grayscale(100%);
}

.brands__item:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

.brands__item img {
  height: 32px;
  width: auto;
}

@media (min-width: 768px) {
  .brands__item img {
    height: 40px;
  }
}


/* ===========================================
   36. PRINT STYLES
   =========================================== */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .header,
  .nav,
  .back-to-top,
  .cookie-banner,
  .hero__scroll,
  .hero__blob,
  .deco-circle,
  .deco-dots,
  .deco-blob,
  .wave-separator,
  .curve-separator,
  .page-loader,
  .footer__social {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 2cm 0;
  }

  section {
    padding: 1cm 0;
    page-break-inside: avoid;
  }

  h1, h2, h3 {
    page-break-after: avoid;
  }

  a {
    text-decoration: underline;
  }

  a[href]::after {
    content: ' (' attr(href) ')';
    font-size: 0.8em;
    color: #555;
  }

  a[href^="#"]::after,
  a[href^="javascript"]::after {
    content: '';
  }

  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }

  .card {
    border: 1px solid #ddd;
    page-break-inside: avoid;
  }

  .btn {
    border: 1px solid #333 !important;
    padding: 0.5em 1em;
  }
}


/* ===========================================
   37. UTILITY CLASSES
   =========================================== */
/* Spacing utilities */
.mt-0  { margin-top: 0; }
.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mt-3xl { margin-top: var(--space-3xl); }

.mb-0  { margin-bottom: 0; }
.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.mb-3xl { margin-bottom: var(--space-3xl); }

.pt-0  { padding-top: 0; }
.pb-0  { padding-bottom: 0; }

/* Display */
.d-none   { display: none; }
.d-block  { display: block; }
.d-flex   { display: flex; }
.d-grid   { display: grid; }
.d-inline { display: inline; }

/* Width */
.w-full { width: 100%; }
.w-auto { width: auto; }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }

/* Visibility */
.visible   { visibility: visible; }
.invisible { visibility: hidden; }

/* Opacity */
.opacity-0   { opacity: 0; }
.opacity-50  { opacity: 0.5; }
.opacity-100 { opacity: 1; }

/* Border radius */
.rounded     { border-radius: var(--radius-md); }
.rounded-lg  { border-radius: var(--radius-lg); }
.rounded-xl  { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-round); }

/* Cursor */
.cursor-pointer { cursor: pointer; }

/* Z-index helpers */
.z-above { z-index: var(--z-base); }
.z-top   { z-index: var(--z-overlay); }


/* ===========================================
   FULLSCREEN SECTIONS (100vh)
   =========================================== */
.section-fullscreen {
  min-height: 100vh;
  min-height: 100dvh; /* dynamic viewport for mobile */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-3xl) var(--space-lg);
}

.section-fullscreen .container {
  position: relative;
  z-index: 2;
}

/* Dark fullscreen section */
.section-fullscreen.section--dark {
  background-color: var(--color-dark);
  color: var(--color-warm-white);
}

.section-fullscreen.section--dark h2,
.section-fullscreen.section--dark h3 {
  color: var(--color-warm-white);
}

.section-fullscreen.section--dark p {
  color: rgba(250, 249, 247, 0.7);
}

.section-fullscreen.section--dark .tagline,
.section-fullscreen.section--dark .label {
  color: var(--color-blush-solid);
}


/* ===========================================
   TEXT SCROLL ANIMATIONS
   =========================================== */

/* Text reveal with clip-path */
.text-reveal {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.text-reveal.animated {
  clip-path: inset(0 0 0 0);
}

/* Word-by-word animation */
.word-animate span {
  display: inline-block;
  opacity: 0;
  transform: translateY(50px) rotateX(-10deg);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.word-animate.animated span {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
}

/* Stagger delays for word-animate children */
.word-animate.animated span:nth-child(1)  { transition-delay: 0ms; }
.word-animate.animated span:nth-child(2)  { transition-delay: 60ms; }
.word-animate.animated span:nth-child(3)  { transition-delay: 120ms; }
.word-animate.animated span:nth-child(4)  { transition-delay: 180ms; }
.word-animate.animated span:nth-child(5)  { transition-delay: 240ms; }
.word-animate.animated span:nth-child(6)  { transition-delay: 300ms; }
.word-animate.animated span:nth-child(7)  { transition-delay: 360ms; }
.word-animate.animated span:nth-child(8)  { transition-delay: 420ms; }
.word-animate.animated span:nth-child(9)  { transition-delay: 480ms; }
.word-animate.animated span:nth-child(10) { transition-delay: 540ms; }
.word-animate.animated span:nth-child(11) { transition-delay: 600ms; }
.word-animate.animated span:nth-child(12) { transition-delay: 660ms; }
.word-animate.animated span:nth-child(13) { transition-delay: 720ms; }
.word-animate.animated span:nth-child(14) { transition-delay: 780ms; }
.word-animate.animated span:nth-child(15) { transition-delay: 840ms; }

/* Line reveal animation */
.line-animate {
  overflow: hidden;
}

.line-animate span {
  display: block;
  transform: translateY(110%);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.line-animate.animated span {
  transform: translateY(0);
}

/* Stagger for multiple line-animate elements */
.line-animate:nth-child(2) span { transition-delay: 0.15s; }
.line-animate:nth-child(3) span { transition-delay: 0.3s; }
.line-animate:nth-child(4) span { transition-delay: 0.45s; }

/* Parallax text */
.parallax-text {
  font-size: clamp(2rem, 5vw, 6rem);
  font-weight: 700;
  font-family: var(--font-heading);
  will-change: transform;
  color: var(--color-dark);
  line-height: 1.1;
}

.section--dark .parallax-text {
  color: var(--color-warm-white);
}


/* ===========================================
   MARQUEE TEXT BANDS
   =========================================== */
.marquee-band {
  overflow: hidden;
  padding: var(--space-lg) 0;
  background: var(--color-dark);
  position: relative;
}

.marquee-band--light {
  background: var(--color-beige);
}

.marquee-band--blush {
  background: var(--gradient-blush-soft);
}

.scroll-text-marquee {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.12);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: var(--space-xs) 0;
  will-change: transform;
}

.marquee-band--light .scroll-text-marquee {
  color: rgba(18, 18, 18, 0.08);
}

.scroll-text-marquee:hover,
.scroll-text-marquee.paused {
  animation-play-state: paused;
}

/* Large decorative marquee */
.scroll-text-marquee--large {
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 200;
  letter-spacing: 0.15em;
}

/* Reverse direction marquee */
.scroll-text-marquee--reverse {
  animation-direction: reverse;
}


/* ===========================================
   BIG QUOTE SECTION
   =========================================== */
.quote-section {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
}

.quote-section blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  color: var(--color-warm-white);
}

.quote-section blockquote::before {
  content: '\201E';
  font-size: clamp(4rem, 10vw, 10rem);
  font-family: Georgia, serif;
  color: var(--color-blush-solid);
  opacity: 0.3;
  position: absolute;
  top: -2rem;
  left: -1rem;
  line-height: 1;
}

.quote-section cite {
  display: block;
  margin-top: var(--space-xl);
  font-size: var(--font-size-sm);
  font-style: normal;
  letter-spacing: var(--letter-spacing-wider);
  text-transform: uppercase;
  color: var(--color-blush-solid);
}


/* ===========================================
   USP / FEATURE BLOCKS
   =========================================== */
.usp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  max-width: 1000px;
  margin: 0 auto;
}

.usp-block {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
}

.usp-block__number {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  background: var(--gradient-blush-solid);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.usp-block__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.usp-block__text {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.6);
}


/* ===========================================
   TIPS / KNOWLEDGE CARDS
   =========================================== */
.tips-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.tip-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-card);
  transition: transform var(--duration-slow) var(--ease-out),
              box-shadow var(--duration-slow) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.tip-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-blush-solid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.tip-card:hover::before {
  transform: scaleX(1);
}

.tip-card__number {
  font-family: var(--font-heading);
  font-size: var(--font-size-5xl);
  font-weight: 700;
  color: var(--color-beige);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.tip-card__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--color-dark);
}

.tip-card__text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
}


/* ===========================================
   BRAND MARQUEE
   =========================================== */
.brands-marquee {
  overflow: hidden;
  padding: var(--space-2xl) 0;
  position: relative;
}

.brands-marquee::before,
.brands-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.brands-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--color-warm-white), transparent);
}

.brands-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--color-warm-white), transparent);
}

.section--dark .brands-marquee::before {
  background: linear-gradient(to right, var(--color-dark), transparent);
}

.section--dark .brands-marquee::after {
  background: linear-gradient(to left, var(--color-dark), transparent);
}

.brands-track {
  display: flex;
  animation: marquee 30s linear infinite;
  gap: var(--space-3xl);
  align-items: center;
}

.brands-track:hover {
  animation-play-state: paused;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 600;
  white-space: nowrap;
  color: var(--color-text-muted);
  opacity: 0.4;
  transition: opacity var(--duration-normal) var(--ease-smooth),
              color var(--duration-normal) var(--ease-smooth);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
}

.brand-name:hover {
  opacity: 1;
  color: var(--color-blush-solid);
}


/* ===========================================
   RESPONSIVE FULLSCREEN ADDITIONS
   =========================================== */
@media (min-width: 768px) {
  .usp-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .section-fullscreen {
    padding: var(--space-4xl) var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .tips-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .quote-section blockquote {
    font-size: clamp(2rem, 3.5vw, 3rem);
  }
}

/* Mobile-specific fullscreen optimizations */
@media (max-width: 767px) {
  .section-fullscreen {
    padding: var(--space-2xl) var(--space-md);
    min-height: 100svh; /* small viewport height for mobile */
  }

  .quote-section blockquote {
    font-size: 1.3rem;
    padding: 0 var(--space-sm);
  }

  .quote-section blockquote::before {
    font-size: 4rem;
    top: -1.5rem;
    left: -0.5rem;
  }

  .scroll-text-marquee {
    font-size: 1.2rem;
  }

  .scroll-text-marquee--large {
    font-size: 2.5rem;
  }

  .usp-block__number {
    font-size: 3rem;
  }

  .marquee-band {
    padding: var(--space-sm) 0;
  }
}


/* ===========================================
   38. FULLSCREEN SECTIONS
   =========================================== */
.section-fullscreen {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.section-fullscreen > .container {
  position: relative;
  z-index: var(--z-base);
}

/* Ensure dark fullscreen sections have proper text colors */
.section-fullscreen.section--dark {
  background-color: var(--color-dark);
  color: var(--color-beige-light);
}

.section-fullscreen.section--dark h1,
.section-fullscreen.section--dark h2,
.section-fullscreen.section--dark h3 {
  color: var(--color-cream);
}

.section-fullscreen.section--dark p {
  color: rgba(231, 225, 217, 0.7);
}

.section-fullscreen.section--dark .tagline,
.section-fullscreen.section--dark .label {
  color: var(--color-blush-solid);
}


/* ===========================================
   39. TEXT REVEAL ON SCROLL
   =========================================== */
.text-reveal {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.text-reveal.animated {
  clip-path: inset(0 0 0 0);
}

/* Reveal from bottom */
.text-reveal--bottom {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.text-reveal--bottom.animated {
  clip-path: inset(0 0 0 0);
}

/* Reveal from center */
.text-reveal--center {
  clip-path: inset(0 50% 0 50%);
  transition: clip-path 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.text-reveal--center.animated {
  clip-path: inset(0 0 0 0);
}


/* ===========================================
   40. HORIZONTAL SCROLL TEXT / LARGE MARQUEE
   =========================================== */
.scroll-text-marquee {
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 300;
  opacity: 0.06;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-dark);
  pointer-events: none;
  user-select: none;
}

.section--dark .scroll-text-marquee {
  color: var(--color-white);
  opacity: 0.04;
}

/* Large background text watermark */
.bg-text-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: clamp(5rem, 15vw, 18rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-tight);
  color: var(--color-dark);
  opacity: 0.025;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.section--dark .bg-text-watermark {
  color: var(--color-white);
  opacity: 0.03;
}


/* ===========================================
   41. STAGGERED WORD ANIMATION
   =========================================== */
.word-animate span {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.word-animate.animated span {
  opacity: 1;
  transform: translateY(0);
}

/* Auto-generate stagger delays for up to 12 words */
.word-animate.animated span:nth-child(1)  { transition-delay: 0.05s; }
.word-animate.animated span:nth-child(2)  { transition-delay: 0.10s; }
.word-animate.animated span:nth-child(3)  { transition-delay: 0.15s; }
.word-animate.animated span:nth-child(4)  { transition-delay: 0.20s; }
.word-animate.animated span:nth-child(5)  { transition-delay: 0.25s; }
.word-animate.animated span:nth-child(6)  { transition-delay: 0.30s; }
.word-animate.animated span:nth-child(7)  { transition-delay: 0.35s; }
.word-animate.animated span:nth-child(8)  { transition-delay: 0.40s; }
.word-animate.animated span:nth-child(9)  { transition-delay: 0.45s; }
.word-animate.animated span:nth-child(10) { transition-delay: 0.50s; }
.word-animate.animated span:nth-child(11) { transition-delay: 0.55s; }
.word-animate.animated span:nth-child(12) { transition-delay: 0.60s; }


/* ===========================================
   42. SPLIT TEXT LINE ANIMATION
   =========================================== */
.line-animate {
  overflow: hidden;
}

.line-animate span {
  display: block;
  transform: translateY(100%);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.line-animate.animated span {
  transform: translateY(0);
}

/* Stagger for multiple lines */
.line-animate:nth-child(1) span { transition-delay: 0s; }
.line-animate:nth-child(2) span { transition-delay: 0.1s; }
.line-animate:nth-child(3) span { transition-delay: 0.2s; }
.line-animate:nth-child(4) span { transition-delay: 0.3s; }
.line-animate:nth-child(5) span { transition-delay: 0.4s; }

/* Char animate — each character individually */
.char-animate span {
  display: inline-block;
  opacity: 0;
  transform: translateY(60%) rotateX(-30deg);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.char-animate.animated span {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}


/* ===========================================
   43. SCROLL-TRIGGERED PARALLAX TEXT
   =========================================== */
.parallax-text {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 6rem);
  font-weight: 700;
  will-change: transform;
  line-height: var(--line-height-tight);
  color: var(--color-dark);
}

.section--dark .parallax-text {
  color: var(--color-cream);
}

/* Parallax image wrapper for scroll-driven effect */
.parallax-img-wrapper {
  overflow: hidden;
  border-radius: var(--radius-xl);
  position: relative;
}

.parallax-img-wrapper img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  will-change: transform;
  transition: transform 0.1s linear;
}

/* Scale-on-scroll section */
@supports (animation-timeline: scroll()) {
  @keyframes scaleOnScroll {
    from { transform: scale(0.85); opacity: 0.7; border-radius: 40px; }
    to   { transform: scale(1);    opacity: 1;   border-radius: 0; }
  }

  .scale-on-scroll {
    animation: scaleOnScroll linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
  }
}


/* ===========================================
   44. ALTERNATING SECTION RHYTHM
   =========================================== */
/* Enforce visual rhythm: light ↔ dark alternating backgrounds */
.section-alt:nth-child(odd) {
  background-color: var(--color-warm-white);
  color: var(--color-text);
}

.section-alt:nth-child(odd) h1,
.section-alt:nth-child(odd) h2,
.section-alt:nth-child(odd) h3,
.section-alt:nth-child(odd) h4 {
  color: var(--color-dark);
}

.section-alt:nth-child(odd) p {
  color: var(--color-text-muted);
}

.section-alt:nth-child(even) {
  background-color: var(--color-dark);
  color: var(--color-beige-light);
}

.section-alt:nth-child(even) h1,
.section-alt:nth-child(even) h2,
.section-alt:nth-child(even) h3,
.section-alt:nth-child(even) h4 {
  color: var(--color-cream);
}

.section-alt:nth-child(even) p {
  color: rgba(231, 225, 217, 0.65);
}

.section-alt:nth-child(even) .tagline,
.section-alt:nth-child(even) .label {
  color: var(--color-blush-solid);
}

.section-alt:nth-child(even) .label::before {
  background: var(--color-blush-solid);
}

.section-alt:nth-child(even) .card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.section-alt:nth-child(even) .card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.section-alt:nth-child(even) .service-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.section-alt:nth-child(even) .service-card__title {
  color: var(--color-cream);
}

.section-alt:nth-child(even) .service-card__desc {
  color: rgba(231, 225, 217, 0.6);
}

.section-alt:nth-child(even) .btn--secondary {
  color: var(--color-cream);
  border-color: rgba(231, 225, 217, 0.4);
}

.section-alt:nth-child(even) .btn--secondary:hover {
  background: var(--color-cream);
  color: var(--color-dark);
}

/* Dark section specific link styles */
.section--dark a:not(.btn):not(.nav__link):not(.footer__nav-link):not(.footer__social-link):not(.footer__legal a) {
  color: var(--color-blush-solid);
}

.section--dark a:not(.btn):hover {
  color: var(--color-white);
}


/* ===========================================
   45. PROGRESSIVE BLUR (top/bottom edges)
   =========================================== */
.blur-edge-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(
    180deg,
    var(--color-warm-white) 0%,
    transparent 100%
  );
  z-index: var(--z-base);
  pointer-events: none;
}

.blur-edge-bottom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(
    0deg,
    var(--color-warm-white) 0%,
    transparent 100%
  );
  z-index: var(--z-base);
  pointer-events: none;
}

.section--dark .blur-edge-top::before {
  background: linear-gradient(
    180deg,
    var(--color-dark) 0%,
    transparent 100%
  );
}

.section--dark .blur-edge-bottom::after {
  background: linear-gradient(
    0deg,
    var(--color-dark) 0%,
    transparent 100%
  );
}


/* ===========================================
   46. MAGNETIC HOVER EFFECT (for icons/CTAs)
   =========================================== */
.magnetic-hover {
  transition: transform 0.3s var(--ease-spring);
  will-change: transform;
}

/* Shine sweep on hover for images */
.shine-hover {
  position: relative;
  overflow: hidden;
}

.shine-hover::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 60%
  );
  transform: translateX(-100%) rotate(0deg);
  transition: transform 0.7s ease;
  pointer-events: none;
  z-index: 2;
}

.shine-hover:hover::after {
  transform: translateX(50%) rotate(0deg);
}
