/* =========================================
   BeachByte — Custom CSS Design System
   Bento Grid / Indoor Plants Shop
   ========================================= */


:root {
  
  --color-primary: #3d7a4a;
  --color-primary-light: #5a9e69;
  --color-primary-dark: #2a5533;
  --color-accent: #c8a96e;
  --color-accent-light: #e0c99a;
  --color-surface: #f7f5f0;
  --color-surface-2: #edeae2;
  --color-surface-dark: #1e2820;
  --color-surface-dark-2: #2c3a2f;
  --color-text: #1a2118;
  --color-text-muted: #5a6358;
  --color-text-light: #f0ede6;
  --color-border: #d8d4c8;
  --color-white: #fdfcf9;

  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  
  --shadow-xs: 0 1px 3px rgba(30,40,24,0.06), 0 1px 2px rgba(30,40,24,0.04);
  --shadow-sm: 0 2px 8px rgba(30,40,24,0.08), 0 1px 3px rgba(30,40,24,0.06);
  --shadow-md: 0 4px 16px rgba(30,40,24,0.10), 0 2px 6px rgba(30,40,24,0.06);
  --shadow-lg: 0 8px 32px rgba(30,40,24,0.12), 0 4px 12px rgba(30,40,24,0.08);
  --shadow-xl: 0 16px 48px rgba(30,40,24,0.15), 0 8px 20px rgba(30,40,24,0.10);

  
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;

  
  --nav-height: 72px;
}


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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--color-primary-dark); }
ul { list-style: none; }


.u-container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.u-text-center { text-align: center; }
.u-hidden { display: none !important; }


h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

p { margin-bottom: var(--space-sm); }
p:last-child { margin-bottom: 0; }


.c-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
}

.c-btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}
.c-btn--primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.c-btn--ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.c-btn--ghost:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-1px);
}

.c-btn--outline-light {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.6);
}
.c-btn--outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--color-white);
  color: var(--color-white);
}

.c-btn--full { width: 100%; justify-content: center; }

.c-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
  transition: gap 0.2s ease, color 0.2s ease;
}
.c-link:hover { gap: 0.7rem; color: var(--color-primary-dark); }

/* =========================================
   NAVIGATION
   ========================================= */
.c-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--color-white);
  box-shadow: 0 0 0 rgba(30,40,24,0);
  transition: box-shadow 0.3s ease;
  height: var(--nav-height);
}

.c-nav__inner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  height: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.c-nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.c-nav__logo img { height: 36px; width: auto; }

.c-nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-left: auto;
}

.c-nav__links a {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
  padding: 0.25rem 0;
  position: relative;
}
.c-nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: transform 0.2s ease;
  border-radius: var(--radius-full);
}
.c-nav__links a:hover,
.c-nav__links a[aria-current="page"] {
  color: var(--color-primary);
}
.c-nav__links a[aria-current="page"]::after,
.c-nav__links a:hover::after { transform: scaleX(1); }

.c-nav__cta { margin-left: var(--space-sm); }

.c-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.c-nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}


.c-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,33,24,0.55);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.c-mobile-overlay.is-active {
  opacity: 1;
  pointer-events: all;
}

.c-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 90vw);
  background: var(--color-white);
  z-index: 201;
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-xl);
}
.c-mobile-menu.is-active { transform: translateX(0); }

.c-mobile-menu__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--color-text-muted);
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  transition: background 0.2s ease, color 0.2s ease;
}
.c-mobile-menu__close:hover { background: var(--color-surface); color: var(--color-text); }

.c-mobile-menu ul { display: flex; flex-direction: column; gap: var(--space-sm); }
.c-mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
  display: block;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.c-mobile-menu a:hover { color: var(--color-primary); padding-left: 0.5rem; }
.c-mobile-menu a[aria-current="page"] { color: var(--color-primary); }

/* =========================================
   HERO
   ========================================= */
.s-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-xl);
  padding-top: var(--nav-height);
  padding-inline: var(--space-md);
  max-width: 1200px;
  margin-inline: auto;
}

.s-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(61,122,74,0.1);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.s-hero__headline {
  margin-bottom: var(--space-md);
}
.s-hero__headline mark {
  background: none;
  color: var(--color-primary);
  position: relative;
}
.s-hero__headline mark::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 6px;
  background: rgba(61,122,74,0.18);
  z-index: -1;
  border-radius: var(--radius-sm);
}

.s-hero__sub {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 480px;
  margin-bottom: var(--space-lg);
}

.s-hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.s-hero__visual {
  position: relative;
}

.s-hero__fig {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
}
.s-hero__fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.s-hero__fig:hover img { transform: scale(1.03); }


.s-hero__badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-white);
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
  animation: floatBadge 4s ease-in-out infinite;
}
.s-hero__badge i { color: var(--color-primary); font-size: 1rem; }
.s-hero__badge--1 { top: 8%; left: -8%; animation-delay: 0s; }
.s-hero__badge--2 { top: 30%; right: -10%; animation-delay: 1s; }
.s-hero__badge--3 { bottom: 22%; left: -12%; animation-delay: 2s; }
.s-hero__badge--4 { bottom: 8%; right: -6%; animation-delay: 0.5s; }

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* =========================================
   OVERLAP / INTRO
   ========================================= */
.s-intro {
  background: var(--color-primary);
  padding: var(--space-xl) var(--space-md);
}

.s-overlap {
  margin-top: -60px;
  padding-top: calc(var(--space-xl) + 60px);
  position: relative;
  z-index: 1;
}

.highlight-statement {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  border: none;
}

.highlight-statement p {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.4;
  margin-bottom: var(--space-sm);
}

.highlight-statement cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
}

/* =========================================
   BENTO GRID
   ========================================= */
.s-bento {
  padding: var(--space-2xl) var(--space-md);
}

.s-bento__title {
  margin-bottom: var(--space-lg);
  text-align: center;
}

.s-bento__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}


.c-bento-cell {
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s ease;
}
.c-bento-cell:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.c-bento-cell hgroup h3 { margin-bottom: 0.2rem; }
.c-bento-cell hgroup p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 500;
  margin: 0;
}


.c-bento-cell--green {
  background: var(--color-primary);
  color: var(--color-white);
}
.c-bento-cell--green hgroup h3,
.c-bento-cell--green p { color: var(--color-white); }
.c-bento-cell--green hgroup p { color: rgba(255,255,255,0.7); }

.c-bento-cell--accent {
  background: var(--color-accent);
  color: var(--color-text);
}

.c-bento-cell--light {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

.c-bento-cell--dark {
  background: var(--color-surface-dark);
  color: var(--color-text-light);
}
.c-bento-cell--dark hgroup h3,
.c-bento-cell--dark p { color: var(--color-text-light); }
.c-bento-cell--dark hgroup p { color: rgba(240,237,230,0.65); }

.c-bento-cell--sand {
  background: var(--color-surface-2);
}

.c-bento-cell--image-only {
  padding: 0;
  overflow: hidden;
}
.c-bento-cell--image-only figure { height: 100%; min-height: 220px; position: relative; }
.c-bento-cell--image-only img { width: 100%; height: 100%; object-fit: cover; }
.c-bento-cell--image-only figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(26,33,24,0.7));
  color: white;
  padding: var(--space-sm);
  font-size: 0.8rem;
}


.c-bento-cell--wide { grid-column: span 2; }
.c-bento-cell--tall { grid-row: span 2; }


.c-bento-cell__fig {
  margin-top: auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  max-height: 180px;
}
.c-bento-cell__fig img { width: 100%; height: 100%; object-fit: cover; }

.c-bento-cell__fig-inline {
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  width: 220px;
}
.c-bento-cell__fig-inline img { width: 100%; height: 100%; object-fit: cover; }


.c-bento-cell--sand.c-bento-cell--wide {
  flex-direction: row;
  align-items: center;
  gap: var(--space-lg);
}
.c-bento-cell__text { flex: 1; }

.c-bento-cell__icon {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}
.c-bento-cell--dark .c-bento-cell__icon { color: var(--color-accent); }
.c-bento-cell--green .c-bento-cell__icon { color: rgba(255,255,255,0.8); }

.c-bento-cell__big-icon {
  font-size: 3rem;
  color: var(--color-accent);
  display: block;
  margin-bottom: var(--space-xs);
}

.c-bento-cell__list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: auto;
}
.c-bento-cell__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(240,237,230,0.9);
}
.c-bento-cell__list i { color: var(--color-accent); font-size: 0.75rem; }

/* =========================================
   PULL QUOTE
   ========================================= */
.s-pullquote {
  background: var(--color-surface-2);
  padding: var(--space-2xl) var(--space-md);
}

.c-pullquote {
  max-width: 800px;
  margin-inline: auto;
  position: relative;
  padding: var(--space-xl) var(--space-xl);
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.c-pullquote__mark {
  position: absolute;
  top: -0.2rem;
  left: var(--space-lg);
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
  color: var(--color-primary);
  opacity: 0.12;
  pointer-events: none;
  user-select: none;
}

.c-pullquote blockquote {
  border: none;
  padding: 0;
}
.c-pullquote blockquote p {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.45;
  font-style: italic;
  margin-bottom: var(--space-sm);
}
.c-pullquote cite {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: 0.04em;
}

/* =========================================
   HOW IT WORKS
   ========================================= */
.s-how {
  padding: var(--space-2xl) var(--space-md);
}
.s-how__title { text-align: center; margin-bottom: var(--space-sm); }
.s-how__intro {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}

.s-how__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.c-step {
  position: relative;
  padding: var(--space-lg);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.c-step:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.c-step__num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.c-step hgroup h3 { margin-bottom: 0.2rem; }
.c-step hgroup p { font-size: 0.8rem; color: var(--color-text-muted); margin: 0 0 var(--space-sm); }
.c-step p { font-size: 0.9rem; color: var(--color-text-muted); }

/* =========================================
   SWIPER / PLANT SLIDER
   ========================================= */
.s-slider {
  padding: var(--space-2xl) 0;
  background: var(--color-surface-dark);
  overflow: hidden;
}

.s-slider__title {
  color: var(--color-text-light);
  text-align: center;
  margin-bottom: var(--space-xs);
}
.s-slider__sub {
  color: rgba(240,237,230,0.6);
  text-align: center;
  margin-bottom: var(--space-xl);
}

.s-slider__swiper {
  padding-bottom: var(--space-xl) !important;
  padding-inline: var(--space-md);
}

.c-plant-card {
  background: var(--color-surface-dark-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.c-plant-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.c-plant-card figure {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.c-plant-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.c-plant-card:hover figure img { transform: scale(1.05); }

.c-plant-card hgroup {
  padding: var(--space-md) var(--space-md) var(--space-xs);
}
.c-plant-card hgroup h3 { color: var(--color-text-light); font-size: 1.1rem; }
.c-plant-card hgroup p { color: rgba(240,237,230,0.5); font-size: 0.8rem; margin: 0; font-style: italic; }

.c-plant-card > p {
  padding: 0 var(--space-md);
  color: rgba(240,237,230,0.75);
  font-size: 0.9rem;
}

.c-plant-card__meta {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md) var(--space-md);
  flex-wrap: wrap;
}
.c-plant-card__meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: rgba(240,237,230,0.55);
  background: rgba(255,255,255,0.05);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}
.c-plant-card__meta i { color: var(--color-accent); }


.swiper-pagination-bullet { background: rgba(240,237,230,0.35); }
.swiper-pagination-bullet-active { background: var(--color-accent); }
.swiper-button-next, .swiper-button-prev { color: var(--color-accent); }

/* =========================================
   CARE SECTION
   ========================================= */
.s-care {
  padding: var(--space-2xl) var(--space-md);
}
.s-care__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.s-care__eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.s-care__text h2 { margin-bottom: var(--space-md); }
.s-care__text p { color: var(--color-text-muted); margin-bottom: var(--space-sm); }
.s-care__text .c-btn { margin-top: var(--space-sm); }

.s-care__visual figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.s-care__visual img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.s-care__visual figure:hover img { transform: scale(1.03); }
.s-care__visual figcaption {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  padding: var(--space-xs) 0 0;
  font-style: italic;
}

/* =========================================
   PAGE HERO (Inner Pages)
   ========================================= */
.s-page-hero {
  padding: calc(var(--nav-height) + var(--space-xl)) var(--space-md) var(--space-xl);
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}
.s-page-hero--about {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
}
.s-page-hero--about h1,
.s-page-hero--about p { color: var(--color-white); }
.s-page-hero--about .s-page-hero__eyebrow { color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.12); }

.s-page-hero--tips {
  background: linear-gradient(135deg, var(--color-surface-dark) 0%, var(--color-surface-dark-2) 100%);
}
.s-page-hero--tips h1,
.s-page-hero--tips p { color: var(--color-text-light); }
.s-page-hero--tips .s-page-hero__eyebrow { color: var(--color-accent); background: rgba(200,169,110,0.15); }

.s-page-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(61,122,74,0.1);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  display: block;
}

.s-page-hero h1 { margin-bottom: var(--space-sm); }
.s-page-hero p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 600px;
}

/* =========================================
   ABOUT PAGE
   ========================================= */
.s-about-story {
  padding: var(--space-2xl) var(--space-md);
}
.s-about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.s-about-story__text h2 { margin-bottom: var(--space-md); }
.s-about-story__text p { color: var(--color-text-muted); }

.s-about-story__visual figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.s-about-story__visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.s-about-story__visual figcaption {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  padding-top: var(--space-xs);
  font-style: italic;
}

.s-values {
  background: var(--color-surface);
  padding: var(--space-2xl) var(--space-md);
}
.s-values h2 { margin-bottom: var(--space-xl); }
.s-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.c-value-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.c-value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.c-value-card__icon {
  font-size: 1.75rem;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}
.c-value-card hgroup h3 { margin-bottom: 0.2rem; }
.c-value-card hgroup p { font-size: 0.8rem; color: var(--color-text-muted); margin: 0 0 var(--space-sm); }
.c-value-card > p { font-size: 0.9rem; color: var(--color-text-muted); }

.s-contact-cta {
  padding: var(--space-2xl) var(--space-md);
}
.s-contact-cta__inner {
  background: var(--color-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  color: var(--color-white);
}
.s-contact-cta__inner h2 { color: var(--color-white); margin-bottom: var(--space-sm); }
.s-contact-cta__inner p { color: rgba(255,255,255,0.8); margin-bottom: var(--space-lg); }

/* =========================================
   VERSAND PAGE
   ========================================= */
.s-versand-bento { padding: var(--space-2xl) var(--space-md); }
.s-versand-info { padding: 0 var(--space-md) var(--space-2xl); }
.s-versand-info h2 { margin-bottom: var(--space-lg); }

.s-versand-info__accordion { display: flex; flex-direction: column; gap: 0; }

.c-accordion-item {
  border-bottom: 1px solid var(--color-border);
}
.c-accordion-item:first-child { border-top: 1px solid var(--color-border); }

.c-accordion-item__header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  gap: var(--space-sm);
  min-height: 44px;
  transition: color 0.2s ease;
}
.c-accordion-item__header:hover { color: var(--color-primary); }
.c-accordion-item__header i { transition: transform 0.3s ease; flex-shrink: 0; color: var(--color-primary); }
.c-accordion-item__header[aria-expanded="true"] i { transform: rotate(180deg); }

.c-accordion-item__body {
  display: none;
  padding-bottom: var(--space-md);
  color: var(--color-text-muted);
  font-size: 0.95rem;
}
.c-accordion-item__body.is-active { display: block; }

/* =========================================
   PFLEGETIPPS PAGE
   ========================================= */
.s-tips-intro { padding: var(--space-xl) var(--space-md) 0; }
.s-tips-intro .highlight-statement p { color: var(--color-text); }
.s-tips-intro .highlight-statement { background: var(--color-surface); border-radius: var(--radius-xl); padding: var(--space-xl); box-shadow: var(--shadow-sm); }
.s-tips-intro .highlight-statement p { font-size: clamp(1rem, 2vw, 1.3rem); }
.s-tips-intro .highlight-statement cite { color: var(--color-text-muted); }

.s-tips-bento { padding: var(--space-xl) var(--space-md) var(--space-2xl); }

.s-tips-seasonal { padding: 0 var(--space-md) var(--space-2xl); }
.s-tips-seasonal h2 { margin-bottom: var(--space-lg); }
.s-tips-seasonal__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.c-season-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.c-season-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.c-season-card__icon { font-size: 2rem; color: var(--color-primary); margin-bottom: var(--space-sm); }
.c-season-card h3 { margin-bottom: var(--space-xs); }
.c-season-card p { font-size: 0.9rem; color: var(--color-text-muted); }

/* =========================================
   CONTACT PAGE
   ========================================= */
.s-contact-main {
  padding-top: var(--nav-height);
  min-height: 100vh;
}

.s-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: calc(100vh - var(--nav-height));
}

.s-contact-info {
  background: var(--color-surface);
  padding: var(--space-2xl) var(--space-xl);
  border-right: 1px solid var(--color-border);
}

.s-contact-info h1 { margin-bottom: var(--space-sm); }
.s-contact-info > p { color: var(--color-text-muted); margin-bottom: var(--space-xl); }

.s-contact-info__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.c-contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}
.c-contact-detail i { color: var(--color-primary); font-size: 1.1rem; margin-top: 0.1rem; flex-shrink: 0; }
.c-contact-detail address, .c-contact-detail a {
  font-style: normal;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.c-contact-detail a { color: var(--color-primary); }
.c-contact-detail a:hover { color: var(--color-primary-dark); }

.s-contact-info__accessibility {
  margin-bottom: var(--space-xl);
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}
.s-contact-info__accessibility h2 { font-size: 1rem; margin-bottom: var(--space-xs); }
.s-contact-info__accessibility p { font-size: 0.9rem; color: var(--color-text-muted); }

.s-contact-info__map { border-radius: var(--radius-lg); overflow: hidden; }

.s-contact-form-wrap {
  padding: var(--space-2xl) var(--space-xl);
  background: var(--color-white);
}


.c-contact-form {
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field-group label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
}

.field-group input,
.field-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  min-height: 44px;
}
.field-group input:focus,
.field-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(61,122,74,0.12);
}
.field-group input[aria-invalid="true"],
.field-group textarea[aria-invalid="true"] {
  border-color: #c0392b;
}

.field-group textarea { resize: vertical; min-height: 140px; }

.field-hint {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.field-group--checkbox { flex-direction: row; align-items: flex-start; gap: var(--space-sm); flex-wrap: wrap; }
.c-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.c-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  accent-color: var(--color-primary);
  cursor: pointer;
}
.field-group--checkbox .field-hint { width: 100%; margin-left: 1.6rem; }

.c-form-error {
  background: rgba(192,57,43,0.08);
  border: 1px solid rgba(192,57,43,0.3);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  color: #c0392b;
  font-size: 0.9rem;
}

/* =========================================
   THANKS PAGE
   ========================================= */
.s-thanks {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) var(--space-md);
  padding-top: calc(var(--nav-height) + var(--space-xl));
}

.s-thanks__inner {
  text-align: center;
  max-width: 480px;
}

.c-thanks-anim {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-xl);
}

.c-thanks-anim__svg {
  width: 120px;
  height: 120px;
}

.c-thanks-anim__circle {
  stroke-dasharray: 276.46;
  stroke-dashoffset: 276.46;
  animation: drawCircle 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.c-thanks-anim__check {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation: drawCheck 0.5s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards;
}

@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}
@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

.s-thanks__text { animation: fadeInUp 0.6s ease 1.5s both; }
.s-thanks__text.is-hidden { opacity: 0; transform: translateY(20px); }

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

.s-thanks__text h1 { margin-bottom: var(--space-sm); }
.s-thanks__text p { color: var(--color-text-muted); margin-bottom: var(--space-lg); }

/* =========================================
   LEGAL PAGES
   ========================================= */
.s-legal {
  padding-top: calc(var(--nav-height) + var(--space-xl));
  padding-bottom: var(--space-2xl);
}

.s-legal__header {
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-lg);
  border-bottom: 2px solid var(--color-border);
}
.s-legal__header h1 { margin-bottom: var(--space-xs); }
.s-legal__meta {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}


.s-legal__timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.s-legal__timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-accent));
  opacity: 0.3;
}

.s-legal__entry {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--space-lg);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--color-border);
}
.s-legal__entry:last-child { border-bottom: none; }

.s-legal__marker {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
}

.s-legal__body h2 { margin-bottom: var(--space-sm); font-size: 1.2rem; }
.s-legal__body p, .s-legal__body li { color: var(--color-text-muted); font-size: 0.95rem; margin-bottom: var(--space-xs); }
.s-legal__body ul { list-style: disc; padding-left: var(--space-md); }
.s-legal__body address { font-style: normal; color: var(--color-text-muted); line-height: 1.8; }


.s-legal--terms .s-legal__blocks {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}
.s-legal__block {
  padding: var(--space-xl);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}
.s-legal__block h2 { margin-bottom: var(--space-sm); font-size: 1.15rem; color: var(--color-primary-dark); }
.s-legal__block p { color: var(--color-text-muted); font-size: 0.95rem; }


.s-legal--cookies .s-legal__compact {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.s-legal__cookie-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-xs);
}
.s-legal__cookie-card h2 { font-size: 1.1rem; margin-bottom: var(--space-sm); }
.s-legal__cookie-card p { color: var(--color-text-muted); font-size: 0.95rem; }
.s-legal__cookie-card ul { list-style: disc; padding-left: var(--space-md); color: var(--color-text-muted); font-size: 0.95rem; }
.s-legal__cookie-card ul li { margin-bottom: 0.4rem; }

.s-legal__cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-sm) 0;
  font-size: 0.9rem;
}
.s-legal__cookie-table th, .s-legal__cookie-table td {
  padding: 0.6rem 0.8rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.s-legal__cookie-table th {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  background: var(--color-surface);
}


.s-legal--impressum .s-legal__impressum-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}
.s-impressum__section {
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
}
.s-impressum__section h2 {
  font-size: 1.05rem;
  margin-bottom: var(--space-sm);
  color: var(--color-primary-dark);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--color-border);
}
.s-impressum__section p, .s-impressum__section li { color: var(--color-text-muted); font-size: 0.95rem; }
.s-impressum__section address { font-style: normal; color: var(--color-text-muted); line-height: 1.8; }
.s-impressum__section ul { list-style: disc; padding-left: var(--space-md); }
.s-impressum__section ul li { margin-bottom: 0.3rem; }

.s-legal__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.s-legal__table th, .s-legal__table td {
  padding: 0.6rem 0.8rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}
.s-legal__table th {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  white-space: nowrap;
  width: 40%;
}
.s-legal__table td { color: var(--color-text); }

/* =========================================
   FOOTER
   ========================================= */
.c-footer {
  background: var(--color-surface-dark);
  color: var(--color-text-light);
  margin-top: auto;
}

.c-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
  padding: var(--space-2xl) var(--space-md);
}

.c-footer__brand img { margin-bottom: var(--space-sm); filter: brightness(0) invert(1); opacity: 0.9; }
.c-footer__brand p { color: rgba(240,237,230,0.6); font-size: 0.9rem; margin-bottom: var(--space-md); }
.c-footer__brand address {
  font-style: normal;
  color: rgba(240,237,230,0.5);
  font-size: 0.85rem;
  line-height: 1.8;
}
.c-footer__brand address a { color: rgba(240,237,230,0.7); }
.c-footer__brand address a:hover { color: var(--color-accent); }

.c-footer__links h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240,237,230,0.5);
  margin-bottom: var(--space-md);
}
.c-footer__links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.c-footer__links a {
  color: rgba(240,237,230,0.7);
  font-size: 0.9rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.c-footer__links a:hover { color: var(--color-accent); padding-left: 4px; }

.c-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-md);
}
.c-footer__bottom small {
  color: rgba(240,237,230,0.35);
  font-size: 0.82rem;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1024px) {
  .s-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--nav-height) + var(--space-xl));
    padding-bottom: var(--space-xl);
    gap: var(--space-lg);
  }
  .s-hero__visual { max-width: 500px; margin-inline: auto; }
  .s-hero__badge--1, .s-hero__badge--3 { left: -4%; }
  .s-hero__badge--2, .s-hero__badge--4 { right: -4%; }

  .s-bento__grid { grid-template-columns: repeat(2, 1fr); }
  .c-bento-cell--tall { grid-row: span 1; }

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

  .s-care__grid { grid-template-columns: 1fr; }
  .s-about-story__grid { grid-template-columns: 1fr; }

  .s-contact-layout { grid-template-columns: 1fr; }
  .s-contact-info { border-right: none; border-bottom: 1px solid var(--color-border); }

  .c-footer__inner { grid-template-columns: 1fr 1fr; }
  .c-footer__brand { grid-column: 1 / -1; }

  .c-bento-cell--sand.c-bento-cell--wide { flex-direction: column; }
  .c-bento-cell__fig-inline { width: 100%; max-height: 200px; }
}

@media (max-width: 768px) {
  .c-nav__links, .c-nav__cta { display: none; }
  .c-nav__hamburger { display: flex; }

  .s-bento__grid { grid-template-columns: 1fr; }
  .c-bento-cell--wide { grid-column: span 1; }

  .s-how__steps { grid-template-columns: 1fr; }
  .s-values__grid { grid-template-columns: 1fr; }
  .s-tips-seasonal__grid { grid-template-columns: 1fr 1fr; }

  .s-hero__badge--1, .s-hero__badge--3 { display: none; }

  .c-pullquote { padding: var(--space-lg); }
  .c-pullquote__mark { font-size: 5rem; }

  .s-contact-info { padding: var(--space-xl) var(--space-md); }
  .s-contact-form-wrap { padding: var(--space-xl) var(--space-md); }

  .s-legal__entry { grid-template-columns: 40px 1fr; gap: var(--space-md); }
  .s-legal__marker { width: 36px; height: 36px; font-size: 0.85rem; }
  .s-legal__timeline::before { left: 18px; }

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

@media (max-width: 480px) {
  .s-tips-seasonal__grid { grid-template-columns: 1fr; }
  .s-hero__badge--2, .s-hero__badge--4 { display: none; }
  .s-hero__actions { flex-direction: column; }
  .c-btn { width: 100%; justify-content: center; }
  .c-nav__cta { display: none; }
}