/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 248, 242, 0.92);
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  color: var(--text-primary);
}

.logo:hover {
  color: var(--text-primary);
}

.logo-wordmark {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  gap: 8px;
}

.logo-wordmark--footer {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text-on-dark);
}

.logo-leaf {
  color: var(--accent-copper);
  flex-shrink: 0;
  padding: 5px;
  border: 1px solid rgba(184, 92, 56, 0.35);
  background: rgba(184, 92, 56, 0.06);
}

.logo-part {
  color: inherit;
}

.logo-accent {
  color: var(--accent-moss);
  font-weight: 600;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-cta {
  padding: 10px 18px;
  font-size: 0.6875rem;
  margin-left: 8px;
  flex-shrink: 0;
}

.nav-desktop a {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  transition: color var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--accent-primary);
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--accent-copper);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-strong);
  cursor: pointer;
  padding: 8px;
  color: var(--text-primary);
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: currentColor;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--bg-forest);
  border-left: 1px solid rgba(244, 239, 230, 0.1);
  padding: 80px 32px 32px;
  z-index: 1001;
  transition: right var(--transition);
}

.nav-mobile.open {
  right: 0;
}

.nav-mobile a {
  display: block;
  padding: 16px 0;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  border-bottom: 1px solid rgba(244, 239, 230, 0.1);
}

.nav-mobile a:hover {
  color: #ffffff;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28, 25, 23, 0.55);
  z-index: 1000;
  opacity: 0;
  transition: opacity var(--transition);
}

.nav-overlay.open {
  display: block;
  opacity: 1;
}

.nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-on-dark);
  cursor: pointer;
  font-size: 1.5rem;
}

/* Hero */
.hero {
  padding: 96px 0 108px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f7f1e6 0%, var(--bg-deep) 48%, #efe8d8 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border-radius: 0;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-copper);
  margin-bottom: 28px;
  background: none;
  border: none;
  max-width: 100%;
  flex-wrap: wrap;
}

.hero-badge-dot {
  width: 18px;
  height: 1px;
  background: var(--accent-copper);
  display: inline-block;
}

.hero h1 {
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero h1 em {
  font-style: italic;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--accent-copper);
}

.hero-desc {
  font-size: 1.125rem;
  margin-bottom: 36px;
  max-width: 520px;
  color: var(--text-secondary);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 520px;
  border-top: 1px solid var(--border-subtle);
}

.stat-item {
  text-align: left;
  padding: 20px 20px 0 0;
  border-right: 1px solid var(--border-subtle);
}

.stat-item:last-child {
  border-right: none;
  padding-right: 0;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 2.15rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent-primary);
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  margin-top: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.hero-breath {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
}

.hero-product-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  border: 1px solid var(--border-strong);
  background:
    linear-gradient(180deg, #fffdf8 0%, var(--bg-surface) 100%);
  padding: 44px 36px 32px;
  box-sizing: border-box;
  box-shadow: 12px 12px 0 rgba(26, 51, 40, 0.06);
}

.hero-plate {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-heading);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-copper);
  z-index: 2;
}

.hero-product-wrap::before,
.hero-product-wrap::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--accent-copper);
  border-style: solid;
}

.hero-product-wrap::before {
  top: 8px;
  left: 8px;
  border-width: 1px 0 0 1px;
}

.hero-product-wrap::after {
  bottom: 8px;
  right: 8px;
  border-width: 0 1px 1px 0;
}

.hero-product-wrap img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  margin: 0 auto;
}

.hero-ingredients {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0;
  width: 100%;
  border: 1px solid var(--border-strong);
  border-top: none;
  background: var(--bg-forest);
}

.hero-ingredients span {
  flex: 1;
  min-width: 0;
  text-align: center;
  padding: 13px 10px;
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  border-right: 1px solid rgba(244, 239, 230, 0.12);
}

.hero-ingredients span:last-child {
  border-right: none;
}

/* Ingredient band */
.ingredient-band {
  background: var(--bg-forest);
  padding: 22px 0;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(184, 92, 56, 0.25);
  border-bottom: 1px solid rgba(184, 92, 56, 0.25);
}

.ingredient-band-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 20px;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}

.band-sep {
  color: var(--accent-copper);
  letter-spacing: 0;
}

.ingredient-band .band-accent {
  color: var(--text-on-dark);
}

/* Trust bar */
.trust-bar {
  padding: 0;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
}

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

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  padding: 28px 16px;
  border-right: 1px solid var(--border-subtle);
}

.trust-item:last-child {
  border-right: none;
}

.trust-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-copper);
  border: 1px solid rgba(184, 92, 56, 0.28);
  background: rgba(184, 92, 56, 0.08);
}

/* About */
.section-head {
  margin-bottom: 48px;
}

.section-line {
  width: 40px;
  height: 1px;
  margin-top: 20px;
  background: var(--accent-copper);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: var(--bg-forest);
  box-shadow: 16px 16px 0 rgba(26, 51, 40, 0.08);
}

.about-visual-ornament {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(244, 239, 230, 0.14);
  pointer-events: none;
}

.about-kicker {
  position: absolute;
  top: 32px;
  left: 36px;
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-copper);
  z-index: 1;
}

.about-visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  background:
    linear-gradient(to top, rgba(26, 51, 40, 0.96) 0%, rgba(26, 51, 40, 0.35) 48%, rgba(26, 51, 40, 0.12) 100%),
    radial-gradient(circle at 80% 18%, rgba(184, 92, 56, 0.28), transparent 36%),
    repeating-linear-gradient(-18deg, transparent, transparent 16px, rgba(244, 239, 230, 0.05) 16px, rgba(244, 239, 230, 0.05) 17px);
}

.about-city {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: var(--text-on-dark);
  margin-bottom: 10px;
}

.about-location {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-on-dark);
  letter-spacing: -0.02em;
}

.about-visual-inner span {
  color: var(--text-on-dark-muted);
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 32px;
  border: 1px solid var(--border-subtle);
}

.about-pillar {
  text-align: left;
  padding: 20px 16px;
  border-right: 1px solid var(--border-subtle);
}

.about-pillar:last-child {
  border-right: none;
}

.about-pillar-num {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-copper);
}

.about-pillar-label {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--border-subtle);
  margin: 0;
}

/* Science cards */
.science-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.science-num {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent-copper);
  display: block;
  margin-bottom: 20px;
}

.glass-card.science-card {
  overflow: visible;
}

.science-card::after {
  content: attr(data-index);
  position: absolute;
  top: 8px;
  right: 16px;
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(26, 51, 40, 0.06);
  pointer-events: none;
}

.science-icon {
  width: 40px;
  height: 40px;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  border: 1px solid var(--border-subtle);
}

.science-card h3 {
  margin-bottom: 12px;
}

/* Ingredients bento */
.nutrition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.nutrition-card {
  overflow: hidden;
  padding: 0;
}

.nutrition-card.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.nutrition-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.nutrition-card.featured .nutrition-img-wrap {
  height: 280px;
}

.nutrition-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: saturate(0.85) contrast(1.05);
}

.nutrition-card:hover .nutrition-img-wrap img {
  transform: scale(1.03);
}

.nutrition-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(251, 248, 242, 0.95) 0%, transparent 55%);
}

.nutrition-body {
  padding: 24px;
}

.nutrition-body h3 {
  margin-bottom: 8px;
  color: var(--accent-primary);
}

.nutrition-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tag {
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 10px;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: 0;
  color: var(--accent-primary);
}

/* RinoRub showcase */
.rinorub-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.rinorub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.rinorub-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background:
    radial-gradient(circle at 50% 30%, #fffdf8 0%, var(--bg-deep) 70%);
  border: 1px solid var(--border-strong);
  box-shadow: 18px 18px 0 rgba(26, 51, 40, 0.07);
}

.rinorub-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rinorub-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-copper);
  margin-bottom: 16px;
}

.ingredients-list {
  list-style: none;
  margin: 24px 0;
}

.ingredients-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.ingredients-list li::before {
  content: '';
  width: 10px;
  height: 1px;
  background: var(--accent-copper);
  flex-shrink: 0;
}

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  border-top: 1px solid var(--border-subtle);
}

.timeline-step {
  text-align: left;
  position: relative;
  padding: 40px 32px 0 0;
  border-right: 1px solid var(--border-subtle);
}

.timeline-step:last-child {
  border-right: none;
  padding-right: 0;
}

.step-num {
  width: auto;
  height: auto;
  margin: 0 0 20px;
  display: block;
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 700;
  color: var(--accent-copper);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

/* FAQ */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background: transparent;
  border-bottom: 1px solid var(--border-subtle);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--accent-copper);
}

.faq-icon {
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--accent-copper);
  transition: transform var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding-bottom: 22px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Contact form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 0;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: none;
  background: var(--bg-surface);
}

.form-textarea {
  min-height: 130px;
  resize: vertical;
}

.form-message {
  padding: 14px 18px;
  border-radius: 0;
  margin-top: 16px;
  display: none;
  font-size: 0.875rem;
}

.form-message.success {
  background: var(--bg-sage);
  color: var(--accent-primary);
  border: 1px solid var(--border-subtle);
}

.form-message.error {
  background: #f8ece8;
  color: #9a4a2c;
  border: 1px solid rgba(184, 92, 56, 0.25);
}

.disclaimer-box {
  background: var(--bg-deep);
  border: 1px solid var(--border-subtle);
  border-left: 2px solid var(--accent-copper);
  padding: 24px;
}

.disclaimer-box h4 {
  font-size: 0.875rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-weight: 700;
}

/* Footer */
.site-footer {
  background: var(--bg-forest);
  color: var(--text-on-dark-muted);
  padding: 72px 0 32px;
  position: relative;
  z-index: 1;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-copper) 20%, var(--accent-sage) 50%, var(--accent-copper) 80%, transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9375rem;
  max-width: 300px;
  line-height: 1.65;
  color: var(--text-on-dark-muted);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--text-on-dark);
}

.footer-col a {
  display: block;
  padding: 7px 0;
  font-size: 0.9375rem;
  color: var(--text-on-dark-muted);
}

.footer-col a:hover,
.footer-links a:hover {
  color: #ffffff;
}

.footer-legal {
  font-size: 0.8125rem;
  line-height: 1.8;
  color: var(--text-on-dark-muted);
}

.footer-bottom {
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid rgba(244, 239, 230, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--text-on-dark-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links a {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 16px;
  right: 16px;
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg-surface);
  border: 1px solid var(--border-strong);
  padding: 20px 24px;
  z-index: 2000;
  transform: translateY(140%);
  transition: transform 0.4s ease;
  box-shadow: 0 18px 48px rgba(26, 51, 40, 0.18);
}

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

.cookie-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-inner p {
  flex: 1;
  min-width: 280px;
  font-size: 0.875rem;
  margin: 0;
  color: var(--text-secondary);
}

.cookie-inner a {
  color: var(--accent-copper);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-banner .btn-outline {
  color: var(--text-primary);
  border-color: var(--border-strong);
}

/* Contact page */
.page-hero {
  text-align: left;
  background:
    linear-gradient(165deg, #e4eee6 0%, #eef3ee 42%, var(--bg-deep) 100%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 72px 0 80px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.contact-card {
  text-align: left;
}

.contact-card-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-copper);
  border: 1px solid var(--border-subtle);
}

.contact-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.contact-card p,
.contact-card a {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.map-wrap {
  overflow: hidden;
  border: 1px solid var(--border-strong);
  margin-bottom: 48px;
  aspect-ratio: 16/9;
  background: var(--bg-elevated);
}

.map-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 28px 24px;
}

.map-placeholder h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
}

.map-placeholder p {
  max-width: 520px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.map-placeholder .map-alt {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.35) contrast(1.05);
}

.hours-table {
  width: 100%;
  font-size: 0.9375rem;
}

.hours-table td {
  padding: 10px 0;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--text-primary);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid,
  .science-grid,
  .nutrition-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero-visual {
    order: -1;
  }

  .nutrition-card.featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  .about-grid,
  .rinorub-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .timeline-step {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    padding: 28px 0;
  }

  .trust-items {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    justify-content: flex-start;
  }

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

  .about-pillars {
    grid-template-columns: 1fr;
  }

  .about-pillar {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .nav-toggle {
    display: flex !important;
    color: var(--text-primary);
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
  .nav-mobile { display: block; }
  .nav-cta { display: none; }

  .hero-visual,
  .hero-breath,
  .hero-product-wrap,
  .hero-content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-product-wrap {
    padding: 20px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    padding: 16px 0;
  }

  .science-grid,
  .nutrition-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .nutrition-card.featured {
    grid-column: span 1;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.05rem;
    line-height: 1.08;
  }

  .hero-product-wrap img {
    max-height: 240px;
  }

  .hero-ingredients {
    display: flex;
    flex-direction: column;
  }

  .hero-ingredients span {
    font-size: 0.5625rem;
    letter-spacing: 0.12em;
    padding: 8px 10px;
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }

  .hero-ingredients span:last-child {
    border-bottom: none;
  }

  .cookie-inner a {
    white-space: nowrap;
  }
}

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


/* Gesundheitshinweis (Pflichtangabe direkt nach dem Inhalt) */
.health-notice-section {
  padding-top: 0;
}

.health-notice {
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid var(--border-strong);
  border-left: 4px solid var(--accent-copper);
  background: var(--bg-surface);
  padding: 32px;
}

.health-notice h2 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.health-notice p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.health-notice p + p {
  margin-top: 14px;
}

.health-notice-meta {
  font-size: 0.8125rem !important;
  color: var(--text-muted) !important;
  border-top: 1px solid var(--border-subtle);
  padding-top: 14px;
}

/* Einwilligung im Formular */
.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.form-consent input[type='checkbox'] {
  margin-top: 4px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--accent-primary);
}

.form-consent label {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.form-hint {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Fussnoten */
.footer-note {
  margin-top: 10px;
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--text-on-dark-muted);
  opacity: 0.85;
}

.footer-link-btn {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 640px) {
  .health-notice {
    padding: 24px 20px;
  }
}
