:root {
  /* Primary Palette - Deep Twilight Blues */
  --color-deep-space: #0B1D3A;
  --color-midnight: #102B44;
  --color-sapphire: #061A2F;
  --color-twilight: #0A223E;
  --color-eclipse: #001529;
  
  /* Accent & Botanical Colors */
  --color-bloom: #E8B4B8;
  --color-petal: #F5E6E8;
  --color-leaf: #7BA17B;
  --color-stem: #4A7C59;
  --color-cream: #FDF8F5;
  --color-ivory: #FFFEF9;
  --color-gold: #C9A962;
  
  /* Neutrals */
  --color-white: #FFFFFF;
  --color-light: #F8FAFC;
  --color-muted: #94A3B8;
  --color-text: #1E293B;
  --color-text-light: #CBD5E1;
  
  /* Typography */
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
  
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 0.9375rem;
  --text-md: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  
  --line-tight: 1.2;
  --line-snug: 1.35;
  --line-normal: 1.5;
  --line-relaxed: 1.625;
  
  --weight-light: 300;
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  
  /* Spacing Scale */
  --space-3xs: 0.125rem;
  --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;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(11, 29, 58, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(11, 29, 58, 0.07), 0 2px 4px -2px rgba(11, 29, 58, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(11, 29, 58, 0.08), 0 4px 6px -4px rgba(11, 29, 58, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(11, 29, 58, 0.1), 0 8px 10px -6px rgba(11, 29, 58, 0.05);
  --shadow-glow: 0 0 40px rgba(232, 180, 184, 0.15);
  --shadow-inner: inset 0 2px 4px rgba(11, 29, 58, 0.05);
  
  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;
  --duration-slower: 700ms;
  
  /* Layout */
  --container-sm: 36rem;
  --container-md: 48rem;
  --container-lg: 64rem;
  --container-xl: 80rem;
  
  /* Z-Index Scale */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-toast: 500;
}

/* --------------------------------------------------------------------------
   Reset & Base Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-normal);
  line-height: var(--line-normal);
  color: var(--color-text);
  background-color: var(--color-ivory);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-normal) var(--ease-smooth);
}

button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--weight-medium);
  line-height: var(--line-tight);
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   Header - Floating Botanical Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  padding: var(--space-lg) 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

/* Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  z-index: var(--z-modal);
}

.brand-logo__icon {
  width: 2rem;
  height: 2rem;
  color: var(--color-bloom);
}

.brand-logo__text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.brand-logo__text--dark {
  color: var(--color-deep-space);
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
}

.nav-desktop__list {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-desktop__link {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  position: relative;
  padding: var(--space-2xs) 0;
}

.nav-desktop__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-bloom);
  transition: width var(--duration-normal) var(--ease-smooth);
}

.nav-desktop__link:hover::after,
.nav-desktop__link--active::after {
  width: 100%;
}

.nav-desktop__link--dark {
  color: var(--color-deep-space);
}

.nav-desktop__link--dark::after {
  background: var(--color-deep-space);
}

/* Header CTA */
.header-cta {
  display: none;
  padding: var(--space-xs) var(--space-lg);
  background: var(--color-bloom);
  color: var(--color-deep-space);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  border-radius: var(--radius-full);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.header-cta:hover {
  background: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  z-index: var(--z-modal);
  transition: background var(--duration-normal) var(--ease-smooth);
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}

.nav-toggle__bar {
  width: 1.25rem;
  height: 2px;
  background: var(--color-white);
  border-radius: var(--radius-full);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.nav-toggle__bar:nth-child(2) {
  margin: 4px 0;
}

.nav-toggle--dark .nav-toggle__bar {
  background: var(--color-deep-space);
}

.nav-toggle--dark {
  background: rgba(11, 29, 58, 0.05);
}

.nav-toggle--dark:hover {
  background: rgba(11, 29, 58, 0.1);
}

/* Active state */
.nav-toggle.is-active .nav-toggle__bar:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle.is-active .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active .nav-toggle__bar:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile Navigation Overlay */
.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--color-deep-space) 0%, var(--color-sapphire) 100%);
  z-index: var(--z-overlay);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-slow) var(--ease-smooth);
}

.nav-mobile.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-mobile__list {
  text-align: center;
}

.nav-mobile__item {
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--duration-slow) var(--ease-smooth);
}

.nav-mobile.is-open .nav-mobile__item {
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile.is-open .nav-mobile__item:nth-child(1) { transition-delay: 100ms; }
.nav-mobile.is-open .nav-mobile__item:nth-child(2) { transition-delay: 150ms; }
.nav-mobile.is-open .nav-mobile__item:nth-child(3) { transition-delay: 200ms; }
.nav-mobile.is-open .nav-mobile__item:nth-child(4) { transition-delay: 250ms; }
.nav-mobile.is-open .nav-mobile__item:nth-child(5) { transition-delay: 300ms; }

.nav-mobile__link {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--weight-medium);
  color: var(--color-white);
  padding: var(--space-sm) var(--space-md);
  transition: color var(--duration-normal) var(--ease-smooth);
}

.nav-mobile__link:hover {
  color: var(--color-bloom);
}

.nav-mobile__cta {
  margin-top: var(--space-xl);
  padding: var(--space-sm) var(--space-2xl);
  background: var(--color-bloom);
  color: var(--color-deep-space);
  font-size: var(--text-md);
  font-weight: var(--weight-semibold);
  border-radius: var(--radius-full);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--duration-slow) var(--ease-smooth);
}

.nav-mobile.is-open .nav-mobile__cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 350ms;
}

.nav-mobile__cta:hover {
  background: var(--color-white);
}

/* --------------------------------------------------------------------------
   Hero Section - Twilight Garden
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--color-deep-space) 0%, var(--color-midnight) 40%, var(--color-sapphire) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(232, 180, 184, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(123, 161, 123, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: var(--z-base);
  max-width: 40rem;
  padding: var(--space-4xl) 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  color: var(--color-bloom);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
}

.hero__badge i {
  font-size: var(--text-sm);
}

.hero__title {
  font-size: var(--text-4xl);
  font-weight: var(--weight-medium);
  color: var(--color-white);
  margin-bottom: var(--space-md);
  line-height: var(--line-snug);
}

.hero__title-accent {
  color: var(--color-bloom);
  font-style: italic;
}

.hero__subtitle {
  font-size: var(--text-md);
  color: var(--color-text-light);
  line-height: var(--line-relaxed);
  margin-bottom: var(--space-xl);
  max-width: 32rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  border-radius: var(--radius-full);
  transition: all var(--duration-normal) var(--ease-smooth);
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-bloom);
  color: var(--color-deep-space);
}

.btn--primary:hover {
  background: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--secondary {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline {
  background: transparent;
  color: var(--color-deep-space);
  border: 1px solid var(--color-deep-space);
}

.btn--outline:hover {
  background: var(--color-deep-space);
  color: var(--color-white);
}

.btn--dark {
  background: var(--color-deep-space);
  color: var(--color-white);
}

.btn--dark:hover {
  background: var(--color-midnight);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn i {
  font-size: 1em;
}

/* --------------------------------------------------------------------------
   Section Styles
   -------------------------------------------------------------------------- */
.section {
  padding: var(--space-3xl) 0;
}

.section--light {
  background: var(--color-ivory);
}

.section--cream {
  background: var(--color-cream);
}

.section--dark {
  background: var(--color-deep-space);
  color: var(--color-white);
}

.section__header {
  text-align: center;
  max-width: var(--container-sm);
  margin: 0 auto var(--space-2xl);
}

.section__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-2xs) var(--space-sm);
  background: rgba(232, 180, 184, 0.15);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--color-bloom);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}

.section--dark .section__badge {
  background: rgba(232, 180, 184, 0.2);
}

.section__title {
  font-size: var(--text-2xl);
  color: var(--color-deep-space);
  margin-bottom: var(--space-sm);
}

.section--dark .section__title {
  color: var(--color-white);
}

.section__subtitle {
  font-size: var(--text-base);
  color: var(--color-muted);
  line-height: var(--line-relaxed);
}

.section--dark .section__subtitle {
  color: var(--color-text-light);
}

/* --------------------------------------------------------------------------
   Features Grid - Why Choose Us
   -------------------------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-normal) var(--ease-smooth);
  border: 1px solid rgba(11, 29, 58, 0.05);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-petal) 0%, rgba(232, 180, 184, 0.3) 100%);
  border-radius: var(--radius-lg);
  color: var(--color-deep-space);
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
}

.feature-card__title {
  font-size: var(--text-md);
  color: var(--color-deep-space);
  margin-bottom: var(--space-xs);
}

.feature-card__text {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: var(--line-relaxed);
}

/* --------------------------------------------------------------------------
   Products / Bouquet Showcase
   -------------------------------------------------------------------------- */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.product-card__image {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--color-petal) 0%, var(--color-cream) 100%);
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  padding: var(--space-2xs) var(--space-sm);
  background: var(--color-deep-space);
  color: var(--color-white);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-card__content {
  padding: var(--space-md);
}

.product-card__category {
  font-size: var(--text-xs);
  color: var(--color-bloom);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-2xs);
}

.product-card__title {
  font-size: var(--text-lg);
  color: var(--color-deep-space);
  margin-bottom: var(--space-xs);
}

.product-card__desc {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: var(--line-relaxed);
  margin-bottom: var(--space-md);
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__price {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  color: var(--color-deep-space);
}

.product-card__price span {
  font-size: var(--text-sm);
  font-weight: var(--weight-normal);
  color: var(--color-muted);
}

.product-card__btn {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bloom);
  color: var(--color-deep-space);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.product-card__btn:hover {
  background: var(--color-deep-space);
  color: var(--color-white);
  transform: scale(1.1);
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
}

.testimonial-card__stars {
  display: flex;
  gap: var(--space-3xs);
  color: var(--color-gold);
  font-size: var(--text-sm);
  margin-bottom: var(--space-md);
}

.testimonial-card__text {
  font-size: var(--text-base);
  color: var(--color-text-light);
  line-height: var(--line-relaxed);
  margin-bottom: var(--space-md);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-card__avatar {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--color-bloom) 0%, var(--color-petal) 100%);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-deep-space);
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
}

.testimonial-card__info h4 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-white);
}

.testimonial-card__info p {
  font-size: var(--text-xs);
  color: var(--color-muted);
}

/* --------------------------------------------------------------------------
   About / Story Section
   -------------------------------------------------------------------------- */
.story-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.story-content__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-2xs) var(--space-sm);
  background: rgba(232, 180, 184, 0.15);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--color-bloom);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}

.story-content__title {
  font-size: var(--text-2xl);
  color: var(--color-deep-space);
  margin-bottom: var(--space-md);
}

.story-content__text {
  font-size: var(--text-base);
  color: var(--color-muted);
  line-height: var(--line-relaxed);
  margin-bottom: var(--space-md);
}

.story-content__text:last-of-type {
  margin-bottom: var(--space-lg);
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(11, 29, 58, 0.1);
}

.story-stat__number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-semibold);
  color: var(--color-deep-space);
}

.story-stat__label {
  font-size: var(--text-xs);
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.story-visual {
  position: relative;
}

.story-visual__main {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--color-petal) 0%, var(--color-cream) 100%);
}

.story-visual__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-visual__accent {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 40%;
  aspect-ratio: 1;
  background: var(--color-bloom);
  border-radius: var(--radius-xl);
  z-index: -1;
}

/* --------------------------------------------------------------------------
   Contact Section
   -------------------------------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

.contact-info__title {
  font-size: var(--text-2xl);
  color: var(--color-deep-space);
  margin-bottom: var(--space-md);
}

.contact-info__text {
  font-size: var(--text-base);
  color: var(--color-muted);
  line-height: var(--line-relaxed);
  margin-bottom: var(--space-xl);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.contact-item__icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-petal);
  color: var(--color-deep-space);
  border-radius: var(--radius-lg);
  font-size: var(--text-md);
  flex-shrink: 0;
}

.contact-item__content h4 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-deep-space);
  margin-bottom: var(--space-3xs);
}

.contact-item__content p,
.contact-item__content a {
  font-size: var(--text-sm);
  color: var(--color-muted);
}

.contact-item__content a:hover {
  color: var(--color-bloom);
}

.contact-social {
  display: flex;
  gap: var(--space-sm);
}

.contact-social__link {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-deep-space);
  color: var(--color-white);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.contact-social__link:hover {
  background: var(--color-bloom);
  color: var(--color-deep-space);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
}

.contact-form__title {
  font-size: var(--text-lg);
  color: var(--color-deep-space);
  margin-bottom: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-deep-space);
  margin-bottom: var(--space-xs);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text);
  background: var(--color-light);
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  background: var(--color-white);
  border-color: var(--color-bloom);
  box-shadow: 0 0 0 3px rgba(232, 180, 184, 0.2);
}

.form-textarea {
  resize: vertical;
  min-height: 6rem;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.form-checkbox input[type="checkbox"] {
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 2px;
  accent-color: var(--color-bloom);
  flex-shrink: 0;
}

.form-checkbox__label {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: var(--line-normal);
}

.form-checkbox__label a {
  color: var(--color-deep-space);
  text-decoration: underline;
}

.form-submit {
  width: 100%;
}

/* Map */
.contact-map {
  margin-top: var(--space-2xl);
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 16rem;
  box-shadow: var(--shadow-md);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --------------------------------------------------------------------------
   CTA Banner
   -------------------------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--color-deep-space) 0%, var(--color-midnight) 100%);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 70%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(232, 180, 184, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner__title {
  font-size: var(--text-xl);
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  position: relative;
}

.cta-banner__text {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-banner__actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--color-sapphire);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: var(--space-md);
}

.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.footer-brand__icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-bloom);
}

.footer-brand__text {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: var(--weight-semibold);
  color: var(--color-white);
}

.footer-brand__desc {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: var(--line-relaxed);
  max-width: 20rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.footer-links__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs) var(--space-lg);
}

.footer-links__link {
  font-size: var(--text-sm);
  color: var(--color-muted);
  transition: color var(--duration-normal) var(--ease-smooth);
}

.footer-links__link:hover {
  color: var(--color-bloom);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
  text-align: center;
}

.footer-copyright {
  font-size: var(--text-xs);
  color: var(--color-muted);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xs) var(--space-md);
}

.footer-legal__link {
  font-size: var(--text-xs);
  color: var(--color-muted);
  transition: color var(--duration-normal) var(--ease-smooth);
}

.footer-legal__link:hover {
  color: var(--color-bloom);
}

/* --------------------------------------------------------------------------
   Cookie Consent
   -------------------------------------------------------------------------- */
.cookie-consent {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-md);
  box-shadow: var(--shadow-xl);
  z-index: var(--z-toast);
  display: none;
  animation: slideUp var(--duration-slow) var(--ease-out);
}

.cookie-consent.is-visible {
  display: block;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-consent__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.cookie-consent__text {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: var(--line-relaxed);
}

.cookie-consent__text a {
  color: var(--color-deep-space);
  text-decoration: underline;
}

.cookie-consent__actions {
  display: flex;
  gap: var(--space-sm);
}

.cookie-consent__btn {
  flex: 1;
  padding: var(--space-xs) var(--space-md);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  border-radius: var(--radius-lg);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.cookie-consent__btn--accept {
  background: var(--color-deep-space);
  color: var(--color-white);
}

.cookie-consent__btn--accept:hover {
  background: var(--color-midnight);
}

.cookie-consent__btn--decline {
  background: var(--color-light);
  color: var(--color-text);
}

.cookie-consent__btn--decline:hover {
  background: var(--color-petal);
}

/* --------------------------------------------------------------------------
   Thank You Page
   -------------------------------------------------------------------------- */
.thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--color-deep-space) 0%, var(--color-midnight) 40%, var(--color-sapphire) 100%);
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
}

.thankyou-content {
  max-width: 28rem;
}

.thankyou-icon {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bloom);
  color: var(--color-deep-space);
  font-size: var(--text-3xl);
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-xl);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(232, 180, 184, 0.4);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(232, 180, 184, 0);
  }
}

.thankyou-title {
  font-size: var(--text-3xl);
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.thankyou-text {
  font-size: var(--text-md);
  color: var(--color-text-light);
  line-height: var(--line-relaxed);
  margin-bottom: var(--space-xl);
}

/* --------------------------------------------------------------------------
   404 Page
   -------------------------------------------------------------------------- */
.error-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-ivory);
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
}

.error-content {
  max-width: 28rem;
}

.error-code {
  font-family: var(--font-display);
  font-size: var(--text-6xl);
  font-weight: var(--weight-bold);
  color: var(--color-bloom);
  line-height: 1;
  margin-bottom: var(--space-md);
}

.error-title {
  font-size: var(--text-2xl);
  color: var(--color-deep-space);
  margin-bottom: var(--space-sm);
}

.error-text {
  font-size: var(--text-base);
  color: var(--color-muted);
  line-height: var(--line-relaxed);
  margin-bottom: var(--space-xl);
}

/* --------------------------------------------------------------------------
   Page Headers (Internal Pages)
   -------------------------------------------------------------------------- */
.page-header {
  background: linear-gradient(160deg, var(--color-deep-space) 0%, var(--color-midnight) 100%);
  padding: var(--space-5xl) 0 var(--space-3xl);
  text-align: center;
}

.page-header__title {
  font-size: var(--text-3xl);
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.page-header__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-size: var(--text-sm);
  color: var(--color-muted);
}

.page-header__breadcrumb a {
  color: var(--color-bloom);
}

.page-header__breadcrumb a:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Legal Pages Content
   -------------------------------------------------------------------------- */
.legal-content {
  max-width: var(--container-md);
  margin: 0 auto;
}

.legal-content h2 {
  font-size: var(--text-xl);
  color: var(--color-deep-space);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: var(--text-base);
  color: var(--color-muted);
  line-height: var(--line-relaxed);
  margin-bottom: var(--space-md);
}

.legal-content ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.legal-content li {
  font-size: var(--text-base);
  color: var(--color-muted);
  line-height: var(--line-relaxed);
  margin-bottom: var(--space-xs);
  list-style: disc;
}

.legal-content a {
  color: var(--color-deep-space);
  text-decoration: underline;
}

.legal-update {
  font-size: var(--text-sm);
  color: var(--color-muted);
  font-style: italic;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(11, 29, 58, 0.1);
  margin-top: var(--space-xl);
}

/* --------------------------------------------------------------------------
   Testimonials Page Specific
   -------------------------------------------------------------------------- */
.testimonials-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.testimonial-full {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(11, 29, 58, 0.05);
}

.testimonial-full__header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.testimonial-full__avatar {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--color-bloom) 0%, var(--color-petal) 100%);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-deep-space);
  font-weight: var(--weight-semibold);
  font-size: var(--text-md);
}

.testimonial-full__info h4 {
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: var(--weight-semibold);
  color: var(--color-deep-space);
}

.testimonial-full__info p {
  font-size: var(--text-sm);
  color: var(--color-muted);
}

.testimonial-full__stars {
  display: flex;
  gap: var(--space-3xs);
  color: var(--color-gold);
  font-size: var(--text-sm);
  margin-bottom: var(--space-md);
}

.testimonial-full__text {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: var(--line-relaxed);
}

/* --------------------------------------------------------------------------
   Story Page Specific
   -------------------------------------------------------------------------- */
.story-timeline {
  position: relative;
  padding-left: var(--space-xl);
}

.story-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-bloom) 0%, var(--color-petal) 100%);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-xl);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-xl) - 4px);
  top: 0;
  width: 10px;
  height: 10px;
  background: var(--color-bloom);
  border-radius: var(--radius-full);
  border: 2px solid var(--color-white);
}

.timeline-item__year {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--color-deep-space);
  margin-bottom: var(--space-xs);
}

.timeline-item__title {
  font-size: var(--text-md);
  font-weight: var(--weight-semibold);
  color: var(--color-deep-space);
  margin-bottom: var(--space-xs);
}

.timeline-item__text {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: var(--line-relaxed);
}

/* --------------------------------------------------------------------------
   Media Queries - Responsive Design
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   Mobile First - Base Styles (up to 319px)
   -------------------------------------------------------------------------- */
@media (max-width: 319px) {
  .container {
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
  }

/* Header adjustments for small screens */
.brand-logo__text {
  font-size: var(--text-sm);
}

.header-cta {
  font-size: var(--text-xs);
  padding: var(--space-xs) var(--space-sm);
}

/* Hero section */
.hero {
  min-height: 60vh;
  padding: var(--space-3xl) 0;
}

.hero__content {
  padding-top: var(--space-4xl);
}

.hero__title {
  font-size: clamp(var(--text-2xl), 10vw, var(--text-4xl));
  margin-bottom: var(--space-md);
}

.hero__subtitle {
  font-size: var(--text-sm);
  margin-bottom: var(--space-lg);
}

.hero__actions {
  flex-direction: column;
  gap: var(--space-md);
}

.hero__actions .btn {
  width: 100%;
  justify-content: center;
}

/* Buttons */
.btn {
  font-size: var(--text-sm);
  padding: var(--space-sm) var(--space-lg);
  min-height: 2.75rem;
}

/* Sections */
.section {
  padding: var(--space-2xl) 0;
}

.section__title {
  font-size: var(--text-2xl);
}

.section__subtitle {
  font-size: var(--text-sm);
}

/* Contact page */
.contact-wrapper {
  gap: var(--space-2xl);
}

.contact-form {
  padding: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  font-size: var(--text-xs);
}

.form-input {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-sm);
}

/* Contact info cards */
.contact-info-card {
  padding: var(--space-xl);
}

.contact-info-item {
  flex-direction: column;
  gap: var(--space-md);
  text-align: center;
}

.contact-info-icon {
  width: 2.5rem;
  height: 2.5rem;
  font-size: var(--text-lg);
}

.contact-info-title {
  font-size: var(--text-lg);
}

.contact-info-text {
  font-size: var(--text-sm);
}

.contact-social-links {
  gap: var(--space-md);
}

.contact-social-link {
  width: 2.25rem;
  height: 2.25rem;
  font-size: var(--text-base);
}

/* Legal pages - Base mobile (up to 319px) */
.legal-hero {
  padding: var(--space-3xl) 0 var(--space-2xl);
  min-height: 40vh;
}

.legal-hero__icon {
  width: 3.5rem;
  height: 3.5rem;
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
}

.legal-hero__title {
  font-size: clamp(var(--text-xl), 9vw, var(--text-3xl));
  line-height: var(--line-tight);
  margin-bottom: var(--space-sm);
}

.legal-hero__subtitle {
  font-size: var(--text-xs);
  opacity: 0.9;
}

.legal-content {
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.legal-nav {
  position: relative;
  top: auto;
  max-height: none;
  margin-bottom: var(--space-lg);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
}

.legal-nav__title {
  font-size: var(--text-base);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
}

.legal-nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  max-height: 250px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-right: var(--space-xs);
}

.legal-nav__link {
  font-size: var(--text-xs);
  padding: var(--space-xs) var(--space-sm);
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  border-left: 2px solid transparent;
}

.legal-section {
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
  border-radius: var(--radius-lg);
}

.legal-section__title {
  font-size: var(--text-lg);
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-xs);
  padding-bottom: var(--space-sm);
  margin-bottom: var(--space-sm);
  line-height: var(--line-snug);
}

.legal-section__title i {
  font-size: var(--text-base);
  margin-bottom: var(--space-2xs);
}

.legal-section__text {
  font-size: var(--text-xs);
  line-height: var(--line-relaxed);
  margin-bottom: var(--space-sm);
}

.legal-subsection {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
}

.legal-subsection__title {
  font-size: var(--text-base);
  margin-bottom: var(--space-xs);
  line-height: var(--line-snug);
}

.legal-list {
  margin: var(--space-sm) 0;
}

.legal-list li {
  font-size: var(--text-xs);
  padding-left: var(--space-md);
  margin-bottom: var(--space-xs);
  line-height: var(--line-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-list li::before {
  font-size: var(--text-xs);
  left: var(--space-2xs);
}

.legal-contact-info {
  padding: var(--space-md);
  margin-top: var(--space-sm);
  border-radius: var(--radius-md);
}

.legal-contact-info p {
  font-size: var(--text-xs);
  margin-bottom: var(--space-xs);
  line-height: var(--line-relaxed);
  word-wrap: break-word;
}

.legal-contact-info a {
  word-break: break-all;
  display: inline-block;
  margin-top: var(--space-2xs);
  min-height: 2.25rem;
  padding: var(--space-2xs) 0;
}

/* Error page */
.error-section {
  padding: var(--space-3xl) 0;
  min-height: 70vh;
}

.error-number__digit {
  font-size: clamp(3rem, 15vw, 6rem);
}

.error-number__flower {
  font-size: clamp(2rem, 10vw, 4rem);
}

.error-title {
  font-size: clamp(var(--text-2xl), 6vw, var(--text-4xl));
}

.error-description {
  font-size: var(--text-base);
}

.error-actions {
  flex-direction: column;
  width: 100%;
}

.error-actions .btn {
  width: 100%;
}

.error-links__list {
  flex-direction: column;
  align-items: stretch;
}

.error-links__link {
  text-align: center;
  width: 100%;
}

/* Thank you page */
.thank-you-section {
  padding: var(--space-3xl) 0;
  min-height: 70vh;
}

.thank-you-icon__circle {
  width: 100px;
  height: 100px;
  font-size: var(--text-3xl);
}

.thank-you-title {
  font-size: clamp(var(--text-2xl), 6vw, var(--text-4xl));
}

.thank-you-description {
  font-size: var(--text-base);
}

.thank-you-details {
  gap: var(--space-lg);
}

.thank-you-detail-card {
  padding: var(--space-lg);
}

.thank-you-detail-icon {
  width: 3rem;
  height: 3rem;
  font-size: var(--text-lg);
}

.thank-you-detail-title {
  font-size: var(--text-lg);
}

.thank-you-detail-text {
  font-size: var(--text-sm);
}

.thank-you-actions {
  flex-direction: column;
  width: 100%;
}

.thank-you-actions .btn {
  width: 100%;
}

.thank-you-contact__link {
  font-size: var(--text-base);
  padding: var(--space-sm) var(--space-lg);
}

/* Footer */
.site-footer {
  padding: var(--space-2xl) 0;
}

.footer-top {
  flex-direction: column;
  gap: var(--space-xl);
  text-align: center;
}

.footer-brand__desc {
  font-size: var(--text-sm);
}

.footer-bottom {
  flex-direction: column;
  gap: var(--space-md);
  text-align: center;
}

.footer-legal {
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-legal__link {
  font-size: var(--text-xs);
}

/* Cookie consent */
.cookie-consent {
  left: var(--space-sm);
  right: var(--space-sm);
  bottom: var(--space-sm);
  max-width: none;
}

.cookie-consent__content {
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
}

.cookie-consent__text {
  font-size: var(--text-xs);
}

.cookie-consent__actions {
  width: 100%;
  flex-direction: column;
  gap: var(--space-sm);
}

.cookie-consent__btn {
  width: 100%;
  font-size: var(--text-sm);
  padding: var(--space-sm) var(--space-md);
}
}

/* Small phones (320px+) */
@media (min-width: 320px) {
  .hero__title {
    font-size: clamp(var(--text-3xl), 8vw, var(--text-5xl));
  }
  
  .container {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }
  
  .brand-logo__text {
    font-size: var(--text-base);
  }
  
  .header-cta {
    font-size: var(--text-sm);
    padding: var(--space-sm) var(--space-md);
  }
  
  .hero__subtitle {
    font-size: var(--text-base);
  }
  
  .btn {
    font-size: var(--text-base);
    padding: var(--space-md) var(--space-xl);
  }
  
  .section__title {
    font-size: clamp(var(--text-2xl), 5vw, var(--text-3xl));
  }
  
  .section__subtitle {
    font-size: var(--text-base);
  }
  
  .form-label {
    font-size: var(--text-sm);
  }
  
  .form-input {
    font-size: var(--text-base);
    padding: var(--space-md) var(--space-lg);
  }
  
  .contact-info-text {
    font-size: var(--text-base);
  }
  
  /* Legal Pages - Enhanced 320px+ Styles */
  .legal-hero {
    padding: var(--space-4xl) 0 var(--space-3xl);
  }
  
  .legal-hero__icon {
    width: 4.5rem;
    height: 4.5rem;
    font-size: clamp(var(--text-2xl), 6vw, var(--text-4xl));
    margin-bottom: var(--space-xl);
  }
  
  .legal-hero__title {
    font-size: clamp(var(--text-3xl), 7vw, var(--text-5xl));
    margin-bottom: var(--space-md);
  }
  
  .legal-hero__subtitle {
    font-size: var(--text-base);
  }
  
  .legal-content {
    gap: var(--space-3xl);
    margin-top: var(--space-3xl);
  }
  
  .legal-nav {
    padding: var(--space-xl);
    margin-bottom: var(--space-2xl);
  }
  
  .legal-nav__title {
    font-size: var(--text-lg);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
  }
  
  .legal-nav__link {
    font-size: var(--text-sm);
    padding: var(--space-xs) var(--space-sm);
  }
  
  .legal-section {
    padding: var(--space-xl) var(--space-lg);
    margin-bottom: var(--space-xl);
    border-radius: var(--radius-lg);
  }
  
  .legal-section__title {
    font-size: var(--text-xl);
    flex-direction: row;
    align-items: center;
    gap: var(--space-sm);
    padding-bottom: var(--space-sm);
    margin-bottom: var(--space-md);
  }
  
  .legal-section__title i {
    font-size: var(--text-lg);
    flex-shrink: 0;
  }
  
  .legal-section__text {
    font-size: var(--text-sm);
    line-height: var(--line-relaxed);
    margin-bottom: var(--space-md);
  }
  
  .legal-subsection {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
  }
  
  .legal-subsection__title {
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
  }
  
  .legal-list {
    margin: var(--space-md) 0;
  }
  
  .legal-list li {
    font-size: var(--text-sm);
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
    line-height: var(--line-relaxed);
  }
  
  .legal-list li::before {
    font-size: var(--text-xs);
    left: var(--space-xs);
  }
  
  .legal-contact-info {
    padding: var(--space-lg);
    margin-top: var(--space-md);
  }
  
  .legal-contact-info p {
    font-size: var(--text-sm);
    margin-bottom: var(--space-xs);
    line-height: var(--line-relaxed);
  }
  
  .legal-contact-info a {
    word-break: break-word;
    display: inline-block;
    margin-top: var(--space-2xs);
  }
  
  /* Legal navigation improvements for 320px */
  .legal-nav__list {
    max-height: 300px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .legal-nav__link {
    border-left: 3px solid transparent;
    transition: all var(--duration-normal) var(--ease-smooth);
  }
  
  .legal-nav__link:hover,
  .legal-nav__link:focus {
    border-left-color: var(--color-bloom);
    background: var(--color-petal);
  }
  
  /* Smooth scrolling for anchor links */
  html {
    scroll-padding-top: calc(var(--space-2xl) + 80px);
  }
  
  /* Legal section spacing improvements */
  .legal-section:first-of-type {
    margin-top: 0;
  }
  
  .legal-section:last-of-type {
    margin-bottom: 0;
  }
  
  /* Better text wrapping for long words */
  .legal-section__text,
  .legal-subsection__title,
  .legal-list li {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  /* Improved touch targets for mobile */
  .legal-nav__link {
    min-height: 2.75rem;
    display: flex;
    align-items: center;
  }
  
  .legal-contact-info a {
    min-height: 2.5rem;
    padding: var(--space-xs) 0;
  }
  
  .error-description {
    font-size: var(--text-lg);
  }
  
  .thank-you-description {
    font-size: var(--text-lg);
  }
  
  .cookie-consent__text {
    font-size: var(--text-sm);
  }
}

/* Larger phones (480px+) */
@media (min-width: 480px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cookie-consent {
    left: var(--space-lg);
    right: auto;
    max-width: 24rem;
  }
  
  .cookie-consent__content {
    flex-direction: row;
    align-items: center;
  }
  
  .cookie-consent__actions {
    flex-shrink: 0;
  }
}

/* Tablets (768px+) */
@media (min-width: 768px) {
  :root {
    --text-base: 1rem;
  }
  
  .container {
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
  }
  
  .section {
    padding: var(--space-4xl) 0;
  }
  
  .nav-toggle {
    display: none;
  }
  
  .nav-desktop {
    display: block;
  }
  
  .header-cta {
    display: inline-flex;
  }
  
  .hero__content {
    padding: var(--space-5xl) 0;
  }
  
  .hero__title {
    font-size: var(--text-5xl);
  }
  
  .hero__subtitle {
    font-size: var(--text-lg);
  }
  
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .story-layout {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-form-wrapper {
    padding: var(--space-xl);
  }
  
  .cta-banner {
    padding: var(--space-3xl) var(--space-2xl);
  }
  
  .cta-banner__title {
    font-size: var(--text-2xl);
  }
  
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .testimonials-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section__title {
    font-size: var(--text-3xl);
  }
  
  .page-header__title {
    font-size: var(--text-4xl);
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }
  
  .thank-you-details {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .legal-content {
    grid-template-columns: 280px 1fr;
  }
  
  .legal-nav {
    display: block;
  }
}

/* Desktops (1024px+) */
@media (min-width: 1024px) {
  .hero {
    min-height: 90vh;
  }
  
  .hero__content {
    max-width: 44rem;
  }
  
  .hero__title {
    font-size: var(--text-6xl);
  }
  
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .story-layout {
    gap: var(--space-4xl);
  }
  
  .story-content__title {
    font-size: var(--text-3xl);
  }
  
  .contact-layout {
    gap: var(--space-4xl);
  }
  
  .contact-info__title {
    font-size: var(--text-3xl);
  }
  
  .contact-wrapper {
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-5xl);
  }
  
  .contact-form-header,
  .contact-info-header {
    text-align: left;
  }
  
  .thank-you-details {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .legal-content {
    grid-template-columns: 320px 1fr;
    gap: var(--space-5xl);
  }
}

/* --------------------------------------------------------------------------
   Contact Page Styles
   -------------------------------------------------------------------------- */
.hero--contact {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__content--centered {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4xl);
  margin-top: var(--space-4xl);
}

.contact-form-container,
.contact-info-container {
  width: 100%;
}

.contact-form-header,
.contact-info-header {
  margin-bottom: var(--space-2xl);
  text-align: center;
}

.contact-form {
  background: var(--color-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: var(--space-xl);
}

.form-label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.form-required {
  color: var(--color-bloom);
}

.form-input {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-light);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-bloom);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(232, 180, 184, 0.1);
}

.form-input::placeholder {
  color: var(--color-muted);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230B1D3A' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-lg) center;
  padding-right: var(--space-4xl);
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
  font-family: var(--font-body);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.contact-info-card {
  background: linear-gradient(135deg, var(--color-deep-space) 0%, var(--color-midnight) 100%);
  padding: var(--space-3xl);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  color: var(--color-white);
}

.contact-info-header .section__title,
.contact-info-header .section__subtitle {
  color: var(--color-white);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.contact-info-item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 180, 184, 0.15);
  border-radius: var(--radius-lg);
  color: var(--color-bloom);
  font-size: var(--text-xl);
}

.contact-info-content {
  flex: 1;
}

.contact-info-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}

.contact-info-text {
  font-size: var(--text-base);
  color: var(--color-text-light);
  line-height: var(--line-relaxed);
}

.contact-info-text a {
  color: var(--color-bloom);
  text-decoration: none;
  transition: color var(--duration-normal) var(--ease-smooth);
}

.contact-info-text a:hover {
  color: var(--color-petal);
}

.contact-info-hours {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-muted);
  margin-top: var(--space-xs);
}

.contact-social {
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.contact-social-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-medium);
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

.contact-social-links {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
}

.contact-social-link {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 180, 184, 0.15);
  border-radius: var(--radius-full);
  color: var(--color-bloom);
  font-size: var(--text-lg);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.contact-social-link:hover {
  background: var(--color-bloom);
  color: var(--color-deep-space);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   404 Error Page Styles
   -------------------------------------------------------------------------- */
.error-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-ivory) 100%);
}

.error-content {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}

.error-illustration {
  position: relative;
  margin-bottom: var(--space-3xl);
}

.error-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.error-number__digit {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: var(--weight-bold);
  color: var(--color-deep-space);
  line-height: 1;
}

.error-number__flower {
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--color-bloom);
  animation: float 3s ease-in-out infinite;
}

.error-decoration {
  position: relative;
  height: 100px;
}

.error-decoration__leaf {
  position: absolute;
  color: var(--color-leaf);
  font-size: var(--text-2xl);
  opacity: 0.6;
  animation: float 4s ease-in-out infinite;
}

.error-decoration__leaf--1 {
  left: 10%;
  top: 0;
  animation-delay: 0s;
}

.error-decoration__leaf--2 {
  right: 15%;
  top: 20px;
  animation-delay: 1s;
}

.error-decoration__leaf--3 {
  left: 50%;
  bottom: 0;
  animation-delay: 2s;
  transform: translateX(-50%);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.error-text {
  margin-bottom: var(--space-3xl);
}

.error-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  font-weight: var(--weight-semibold);
  color: var(--color-deep-space);
  margin-bottom: var(--space-lg);
  line-height: var(--line-tight);
}

.error-description {
  font-size: var(--text-lg);
  color: var(--color-text);
  line-height: var(--line-relaxed);
  max-width: 36rem;
  margin: 0 auto;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
  margin-bottom: var(--space-3xl);
}

.error-links {
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(11, 29, 58, 0.1);
}

.error-links__title {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-muted);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.error-links__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.error-links__link {
  font-size: var(--text-base);
  color: var(--color-deep-space);
  text-decoration: none;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.error-links__link:hover {
  background: var(--color-bloom);
  color: var(--color-deep-space);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* --------------------------------------------------------------------------
   Thank You Page Styles
   -------------------------------------------------------------------------- */
.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--color-petal) 0%, var(--color-cream) 100%);
}

.thank-you-content {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.thank-you-icon {
  position: relative;
  margin-bottom: var(--space-3xl);
  display: inline-block;
}

.thank-you-icon__circle {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-bloom) 0%, var(--color-leaf) 100%);
  border-radius: var(--radius-full);
  color: var(--color-white);
  font-size: var(--text-4xl);
  box-shadow: var(--shadow-glow);
  animation: scaleIn 0.6s var(--ease-bounce);
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-you-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.thank-you-decoration__flower,
.thank-you-decoration__leaf {
  position: absolute;
  color: var(--color-bloom);
  font-size: var(--text-xl);
  opacity: 0.7;
  animation: float 3s ease-in-out infinite;
}

.thank-you-decoration__flower--1 {
  top: -20px;
  left: 10%;
  animation-delay: 0s;
}

.thank-you-decoration__flower--2 {
  top: -20px;
  right: 10%;
  animation-delay: 1.5s;
}

.thank-you-decoration__leaf--1 {
  bottom: -20px;
  left: 20%;
  color: var(--color-leaf);
  animation-delay: 0.75s;
}

.thank-you-decoration__leaf--2 {
  bottom: -20px;
  right: 20%;
  color: var(--color-leaf);
  animation-delay: 2.25s;
}

.thank-you-text {
  margin-bottom: var(--space-3xl);
}

.thank-you-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  font-weight: var(--weight-semibold);
  color: var(--color-deep-space);
  margin-bottom: var(--space-lg);
  line-height: var(--line-tight);
}

.thank-you-description {
  font-size: var(--text-lg);
  color: var(--color-text);
  line-height: var(--line-relaxed);
  max-width: 40rem;
  margin: 0 auto;
}

.thank-you-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.thank-you-detail-card {
  background: var(--color-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.thank-you-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.thank-you-detail-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-bloom) 0%, var(--color-petal) 100%);
  border-radius: var(--radius-full);
  color: var(--color-white);
  font-size: var(--text-xl);
}

.thank-you-detail-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  color: var(--color-deep-space);
  margin-bottom: var(--space-sm);
}

.thank-you-detail-text {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: var(--line-relaxed);
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
  margin-bottom: var(--space-3xl);
}

.thank-you-contact {
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(11, 29, 58, 0.1);
}

.thank-you-contact__text {
  font-size: var(--text-base);
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.thank-you-contact__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--color-deep-space);
  text-decoration: none;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-full);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.thank-you-contact__link:hover {
  background: var(--color-bloom);
  color: var(--color-deep-space);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* --------------------------------------------------------------------------
   Legal Pages Styles
   -------------------------------------------------------------------------- */
.legal-hero {
  background: linear-gradient(135deg, var(--color-deep-space) 0%, var(--color-midnight) 100%);
  padding: var(--space-5xl) 0 var(--space-4xl);
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.legal-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(232,180,184,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(232,180,184,0.1)"/><circle cx="40" cy="70" r="1" fill="rgba(232,180,184,0.1)"/></svg>');
  opacity: 0.3;
}

.legal-hero__content {
  position: relative;
  z-index: 1;
}

.legal-hero__icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 180, 184, 0.15);
  border-radius: var(--radius-full);
  color: var(--color-bloom);
  font-size: var(--text-4xl);
}

.legal-hero__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-4xl), 6vw, var(--text-6xl));
  font-weight: var(--weight-semibold);
  color: var(--color-white);
  margin-bottom: var(--space-md);
  line-height: var(--line-tight);
}

.legal-hero__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-light);
  font-weight: var(--weight-normal);
}

.legal-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4xl);
  margin-top: var(--space-4xl);
}

.legal-nav {
  background: var(--color-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: calc(var(--space-2xl) + 80px);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  display: none;
}

.legal-nav__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  color: var(--color-deep-space);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--color-petal);
}

.legal-nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.legal-nav__link {
  display: block;
  padding: var(--space-sm) var(--space-md);
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--duration-normal) var(--ease-smooth);
  font-size: var(--text-sm);
}

.legal-nav__link:hover {
  background: var(--color-petal);
  color: var(--color-deep-space);
  padding-left: var(--space-lg);
}

.legal-main {
  max-width: 100%;
}

.legal-section {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-2xl);
  scroll-margin-top: var(--space-2xl);
}

.legal-section__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-semibold);
  color: var(--color-deep-space);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--color-petal);
}

.legal-section__title i {
  color: var(--color-bloom);
  font-size: var(--text-xl);
}

.legal-section__text {
  font-size: var(--text-base);
  line-height: var(--line-relaxed);
  color: var(--color-text);
  margin-bottom: var(--space-lg);
}

.legal-section__text:last-child {
  margin-bottom: 0;
}

.legal-subsection {
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-light);
}

.legal-subsection__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  color: var(--color-deep-space);
  margin-bottom: var(--space-md);
}

.legal-list {
  list-style: none;
  padding-left: 0;
  margin: var(--space-lg) 0;
}

.legal-list li {
  position: relative;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
  line-height: var(--line-relaxed);
  color: var(--color-text);
}

.legal-list li::before {
  content: '🌸';
  position: absolute;
  left: 0;
  top: 0;
  font-size: var(--text-sm);
}

.legal-list li strong {
  color: var(--color-deep-space);
  font-weight: var(--weight-semibold);
}

.legal-contact-info {
  background: var(--color-light);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin-top: var(--space-lg);
}

.legal-contact-info p {
  margin-bottom: var(--space-sm);
  font-size: var(--text-base);
  color: var(--color-text);
}

.legal-contact-info p:last-child {
  margin-bottom: 0;
}

.legal-contact-info strong {
  color: var(--color-deep-space);
  font-weight: var(--weight-semibold);
}

.legal-contact-info a {
  color: var(--color-bloom);
  text-decoration: none;
  transition: color var(--duration-normal) var(--ease-smooth);
}

.legal-contact-info a:hover {
  color: var(--color-deep-space);
  text-decoration: underline;
}

/* Large desktops (1280px+) */
@media (min-width: 1280px) {
  .container {
    padding-left: var(--space-2xl);
    padding-right: var(--space-2xl);
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}