/* =========================================================================
   REJUMED — Stylesheet
   -------------------------------------------------------------------------
   Token system
     Color   : clinical teal + cyan family, warm coral accent, cool mist bg
     Type    : Space Grotesk (display) / Inter (body) / IBM Plex Mono (data)
     Layout  : centered 1180px wrap, 8px spacing scale
     Signature: product cards styled as pharmacy pack labels — a category
                tag, an "Rx" ingredient line set in mono, and a perforated
                tear-line above the CTA, echoing a real medicine box.
   ========================================================================= */

:root {
  /* ---- Color: clinical blues / teal / cyan, warm accent ---- */
  --teal-900: #0A3F42;
  --teal-700: #0E5459;
  --teal-600: #12777A;
  --teal-500: #1B9498;
  --cyan-400: #4FC1C9;
  --cyan-200: #CDEEEF;
  --coral-500: #FF7A59;
  --coral-600: #F0623E;
  --mist-100: #F4F8F7;
  --mist-200: #EAF2F1;
  --white: #FFFFFF;
  --ink-900: #0F2624;
  --ink-600: #3E5654;
  --ink-400: #6B807E;
  --line: #DCE8E7;

  /* ---- Type ---- */
  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;

  /* ---- Layout ---- */
  --wrap: 1180px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-card: 0 1px 2px rgba(15, 38, 36, 0.04), 0 8px 24px rgba(15, 38, 36, 0.06);
  --shadow-lift: 0 12px 32px rgba(10, 63, 66, 0.14);
}

/* ---------------------------------- Reset --------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p, dl, dd { margin: 0; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

:focus-visible {
  outline: 2.5px solid var(--coral-500);
  outline-offset: 2px;
  border-radius: 4px;
}

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--teal-900);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 999;
}
.skip-link:focus { left: 0; }

.anchor-spacer { display: block; position: relative; top: -80px; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin: 0 0 12px;
}

/* ---------------------------------- Buttons -------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn--primary {
  background: var(--coral-500);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(255, 122, 89, 0.32);
}
.btn--primary:hover { background: var(--coral-600); transform: translateY(-1px); }
.btn--secondary {
  background: var(--white);
  color: var(--teal-900);
  border: 1.5px solid var(--line);
}
.btn--secondary:hover { border-color: var(--teal-600); color: var(--teal-700); }
.btn--ghost {
  padding: 10px 18px;
  font-size: 14.5px;
  color: var(--teal-900);
  border: 1.5px solid var(--line);
  border-radius: 100px;
}
.btn--ghost:hover { border-color: var(--teal-600); }
.btn--icon {
  padding: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  color: var(--teal-900);
}
.btn--icon:hover { border-color: var(--teal-600); background: var(--mist-100); }
.btn--card {
  width: 100%;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  background: var(--teal-900);
  color: var(--white);
  font-size: 14px;
  padding: 13px 20px;
}
.btn--card:hover { background: var(--teal-700); }
.btn--card svg { transition: transform 0.15s ease; }
.btn--card:hover svg { transform: translate(2px, -2px); }

/* ---------------------------------- Header --------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 4px 20px rgba(10, 63, 66, 0.06); }
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.logo { display: flex; align-items: center; color: var(--teal-900); }
.logo__image { height: 40px; width: auto; display: block; }
.nav { display: flex; align-items: center; gap: 30px; margin-left: 56px; }
.nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-600);
  position: relative;
  padding: 4px 0;
}
.nav a:hover { color: var(--teal-700); }
.nav a[aria-current="page"] { color: var(--teal-900); font-weight: 600; }
.site-header__actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--teal-900);
  margin-inline: auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------------------------------- Hero slider ----------------------------------- */
/* ---------------------------------- Hero banner (simple, static) ----------------------------------- */
.hero-banner {
  position: relative;
  overflow: hidden;
  background: var(--teal-900);
}
.hero-banner img {
  width: 100%;
  aspect-ratio: 16 / 6.4;
  min-height: 320px;
  object-fit: cover;
  display: block;
}
.hero-banner__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(10,63,66,0.55) 0%, rgba(10,63,66,0.38) 46%, rgba(10,63,66,0.05) 68%, rgba(10,63,66,0) 78%);
}
.hero-banner__content { max-width: 620px; }
.hero-banner__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.6vw, 48px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 14px;
}
.hero-banner__subtitle {
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
  max-width: 480px;
  margin-bottom: 26px;
}
.hero-banner__actions { display: flex; flex-wrap: wrap; gap: 12px; }

@media (max-width: 780px) {
  .hero-banner img { aspect-ratio: 4 / 5; min-height: 420px; }
  .hero-banner__overlay { background: linear-gradient(180deg, rgba(10,63,66,0.15) 0%, rgba(10,63,66,0.75) 100%); align-items: flex-end; padding-bottom: 36px; }
  .hero-banner__actions { flex-direction: column; align-items: stretch; }
  .hero-banner__actions .btn { width: 100%; }
}

/* ---------------------------------- Simple about write-up ----------------------------------- */
.about-simple { background: var(--mist-100); padding: 72px 0; }
.about-simple__inner { max-width: 680px; margin-inline: auto; text-align: center; }
.about-simple__inner .eyebrow { justify-content: center; }
.about-simple__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 700;
  color: var(--teal-900);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.about-simple__inner p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-600);
  margin-bottom: 24px;
}

.catalog--tight { padding-top: 0; }

.category-block { padding: 40px 0; }
.category-block:first-of-type { padding-top: 8px; }
.category-block__heading { margin-bottom: 24px; }
.category-block__heading h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--teal-900);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.category-block__heading p { font-size: 14px; color: var(--ink-400); }

.product-grid--fixed {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) {
  .product-grid--fixed { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 780px) {
  .product-grid--fixed { grid-template-columns: repeat(2, 1fr); }
}

.category-blurb {
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--mist-100);
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
}
.category-blurb--span-1 { grid-column: span 1; }
.category-blurb--span-2 { grid-column: span 2; }
.category-blurb--span-3 { grid-column: span 3; }
@media (max-width: 1100px) {
  .category-blurb--span-2, .category-blurb--span-3 { grid-column: span 2; }
}
@media (max-width: 780px) {
  .category-blurb--span-1, .category-blurb--span-2, .category-blurb--span-3 { grid-column: span 2; }
}
.category-blurb__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 10px;
}
.category-blurb__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-600);
  margin-bottom: 16px;
}
.category-blurb__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--teal-700);
  align-self: flex-start;
}
.category-blurb__link:hover { color: var(--teal-900); }

.slider {
  position: relative;
  overflow: hidden;
  background: var(--teal-900);
}
.slider__track {
  display: flex;
  width: 100%;
  transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
}
@media (prefers-reduced-motion: reduce) {
  .slider__track { transition: none; }
}
.slide {
  position: relative;
  flex: 0 0 100%;
  aspect-ratio: 16 / 6.4;
  min-height: 320px;
}
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(10,63,66,0.55) 0%, rgba(10,63,66,0.38) 46%, rgba(10,63,66,0.05) 68%, rgba(10,63,66,0) 78%);
}
.slide__content { max-width: 620px; }
.eyebrow--light { color: var(--cyan-200); }
.slide__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4.4vw, 46px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 14px;
}
.slide__subtitle {
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
  max-width: 480px;
  margin-bottom: 26px;
}
.slide__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
  z-index: 2;
}
.slider__arrow:hover { background: rgba(255,255,255,0.3); }
.slider__arrow--prev { left: 20px; }
.slider__arrow--next { right: 20px; }

.slider__dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.slider__dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: background 0.15s ease, transform 0.15s ease;
}
.slider__dots .dot.is-active { background: var(--white); transform: scale(1.2); }

/* ---------------------------------- Stats bar ----------------------------------- */
.stats-bar { background: var(--mist-100); border-bottom: 1px solid var(--line); }
.stats-bar__inner { padding: 28px 24px; }
.hero__stats { display: flex; gap: 40px; flex-wrap: wrap; justify-content: center; }
.hero__stats dt {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--teal-700);
}
.hero__stats dd { font-size: 13px; color: var(--ink-400); margin-top: 2px; }

/* ---------------------------------- Promo banners ----------------------------------- */
.promo-banner { padding: 40px 0; background: var(--white); }
.promo-banner--top { padding-top: 40px; padding-bottom: 0; }
.promo-banner--top img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.promo-banner__link {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.promo-banner__link:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.promo-banner__link img { width: 100%; height: auto; display: block; }

/* ---------------------------------- Section heading ------------------------ */
.section-heading { max-width: 620px; margin-bottom: 40px; }
.section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 700;
  color: var(--teal-900);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.section-heading__body { color: var(--ink-600); font-size: 15.5px; line-height: 1.6; }

[data-reveal] { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
  [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
}

/* ---------------------------------- Catalog / Tabs -------------------------- */
.catalog { padding: 88px 0; background: var(--white); }
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 6px;
  background: var(--mist-100);
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 40px;
}
.tab {
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-600);
  transition: background 0.15s ease, color 0.15s ease;
}
.tab:hover { color: var(--teal-700); }
.tab.is-active { background: var(--teal-900); color: var(--white); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 28px;
}
.category-banner { position: relative; margin-bottom: 28px; }
.category-banner__item {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.category-banner__item:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.category-banner__item img { width: 100%; height: auto; display: block; }
.category-banner__item[hidden] { display: none; }

.catalog__view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--teal-700);
}
.catalog__view-all:hover { color: var(--teal-900); }
.catalog__view-all svg { transition: transform 0.15s ease; }
.catalog__view-all:hover svg { transform: translate(2px, -2px); }

/* ---- Product card: styled like a medicine-pack label ---- */
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.product-card[hidden] { display: none; }

.product-card__label { display: flex; flex-direction: column; flex: 1; }
.product-card__tag {
  position: absolute;
  margin: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
  background: var(--teal-900);
  color: var(--white);
  z-index: 2;
}
.product-card__tag[data-tag="personal-care"] { background: var(--coral-500); }
.product-card__tag[data-tag="supplements"] { background: var(--teal-600); }
.product-card__tag[data-tag="oils"] { background: var(--cyan-400); color: var(--teal-900); }

.product-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    repeating-linear-gradient(135deg, var(--mist-200) 0, var(--mist-200) 2px, var(--mist-100) 2px, var(--mist-100) 14px);
}
.product-card__media img { width: 100%; height: 100%; object-fit: cover; }

.product-card__body { padding: 18px 20px 16px; flex: 1; display: flex; flex-direction: column; }
.product-card__name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--teal-900);
  margin-bottom: 2px;
}
.product-card__size { font-size: 13px; color: var(--ink-400); margin-bottom: 12px; }
.product-card__ingredient {
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.55;
  color: var(--ink-600);
  background: var(--mist-100);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-top: auto;
  display: flex;
  gap: 8px;
}
.rx-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  color: var(--teal-600);
  flex-shrink: 0;
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 64px 24px;
  border: 1.5px dashed var(--line);
  border-radius: var(--radius-md);
  background: var(--mist-100);
}
.empty-state[hidden] { display: none; }
.empty-state__title { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--teal-900); margin-bottom: 8px; }
.empty-state__body { color: var(--ink-600); font-size: 14.5px; max-width: 440px; margin-inline: auto; }

/* ---------------------------------- About ----------------------------------- */
.page-hero {
  background: linear-gradient(180deg, var(--mist-100) 0%, var(--white) 100%);
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--line);
}
.page-hero__inner { max-width: 640px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--teal-900);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-600);
}

/* ---------------------------------- Contact page (animated) ----------------------------------- */
.contact-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-600) 100%);
  padding: 72px 0 64px;
}
.contact-hero__inner { position: relative; z-index: 1; max-width: 560px; }
.contact-hero .eyebrow { color: var(--cyan-200); }
.contact-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.6vw, 46px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.contact-hero p { font-size: 15.5px; line-height: 1.65; color: rgba(255,255,255,0.88); }

.contact-hero__decor { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.c-shape {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.c-shape--1 { width: 140px; height: 140px; top: -30px; right: 8%; }
.c-shape--2 { width: 70px; height: 70px; top: 60%; right: 20%; border-color: rgba(255,255,255,0.25); }
.c-shape--3 { width: 200px; height: 200px; bottom: -80px; right: -40px; }
.c-shape--4 { width: 40px; height: 40px; top: 20%; right: 38%; background: rgba(255,122,89,0.5); border: none; }
.c-shape--5 { width: 18px; height: 18px; top: 55%; right: 6%; background: rgba(79,193,201,0.7); border: none; }

@media (prefers-reduced-motion: no-preference) {
  .c-shape--1 { animation: float-a 9s ease-in-out infinite; }
  .c-shape--2 { animation: float-b 7s ease-in-out infinite; }
  .c-shape--3 { animation: float-a 12s ease-in-out infinite; }
  .c-shape--4 { animation: float-b 6s ease-in-out infinite; }
  .c-shape--5 { animation: float-a 5.5s ease-in-out infinite; }
}
@keyframes float-a {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-10px, 14px); }
}
@keyframes float-b {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(12px, -12px); }
}

.contact-page { padding: 56px 0 88px; background: var(--white); }
.contact-page__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  background: var(--mist-100);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-card--anim:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.contact-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-600);
  margin-bottom: 16px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.contact-card--anim:hover .contact-card__icon { background: var(--teal-600); color: var(--white); transform: scale(1.08); }
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--teal-900);
  margin-bottom: 6px;
}
.contact-card a, .contact-card span { font-size: 14.5px; color: var(--ink-600); line-height: 1.6; }
.contact-card a { display: inline-block; }
.contact-card a + br + a { margin-top: 2px; }
.contact-card a:hover { color: var(--teal-700); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form__field { display: flex; flex-direction: column; gap: 6px; }
.contact-form__field label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-400);
}
.contact-form__field input,
.contact-form__field textarea {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink-900);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  background: var(--mist-100);
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  resize: vertical;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--teal-600);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(18, 119, 122, 0.12);
}
.contact-form__submit {
  align-self: flex-start;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.contact-form__submit:hover { transform: translateY(-2px) scale(1.02); }
.contact-form__note {
  font-size: 12.5px;
  color: var(--ink-400);
  line-height: 1.5;
  transition: color 0.2s ease;
}
.contact-form__note.is-active { color: var(--teal-700); font-weight: 600; }

@media (max-width: 780px) {
  .contact-page__grid { grid-template-columns: 1fr; }
  .contact-form__row { grid-template-columns: 1fr; }
  .contact-hero { padding: 56px 0 48px; }
  .contact-form { padding: 24px; }
}


.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  color: var(--ink-400);
  padding: 24px 0 0;
}
.breadcrumb a { color: var(--teal-600); font-weight: 500; }
.breadcrumb a:hover { color: var(--teal-700); }

.product-detail { padding: 32px 0 88px; }
.product-detail__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.product-detail__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 3;
  background: repeating-linear-gradient(135deg, var(--mist-200) 0, var(--mist-200) 2px, var(--mist-100) 2px, var(--mist-100) 14px);
}
.product-detail__media img { width: 100%; height: 100%; object-fit: cover; }
.product-detail__tag {
  position: absolute;
  margin: 16px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 6px;
  background: var(--teal-900);
  color: var(--white);
}
.product-detail__tag[data-tag="personal-care"] { background: var(--coral-500); }
.product-detail__tag[data-tag="supplements"] { background: var(--teal-600); }
.product-detail__tag[data-tag="oils"] { background: var(--cyan-400); color: var(--teal-900); }

.product-detail__name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 700;
  color: var(--teal-900);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.product-detail__size { font-size: 15px; color: var(--ink-400); margin-bottom: 24px; }
.product-detail__ingredient {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-600);
  background: var(--mist-100);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 24px;
  display: flex;
  gap: 10px;
}
.product-detail__ingredient .rx-mark { font-size: 15px; }
.product-detail__description {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-600);
  margin-bottom: 32px;
  max-width: 46ch;
}
.product-detail__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.product-detail__related h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--teal-900);
  margin-bottom: 16px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.related-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--teal-900);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.related-card:hover { border-color: var(--teal-600); transform: translateY(-2px); }
.related-card span { display: block; font-family: var(--font-mono); font-size: 11px; font-weight: 500; color: var(--ink-400); margin-top: 4px; text-transform: none; }

@media (max-width: 780px) {
  .product-detail__inner { grid-template-columns: 1fr; gap: 28px; }
}

.about { background: var(--mist-100); padding: 88px 0; }
.about__inner { display: grid; grid-template-columns: 1.2fr 0.9fr; gap: 56px; align-items: start; }
.about__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  color: var(--teal-900);
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.about__copy p { color: var(--ink-600); line-height: 1.7; font-size: 15.5px; margin-bottom: 16px; }
.about__panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 8px;
}
.about__list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  font-size: 14.5px;
  color: var(--ink-600);
  line-height: 1.5;
}
.about__list li:not(:last-child) { border-bottom: 1px solid var(--line); }
.about__list span {
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--teal-600);
  font-weight: 500;
}

/* ---------------------------------- Footer ---------------------------------- */
.site-footer { background: var(--teal-900); color: var(--mist-200); padding: 64px 0 0; }
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.7fr 0.9fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-col h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.footer-col--brand .logo { color: var(--white); margin-bottom: 14px; }
.footer-col--brand .logo .logo__image { height: 34px; }
.footer-col--brand p { font-size: 14.5px; line-height: 1.6; color: rgba(244, 248, 247, 0.72); max-width: 320px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: var(--mist-200);
  transition: background 0.15s ease, border-color 0.15s ease;
}
.footer-social a:hover { background: rgba(255,255,255,0.08); border-color: var(--cyan-400); }

.footer-contact li, .footer-links li { margin-bottom: 14px; font-size: 14.5px; }
.footer-contact li { display: flex; align-items: center; gap: 10px; color: rgba(244, 248, 247, 0.85); }
.footer-contact a:hover, .footer-links a:hover { color: var(--cyan-400); }
.footer-links a { color: rgba(244, 248, 247, 0.85); }

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 22px 24px;
  font-size: 13px;
  color: rgba(244, 248, 247, 0.55);
}

/* ---------------------------------- Responsive ------------------------------ */
@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .footer-col--brand { grid-column: 1 / -1; }
}

@media (max-width: 780px) {
  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    inset: 76px 0 0 0;
    background-color: var(--white);
    opacity: 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 20px 24px 32px;
    transform: translateY(-8px);
    visibility: hidden;
    transition: transform 0.2s ease, visibility 0.2s;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 32px rgba(10, 63, 66, 0.12);
    z-index: 99;
  }
  .nav.is-open { transform: translateY(0); visibility: visible; }
  .nav a { width: 100%; padding: 12px 0; font-size: 16px; border-bottom: 1px solid var(--mist-200); }

  body.nav-open { overflow: hidden; }

  .slide { aspect-ratio: 4 / 5; min-height: 420px; }
  .slide__overlay { background: linear-gradient(180deg, rgba(10,63,66,0.15) 0%, rgba(10,63,66,0.75) 100%); align-items: flex-end; padding-bottom: 36px; }
  .slide__actions { flex-direction: column; align-items: stretch; }
  .slide__actions .btn { width: 100%; }
  .slider__arrow { width: 36px; height: 36px; }
  .hero__stats { gap: 28px; justify-content: flex-start; }

  .catalog, .about { padding: 56px 0; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 32px; }

  /* Two products per row on mobile instead of stacking to one column */
  .product-grid,
  .product-grid--fixed {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px;
  }
  .category-blurb--span-1,
  .category-blurb--span-2,
  .category-blurb--span-3 { grid-column: span 2; }

  .product-card__body { padding: 12px 14px 12px; }
  .product-card__name { font-size: 14.5px; }
  .product-card__size { font-size: 11.5px; margin-bottom: 8px; }
  .product-card__ingredient { font-size: 10.5px; padding: 8px 10px; }
  .btn--card { font-size: 12.5px; padding: 11px 14px; }

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

@media (max-width: 460px) {
  .site-header__inner { height: 68px; }
  .logo__word { font-size: 17px; }

  .product-grid,
  .product-grid--fixed { gap: 10px; }
  .product-card__body { padding: 10px 11px 11px; }
  .product-card__name { font-size: 13.5px; }
  .product-card__ingredient { font-size: 10px; padding: 7px 8px; gap: 5px; }
  .product-card__tag { margin: 8px; font-size: 9.5px; padding: 3px 7px; }
  .btn--card { font-size: 12px; padding: 10px 8px; gap: 4px; }
  .btn--card svg { width: 11px; height: 11px; }
}

@media (max-width: 360px) {
  .product-grid,
  .product-grid--fixed { grid-template-columns: repeat(2, 1fr) !important; gap: 8px; }
}
