﻿:root {
  --color-primary: #2A9D8F;
  --color-accent: #F4A261;
  --color-background: #FFFFFF;
  --color-text: #1A1A1A;
  --color-subtext: #6C757D;
  --color-border: rgba(26, 26, 26, 0.08);
  --color-hero-backdrop: #eed6b9;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--color-background);
  color: var(--color-text);
}

img {
  max-width: 100%;
  display: block;
}

main {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  background-color: #FFFFFF;
  border-bottom: 1px solid #E5E7EB;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  z-index: 1000;
}

.navbar {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 0 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 110px;
  overflow: visible;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.brand-logo {
  width: 220px;
  height: 220px;
  object-fit: contain;
  margin-top: -35px;
  margin-bottom: -35px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-toggle,
.nav-toggle-button {
  display: none;
}

.nav-link {
  color: var(--color-subtext);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: var(--color-primary);
}

.nav-link-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background-color: var(--color-primary);
  color: #FFFFFF;
}

.nav-link-cta:hover,
.nav-link-cta:focus,
.nav-link-cta.active {
  color: #FFFFFF;
  background-color: var(--color-accent);
}

.hero,
.products-section,
.newsletter {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.hero {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding: 0 0 2.5rem;
}

.hero-content {
  max-width: 1000px;
}

.hero-eyebrow,
.section-eyebrow,
.newsletter-eyebrow {
  margin-bottom: 0.85rem;
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  max-width: 200ch;
  margin-bottom: 1rem;
  font-size: 2.25rem;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.hero-text,
.newsletter-text,
.product-description {
  color: var(--color-subtext);
  font-size: 1rem;
  line-height: 1.75;
}

.hero-text {
  max-width: 46ch;
  margin-bottom: 0.85rem;
}

.hero-note {
  max-width: 52ch;
  margin-bottom: 1.5rem;
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.75;
}

.hero-note-preorder {
  margin-top: -0.75rem;
  margin-bottom: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-button,
.product-button,
.newsletter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  border: none;
  background-color: var(--color-primary);
  color: #FFFFFF;
  font-family: inherit;
  font-size: 0.96rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.hero-button-secondary {
  border: 1px solid rgba(42, 157, 143, 0.18);
  background-color: #FFFFFF;
  color: var(--color-primary);
}

.hero-button:hover,
.hero-button:focus,
.product-button:hover,
.product-button:focus,
.newsletter-button:hover,
.newsletter-button:focus {
  background-color: var(--color-accent);
}

.hero-button-secondary:hover,
.hero-button-secondary:focus {
  background-color: rgba(42, 157, 143, 0.06);
}

.hero-carousel {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
  background-color: var(--color-hero-backdrop);
  touch-action: pan-y;
  user-select: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slide-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background-color: var(--color-hero-backdrop);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26, 26, 26, 0.36) 0%, rgba(26, 26, 26, 0.14) 25%, rgba(26, 26, 26, 0) 48%);
}

.hero-slide-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 56%;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateY(-50%);
}

.hero-slide-title {
  max-width: 12ch;
  margin-bottom: 1.25rem;
  color: #FFFFFF;
  font-size: 3rem;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.hero-slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-slide-actions .hero-button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background-color: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
}

.hero-slide-actions .hero-button-secondary:hover,
.hero-slide-actions .hero-button-secondary:focus {
  background-color: rgba(255, 255, 255, 0.18);
}

.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.5rem;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero-dot.is-active {
  background-color: #FFFFFF;
  transform: scale(1.1);
}

.home-intro-signup {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem 4.5rem;
}

.home-intro-signup-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.home-intro-signup-eyebrow {
  margin-bottom: 0.85rem;
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-intro-signup-title {
  margin-bottom: 1rem;
  color: var(--color-text);
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.home-intro-signup-text {
  max-width: 58ch;
  margin: 0 auto 1.75rem;
  color: var(--color-subtext);
  font-size: 1rem;
  line-height: 1.75;
}

.home-intro-signup-button {
  display: inline-flex;
}

.home-intro-signup-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.highlight-card {
  padding: 1.15rem 1rem;
  border: 1px solid rgba(42, 157, 143, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfa 100%);
  text-align: left;
}

.highlight-card-value {
  margin-bottom: 0.45rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 600;
}

.highlight-card-text {
  color: var(--color-subtext);
  font-size: 0.95rem;
  line-height: 1.6;
}

.home-intro-signup-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.home-intro-secondary-link,
.product-link {
  color: var(--color-primary);
  font-size: 0.96rem;
  font-weight: 600;
  text-decoration: none;
}

.home-intro-secondary-link:hover,
.home-intro-secondary-link:focus,
.product-link:hover,
.product-link:focus {
  color: var(--color-accent);
}

.home-intro-signup-note {
  margin-top: 0.8rem;
  color: var(--color-subtext);
  font-size: 0.9rem;
  line-height: 1.7;
}

.products-section {
  padding-top: 0;
  padding-bottom: 5rem;
}

.section-heading {
  max-width: 620px;
  margin-bottom: 2rem;
}

.section-text {
  color: var(--color-subtext);
  font-size: 1rem;
  line-height: 1.75;
}

.section-title,
.newsletter-title {
  color: var(--color-text);
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.product-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}

.product-item,
.product-cta-card {
  min-height: 100%;
}

.product-box,
.set-box {
  padding: 1.75rem;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background-color: #fcfcfc;
}

.set-box {
  background: linear-gradient(180deg, #fcfdfd 0%, #f2faf8 100%);
  border-color: rgba(42, 157, 143, 0.22);
}

.product-box {
  position: relative;
  box-shadow: 0 16px 36px rgba(26, 26, 26, 0.04);
}

.product-box-featured {
  grid-column: span 6;
  background: linear-gradient(180deg, #fcfdfd 0%, #f2faf8 100%);
  border-color: rgba(42, 157, 143, 0.22);
}

.products-grid .product-box:not(.product-box-featured) {
  grid-column: span 6;
}

.product-box-sand {
  background: linear-gradient(180deg, #fcfdfd 0%, #f2faf8 100%);
  border-color: rgba(42, 157, 143, 0.22);
}

.product-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 1rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background-color: rgba(42, 157, 143, 0.12);
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 600;
}

.product-badge-soft {
  background-color: rgba(42, 157, 143, 0.12);
  color: var(--color-primary);
}

.product-image {
  width: 100%;
  height: 360px;
  margin-bottom: 1.5rem;
  object-fit: contain;
  object-position: left center;
}

.product-title {
  margin-bottom: 0.75rem;
  color: var(--color-text);
  font-size: 1.35rem;
  line-height: 1.25;
  font-weight: 600;
}

.product-description {
  max-width: 34ch;
  margin-bottom: 1.25rem;
}

.product-points {
  margin: 0 0 1.5rem;
  padding-left: 1.1rem;
  color: var(--color-subtext);
}

.product-points li {
  margin-bottom: 0.55rem;
  line-height: 1.65;
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.product-cta-card {
  grid-column: span 12;
  padding: 2rem;
  border-radius: 24px;
  background: linear-gradient(135deg, #1f6f68 0%, #2a9d8f 100%);
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(26, 26, 26, 0.08);
}

.product-cta-eyebrow {
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-cta-title {
  max-width: 20ch;
  margin-bottom: 1rem;
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.product-cta-text {
  max-width: 58ch;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.75;
}

.product-cta-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.product-cta-card .hero-button {
  background-color: #ffffff;
  color: var(--color-primary);
}

.product-cta-card .hero-button:hover,
.product-cta-card .hero-button:focus {
  background-color: #f2f6f5;
}

.product-cta-card .product-link {
  color: #ffffff;
}

.product-cta-card .product-link:hover,
.product-cta-card .product-link:focus {
  color: rgba(255, 255, 255, 0.82);
}

.newsletter {
  padding-top: 0;
  padding-bottom: 5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 3rem;
  align-items: start;
}

.newsletter-content {
  max-width: 560px;
}

.newsletter-title {
  max-width: 25ch;
  margin-bottom: 1rem;
}

.newsletter-form {
  width: 100%;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.newsletter-label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 500;
}

.newsletter-input-group {
  display: flex;
  gap: 0.75rem;
}

.newsletter-input {
  flex: 1;
  min-height: 48px;
  padding: 0 0.9rem;
  border: 1px solid rgba(26, 26, 26, 0.18);
  background-color: #FFFFFF;
  color: var(--color-text);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}

.newsletter-input:focus {
  border-color: var(--color-primary);
}

.newsletter-note {
  margin-top: 0.8rem;
  color: var(--color-subtext);
  font-size: 0.84rem;
  line-height: 1.6;
}

.newsletter-message {
  margin-top: 0.9rem;
  color: var(--color-primary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.form-consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-top: 0.9rem;
  color: var(--color-subtext);
  font-size: 0.86rem;
  line-height: 1.55;
}

.preorder-form .form-consent {
  margin-top: 0;
}

.form-consent input {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  margin-top: 0.18rem;
  accent-color: var(--color-primary);
}

.form-consent a {
  color: var(--color-primary);
  font-weight: 600;
}

.newsletter-message-error {
  color: #b42318;
}

.newsletter-button:disabled {
  cursor: wait;
  opacity: 0.8;
}

.thank-you-page {
  max-width: 1200px;
  margin: 0 auto;
  min-height: calc(100vh - 260px);
  padding: 4.5rem 1.5rem 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-card {
  max-width: 720px;
  width: 100%;
  padding: 2rem;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background-color: #FFFFFF;
  box-shadow: 0 18px 40px rgba(26, 26, 26, 0.06);
  text-align: center;
}

.thank-you-card .section-title {
  margin-bottom: 1rem;
}

.thank-you-card .newsletter-text {
  margin-bottom: 1.5rem;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}

.product-detail {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(520px, 1.2fr);
  gap: 3rem;
  align-items: start;
}

.product-detail {
  padding: 2rem;
  margin-top: 3.5rem;
  margin-bottom: 5rem;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background: linear-gradient(180deg, #fcfdfd 0%, #f2faf8 100%);
  border-color: rgba(42, 157, 143, 0.22);
}

.product-detail-image {
  width: 100%;
  height: 460px;
  object-fit: contain;
  object-position: left center;
}

.product-detail-content {
  width: 100%;
  max-width: 720px;
}

.product-detail-title {
  margin-bottom: 1rem;
  color: var(--color-text);
  font-size: 2.25rem;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.product-detail-text {
  max-width: 52ch;
  margin-bottom: 2.5rem;
  color: var(--color-subtext);
  font-size: 1rem;
  line-height: 1.75;
}

.product-detail-subtitle {
  margin-bottom: 1rem;
  color: var(--color-text);
  font-size: 1.35rem;
  line-height: 1.25;
  font-weight: 600;
}

.product-detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 2rem;
  padding-left: 1.25rem;
  color: var(--color-text);
}

.product-detail-list-essentials {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-detail-list-hygiene {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-detail-list li {
  margin-bottom: 0.75rem;
  padding-left: 0.15rem;
  font-size: 1rem;
  line-height: 1.7;
}

.sets-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 5rem;
}

.sets-page-intro {
  max-width: 620px;
  margin-bottom: 3rem;
}

.sets-page-title {
  margin-bottom: 1rem;
  color: var(--color-text);
  font-size: 2.25rem;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.sets-page-text {
  color: var(--color-subtext);
  font-size: 1rem;
  line-height: 1.75;
}

.sets-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.set-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.set-row-image {
  width: 100%;
  height: 180px;
  object-fit: contain;
  object-position: left center;
}

.set-row-title {
  margin-bottom: 0.75rem;
  color: var(--color-text);
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 600;
}

.set-row-text {
  max-width: 48ch;
  margin-bottom: 1.25rem;
  color: var(--color-subtext);
  font-size: 1rem;
  line-height: 1.75;
}

.about-intro,
.team-section {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.about-intro {
  padding-top: 4rem;
  padding-bottom: 4rem;
  max-width: 900px;
}

.about-title {
  margin-bottom: 1.25rem;
  color: var(--color-text);
  font-size: 2.25rem;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.about-text {
  max-width: 62ch;
  margin-bottom: 1.25rem;
  color: var(--color-subtext);
  font-size: 1rem;
  line-height: 1.8;
}

.blog-page,
.blog-article {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 5rem;
}

.blog-page-intro {
  max-width: 700px;
  margin-bottom: 3rem;
}

.blog-page-title,
.blog-article-title {
  margin-bottom: 1rem;
  color: var(--color-text);
  font-size: 2.25rem;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.blog-page-text,
.blog-card-text,
.blog-article-content p {
  color: var(--color-subtext);
  font-size: 1rem;
  line-height: 1.75;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.blog-card {
  padding: 1.75rem;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background-color: #fcfcfc;
}

.blog-card-date,
.blog-article-date {
  margin-bottom: 0.85rem;
  color: var(--color-subtext);
  font-size: 0.92rem;
  line-height: 1.6;
}

.blog-card-title {
  margin-bottom: 0.85rem;
  color: var(--color-text);
  font-size: 1.45rem;
  line-height: 1.2;
  font-weight: 600;
}

.blog-card-text {
  max-width: 58ch;
  margin-bottom: 1.5rem;
}

.blog-article {
  max-width: 860px;
}

.blog-back-link {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--color-primary);
  font-size: 0.96rem;
  font-weight: 600;
  text-decoration: none;
}

.blog-back-link:hover,
.blog-back-link:focus {
  color: var(--color-accent);
}

.product-detail > .blog-back-link {
  grid-column: 1 / -1;
}

.blog-article-content {
  max-width: 68ch;
}

.blog-article-content p:not(:last-child) {
  margin-bottom: 1.25rem;
}

.team-section {
  padding-top: 0;
  padding-bottom: 5rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.team-photo {
  width: 100%;
  max-width: 180px;
  height: 220px;
  margin-bottom: 1rem;
  object-fit: cover;
  object-position: center top;
}

.team-photo-mees {
  object-position: center 18%;
}

.team-photo-ties {
  object-position: center 20%;
}

.team-photo-latocha {
  object-position: center 10%;
}

.team-photo-reinoud {
  object-position: center 12%;
}

.team-name {
  margin-bottom: 0.6rem;
  color: var(--color-text);
  font-size: 1.2rem;
  line-height: 1.25;
  font-weight: 600;
}

.team-text {
  color: var(--color-subtext);
  font-size: 0.96rem;
  line-height: 1.7;
}

.faq-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}

.faq-intro {
  margin-bottom: 2.5rem;
}

.faq-title {
  color: var(--color-text);
  font-size: 2.25rem;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-group-label {
  padding-top: 0.5rem;
  color: var(--color-primary);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;
}

.faq-group-label:not(:first-child) {
  margin-top: 1.5rem;
}

.faq-item {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  color: var(--color-text);
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  float: right;
  color: var(--color-primary);
  font-size: 1.2rem;
  line-height: 1;
}

.faq-item[open] .faq-question::after {
  content: "-";
}

.faq-answer {
  max-width: 62ch;
  padding-top: 0.85rem;
  color: var(--color-subtext);
  font-size: 1rem;
  line-height: 1.75;
}

.site-footer {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 0 2.5rem;
  color: var(--color-subtext);
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: space-between;
  row-gap: 1rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.5rem 0 0;
  align-items: start;
}

.footer-column {
  min-width: 0;
}

.footer-column:first-child {
  max-width: 24ch;
}

.footer-title {
  margin-bottom: 0.75rem;
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-text,
.footer-link,
.footer-copy {
  color: var(--color-subtext);
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-text {
  max-width: 24ch;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-link {
  display: inline-block;
  text-decoration: none;
}

.footer-column > .footer-link {
  display: block;
}

.footer-link:hover,
.footer-link:focus {
  color: var(--color-primary);
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  column-gap: 1.5rem;
  row-gap: 0.55rem;
  margin-top: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--color-subtext);
  font-size: 0.92rem;
  line-height: 1.7;
  text-decoration: none;
}

.social-link:hover,
.social-link:focus {
  color: var(--color-primary);
}

.social-link-placeholder {
  pointer-events: none;
  cursor: default;
}

.social-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  object-fit: contain;
  object-position: center;
}

.social-icon-linkedin,
.social-icon-instagram,
.social-icon-tiktok {
  padding: 1px;
}

.social-icon-facebook {
  padding: 2px 1px;
}

.footer-copy {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
  margin-top: 0.6rem;
  text-align: right;
}

.privacy-page,
.not-found-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 5rem;
}

.preorder-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 3rem;
  align-items: start;
}

.preorder-intro {
  max-width: 620px;
}

.preorder-title {
  margin-bottom: 1rem;
  color: var(--color-text);
  font-size: 2.25rem;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.preorder-text {
  max-width: 56ch;
  color: var(--color-subtext);
  font-size: 1rem;
  line-height: 1.75;
}

.preorder-text + .preorder-text {
  margin-top: 1rem;
}

.preorder-form-wrap {
  padding: 2rem;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background-color: #fcfcfc;
}

.preorder-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.preorder-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.preorder-field[hidden],
.preorder-quantity-grid[hidden] {
  display: none !important;
}

.preorder-quantity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.preorder-label {
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 500;
}

.preorder-input,
.preorder-select,
.preorder-textarea {
  min-height: 48px;
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(26, 26, 26, 0.18);
  background-color: #FFFFFF;
  color: var(--color-text);
  font-family: inherit;
  font-size: 1rem;
  border-radius: 16px;
  outline: none;
}

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

.preorder-input:focus,
.preorder-select:focus,
.preorder-textarea:focus {
  border-color: var(--color-primary);
}

.preorder-note {
  color: var(--color-subtext);
  font-size: 0.9rem;
  line-height: 1.7;
}

.preorder-message {
  color: var(--color-primary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.privacy-intro,
.not-found-intro {
  max-width: 760px;
  margin-bottom: 2rem;
}

.privacy-title,
.not-found-title {
  margin-bottom: 1rem;
  color: var(--color-text);
  font-size: 2.25rem;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.privacy-text,
.not-found-text {
  max-width: 64ch;
  color: var(--color-subtext);
  font-size: 1rem;
  line-height: 1.75;
}

.privacy-section {
  max-width: 760px;
  margin-bottom: 2rem;
}

.privacy-subtitle {
  margin-bottom: 0.75rem;
  color: var(--color-text);
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 600;
}

.privacy-section .privacy-text:not(:last-child) {
  margin-bottom: 1rem;
}

.not-found-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .navbar {
    position: relative;
    padding: 0.65rem 1rem;
    min-height: 84px;
  }

  .nav-toggle {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }

  .nav-toggle-button {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    margin-left: auto;
    border: 1px solid rgba(26, 26, 26, 0.12);
    border-radius: 14px;
    background-color: #FFFFFF;
    cursor: pointer;
  }

  .nav-toggle-button span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background-color: var(--color-text);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-toggle:checked + .nav-toggle-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle:checked + .nav-toggle-button span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .nav-toggle-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    padding: 0.9rem;
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 18px;
    background-color: #FFFFFF;
    box-shadow: 0 18px 36px rgba(26, 26, 26, 0.08);
  }

  .nav-toggle:checked + .nav-toggle-button + .nav-links {
    display: flex;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 0.7rem 0.15rem;
  }

  .nav-link-cta {
    min-height: 48px;
    margin-top: 0.35rem;
    padding: 0.85rem 1rem;
  }

  .brand-logo {
    width: 118px;
    height: auto;
    margin-top: -12px;
    margin-bottom: -12px;
  }

  .hero,
  .home-intro-signup,
  .products-section,
  .newsletter {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-bottom: 2rem;
  }

  .hero-carousel {
    min-height: auto;
    margin: 0 1rem;
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 8px;
    background-color: #FFFFFF;
    box-shadow: 0 14px 32px rgba(26, 26, 26, 0.08);
  }

  .hero-slide {
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
  }

  .hero-slide.is-active {
    position: relative;
  }

  .hero-slide-image {
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    background-color: var(--color-hero-backdrop);
    border-radius: 8px 8px 0 0;
  }

  .hero-slide-content {
    position: relative;
    top: auto;
    bottom: auto;
    z-index: 2;
    padding: 1.15rem 1rem 3.25rem;
    background-color: #FFFFFF;
    color: var(--color-text);
    transform: none;
  }

  .hero-slide-title {
    max-width: 18ch;
    margin-bottom: 1rem;
    color: var(--color-text);
    font-size: 1.9rem;
  }

  .hero-slide-actions {
    width: 100%;
    gap: 0.65rem;
  }

  .hero-slide-actions .hero-button {
    flex: 1 1 150px;
    min-width: 0;
    padding-left: 0.8rem;
    padding-right: 0.8rem;
    font-size: 0.92rem;
    text-align: center;
  }

  .hero-slide-actions .hero-button-secondary {
    border-color: rgba(42, 157, 143, 0.22);
    background-color: #FFFFFF;
    color: var(--color-primary);
  }

  .hero-slide-overlay {
    display: none;
  }

  .hero-dots {
    bottom: 1.2rem;
  }

  .hero-dot {
    background-color: rgba(26, 26, 26, 0.18);
  }

  .hero-dot.is-active {
    background-color: var(--color-primary);
  }

  .home-intro-signup {
    padding-bottom: 4rem;
  }

  .home-intro-signup-highlights {
    grid-template-columns: 1fr;
  }

  .home-intro-signup-title {
    font-size: 1.7rem;
  }


  .section-title,
  .newsletter-title,
  .product-cta-title {
    font-size: 1.7rem;
  }

  .products-grid,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .products-grid {
    gap: 2.25rem;
  }

  .product-box-featured,
  .products-grid .product-box:not(.product-box-featured),
  .product-cta-card {
    grid-column: span 1;
  }

  .product-box,
  .product-cta-card,
  .preorder-form-wrap,
  .blog-card,
  .thank-you-card {
    border-radius: 8px;
  }

  .product-image {
    height: auto;
    aspect-ratio: 4 / 3;
    object-position: center;
  }

  .product-actions,
  .product-cta-actions,
  .home-intro-signup-actions {
    align-items: stretch;
  }

  .newsletter-input-group {
    flex-direction: column;
  }

  .newsletter-button {
    width: 100%;
  }

  .product-detail {
    padding: 1.5rem;
    margin: 2.5rem 1rem 4rem;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-detail-image {
    height: auto;
    aspect-ratio: 4 / 3;
    object-position: center;
  }

  .product-detail-title {
    font-size: 2rem;
  }

  .product-detail-list-essentials,
  .product-detail-list-hygiene {
    grid-template-columns: 1fr;
  }

  .sets-page {
    padding: 2.5rem 1rem 4rem;
  }

  .sets-page-title {
    font-size: 2rem;
  }

  .set-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .set-row-image {
    width: 100%;
    max-width: 260px;
    height: 180px;
  }

  .about-intro,
  .team-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .about-intro {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }

  .about-title {
    font-size: 2rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .team-photo {
    max-width: 220px;
    height: 260px;
  }

  .faq-page {
    padding: 2.5rem 1rem 4rem;
  }

  .faq-title {
    font-size: 2rem;
  }

  .preorder-page {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 1rem 4rem;
  }

  .preorder-title {
    font-size: 2rem;
  }

  .preorder-form-wrap {
    padding: 1.5rem;
  }

  .preorder-quantity-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 0 0 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    max-width: none;
    gap: 1.5rem;
    padding: 1.5rem 1rem 0;
  }

  .footer-copy {
    max-width: none;
    padding: 0 1rem;
    text-align: left;
  }
}
