﻿:root {
  --white: #ffffff;
  --paper: #f6f5f2;
  --ink: #1c2422;
  --muted: #5c6562;
  --line: rgba(28, 36, 34, 0.12);
  --accent: #2f5d50;
  --nav-h: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "IBM Plex Sans Arabic", Tahoma, sans-serif;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --glass: rgba(255, 255, 255, 0.32);
  --radius: 0.9rem;
  --radius-sm: 0.55rem;
}

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

html { scroll-behavior: auto; }

html, body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.7;
}

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

button, input, textarea {
  font: inherit;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3 {
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0;
}

p { margin: 0; }

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

.skip-link {
  position: absolute;
  inset-inline-end: 1rem;
  top: -4rem;
  z-index: 80;
  background: var(--ink);
  color: var(--white);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
}

.skip-link:focus { top: 1rem; }

.wrap {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.glass {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.lede {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 36rem;
}

.latin {
  font-family: var(--serif);
  font-style: italic;
  letter-spacing: 0.04em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  padding: 0.95rem 1.55rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}

.btn:hover,
.btn:focus-visible {
  background: transparent;
  color: var(--ink);
}

.btn--full { width: 100%; margin-top: 0.4rem; }

/* ——— Fixed video background ——— */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: var(--white);
}

.page-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-bg__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.1) 45%, rgba(255, 255, 255, 0.22));
}

.page-progress {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 45;
  height: 2px;
  background: rgba(28, 36, 34, 0.08);
  pointer-events: none;
}

.page-progress span {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: inline-start center;
}

/* ——— Nav ——— */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--nav-h);
  padding: 0 clamp(1.1rem, 3vw, 2rem);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.55), transparent);
}

.nav.is-solid {
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  font-size: 0.82rem;
}

.nav__menu a {
  position: relative;
  color: var(--muted);
}

.nav__menu a::after {
  content: "";
  position: absolute;
  inset-inline-end: 0;
  bottom: -0.28rem;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width 0.3s var(--ease);
}

.nav__menu a.is-current { color: var(--ink); }
.nav__menu a.is-current::after { width: 100%; }
.nav__menu a:hover { color: var(--ink); }
.nav__menu a:hover::after { width: 100%; }

.nav__end {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-inline-start: auto;
}

.lang {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.18rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-sm);
}

.lang button {
  border: 0;
  background: transparent;
  min-width: 1.85rem;
  padding: 0.32rem 0.36rem;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
  cursor: pointer;
  border-radius: 0.35rem;
}

.lang button {
  border: 0;
  background: transparent;
  min-width: 1.85rem;
  padding: 0.32rem 0.36rem;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
  cursor: pointer;
}

.lang button.is-on {
  background: var(--ink);
  color: var(--white);
}

.nav__toggle {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  background: none;
  cursor: pointer;
}

.nav__toggle i {
  display: block;
  width: 1.15rem;
  height: 1px;
  margin: 6px auto;
  background: var(--ink);
}

main, .footer {
  position: relative;
  z-index: 1;
}

/* ——— Hero overlay ——— */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  justify-items: center;
  text-align: center;
  padding: calc(var(--nav-h) + 0.5rem) 1.25rem 4.8rem;
  margin-bottom: clamp(2.5rem, 12vh, 7rem);
}

.hero__logo {
  display: block;
  width: min(11.22rem, 44.88vw);
  z-index: 2;
}

.hero__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero__logo { grid-row: 1; }

.hero__tagline {
  grid-row: 3;
  margin: 0 0 2.6rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  z-index: 2;
}

.hero__lab {
  position: absolute;
  bottom: 1.35rem;
  inset-inline-start: 1.25rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__hint {
  position: absolute;
  bottom: 3.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  transition: opacity 0.5s ease;
}

.hero__hint.is-away { opacity: 0; }

.hero__hint i {
  width: 1px;
  height: 2.1rem;
  background: linear-gradient(var(--accent), transparent);
  animation: drip 1.8s var(--ease) infinite;
}

@keyframes drip {
  0% { transform: scaleY(0.3); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ——— Content over video ——— */
.intro,
.facts,
.oils,
.science,
.ritual,
.note,
.stories,
.pharmacies,
.footer {
  background: transparent;
  padding: clamp(5rem, 18vh, 10rem) 0;
  scroll-margin-top: var(--nav-h);
}

.intro__grid,
.ritual__grid,
.science__panel,
.pharmacies__copy,
.note__card,
.footer__grid {
  padding: clamp(1.6rem, 4vw, 2.6rem);
}

.intro__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
}

.intro h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  margin-bottom: 1.25rem;
}

.specs {
  display: grid;
  gap: 0.9rem;
  margin: 2.2rem 0 0;
  padding: 0;
  max-width: 28rem;
}

.specs div {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.specs dt {
  margin: 0;
  color: var(--muted);
  font-weight: 400;
}

.specs dd { margin: 0; }

.portrait {
  padding: 1.6rem 1.4rem;
  border-inline-start: 1px solid var(--line);
  color: var(--muted);
  font-weight: 300;
}

.portrait__kicker {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.portrait__title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--ink);
  font-weight: 300;
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
}

.shop-page {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  padding: calc(var(--nav-h) + 2rem) 0 clamp(4rem, 12vh, 7rem);
}

.shop-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.shop-page h1 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  margin-bottom: 1.1rem;
}

.shop {
  padding: 1.5rem 1.4rem 1.7rem;
}

.shop-page .shop {
  border-inline-start: 0;
  padding: 1.2rem 0 0;
}

.shop--product {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.8rem 1rem;
  align-items: end;
}

.shop--product .shop__visual {
  margin: 0;
  align-self: end;
}

.shop--product .shop__visual img {
  width: 22.8rem;
  max-width: min(22.8rem, 46vw);
  height: auto;
}

#shop-product-col.glass {
  overflow: visible;
}

.shop--product .shop__copy .btn {
  margin-top: 0.35rem;
}

.cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
  padding: 0.32rem 0.7rem;
  font-size: 0.78rem;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.cart-btn i {
  display: grid;
  place-items: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.28rem;
  background: var(--ink);
  color: var(--white);
  font-style: normal;
  font-size: 0.68rem;
  border-radius: 999px;
}

.checkout-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin: 0 0 1.4rem;
  padding: 0;
  list-style: none;
}

.checkout-steps li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 0.9rem;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--muted);
  font-size: 0.82rem;
  border-radius: var(--radius-sm);
}

.checkout-steps span {
  font-family: var(--serif);
  color: var(--accent);
}

.checkout-steps .is-on {
  color: var(--ink);
  border-color: var(--ink);
}

.checkout {
  padding: 1.5rem 1.4rem 1.7rem;
}

.checkout h2 {
  font-size: 1.45rem;
  margin-bottom: 1rem;
}

.checkout__panel { display: none; }
.checkout__panel.is-on { display: block; }

.checkout__empty {
  color: var(--muted);
  font-weight: 300;
}

.cart-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 3.2rem 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 3.2rem;
  height: 4.4rem;
  object-fit: contain;
}

.cart-item h3 {
  font-size: 0.95rem;
  margin: 0 0 0.2rem;
}

.cart-item p {
  font-size: 0.78rem;
  color: var(--muted);
}

.cart-item__line {
  font-family: var(--serif);
  font-size: 1.15rem;
}

.cart-item__remove {
  margin-top: 0.35rem;
  border: 0;
  background: none;
  padding: 0;
  color: var(--muted);
  font-size: 0.75rem;
  cursor: pointer;
  text-decoration: underline;
}

.shop__ship {
  margin: -0.4rem 0 1rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.checkout__recap {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.shop__pay {
  border: 0;
  padding: 0;
  margin: 0.2rem 0 0.6rem;
}

.shop__pay legend {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.shop__pay label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.85rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
}

.shop__pay input { accent-color: var(--white); }

.btn--ghost {
  margin-top: 0.55rem;
  background: transparent;
  color: var(--ink);
}

.shop-page.is-step-3 #shop-product-col { display: none; }
.shop-page.is-step-3 .shop-page__grid { grid-template-columns: 1fr; }

.shop__visual {
  display: grid;
  place-items: center;
  margin-bottom: 0.35rem;
}

.shop__visual img {
  width: 7.2rem;
  height: auto;
}

.shop__kicker {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.shop__name {
  font-size: 1.55rem;
  margin: 0.25rem 0 0.35rem;
}

.shop__note {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 300;
}

.shop__price {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  margin: 0.85rem 0 1.15rem;
}

.shop__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 0.95rem;
}

.shop__label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.shop__options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.shop__options label {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.85rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
  font-size: 0.88rem;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.shop__options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.shop__options label.is-on {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.shop__qty {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.shop__qty button {
  width: 2.1rem;
  height: 2.1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.shop__qty input {
  width: 3.2rem;
  text-align: center;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 0.4rem 0;
}

.shop__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 0.4rem 0 1rem;
  font-size: 0.92rem;
}

.shop__total strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.shop__checkout {
  display: none;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.shop__checkout.is-open { display: grid; }

.shop__checkout label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.shop__checkout input {
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 0.5rem 0;
  outline: none;
}

.shop__checkout input:focus { border-bottom-color: var(--ink); }

.facts__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.facts article { padding: 2rem 1.5rem 2.2rem; }

.facts span {
  display: block;
  margin-bottom: 1.1rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--accent);
}

.facts h2 {
  font-size: 1.28rem;
  line-height: 1.35;
  margin-bottom: 0.7rem;
}

.facts p {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
}

.facts p strong {
  color: var(--ink);
  font-weight: 600;
}

.oils__head {
  padding: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 1.25rem;
  max-width: none;
}

.oils__panel {
  position: relative;
  overflow: hidden;
  counter-reset: oil;
}

.oil-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 7.2rem 1fr;
  column-gap: 1.35rem;
  align-items: center;
  padding: 1.35rem 1.5rem;
  border-bottom: 1px solid var(--line);
  direction: ltr;
}

.oil-row:last-child { border-bottom: 0; }

.oil-row img {
  width: 7.2rem;
  height: 7.2rem;
  object-fit: contain;
  background: transparent;
  border-radius: var(--radius-sm);
}

.oil-row__body {
  position: relative;
  min-height: 5.5rem;
}

html[dir="rtl"] .oil-row__body { direction: rtl; text-align: right; }
html[dir="ltr"] .oil-row__body { direction: ltr; text-align: left; }

.oil-row__num {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  font-family: var(--serif);
  font-size: 0.95rem;
  color: rgba(28, 36, 34, 0.28);
}

.oil-row__num::before {
  counter-increment: oil;
  content: counter(oil, decimal-leading-zero);
}

.oil-row h3 {
  margin: 0 0 0.4rem;
  padding-inline-end: 2.2rem;
  font-size: 1.28rem;
  font-weight: 500;
}

.oil-row__about {
  margin: 0 0 0.55rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 42rem;
}

.oil-row__role {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.65;
}

.oil-row__role strong { font-weight: 600; }

.section-head {
  max-width: 36rem;
  margin-bottom: 2.2rem;
}

.section-head h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 1rem;
}

.section-head p:last-child {
  color: var(--muted);
  font-weight: 300;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li { padding: 0.2rem 0 0; }

.timeline__index {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.timeline h3 {
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
}

.timeline p:last-child {
  color: var(--muted);
  font-weight: 300;
  font-size: 0.95rem;
}

.ritual__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.ritual h2 {
  font-size: clamp(2rem, 5vw, 3.3rem);
  margin-bottom: 1.1rem;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  column-gap: 1.2rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 300;
}

.steps li:last-child { border-bottom: 1px solid var(--line); }

.steps li::before {
  content: counter(step, decimal-leading-zero);
  counter-increment: step;
  grid-column: 1;
  grid-row: 1 / span 2;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--accent);
}

.steps strong {
  grid-column: 2;
  color: var(--ink);
  font-weight: 500;
}

.steps span { grid-column: 2; }

.note__card { display: block; }

.note blockquote {
  margin: 0;
  max-width: 46rem;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  line-height: 1.7;
  font-weight: 300;
}

.stories__panel {
  padding: clamp(1.6rem, 4vw, 2.6rem);
}

.stories__head {
  margin-bottom: 1.6rem;
}

.stories h2 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  margin: 0;
  line-height: 1.2;
}

.stories__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.stories__list li {
  padding-inline-end: 1.2rem;
  border-inline-end: 1px solid var(--line);
}

.stories__list li:last-child {
  padding-inline-end: 0;
  border-inline-end: 0;
}

.stories blockquote {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 400;
}

.stories cite {
  display: block;
  margin-top: 0.7rem;
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.pharmacies__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.pharmacies__copy h2 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  margin-bottom: 1.1rem;
}

.checks {
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
}

.checks li {
  position: relative;
  padding-block: 0.45rem;
  padding-inline: 1.4rem 0;
  color: var(--muted);
}

.checks li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.95rem;
  width: 0.55rem;
  height: 1px;
  background: var(--accent);
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.6rem;
}

.form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.form__full { grid-column: 1 / -1; }

.form input,
.form textarea {
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 0.55rem 0;
  outline: none;
}

.form input:focus,
.form textarea:focus { border-bottom-color: var(--ink); }

.form textarea { resize: vertical; min-height: 4.5rem; }

.form .btn { grid-column: 1 / -1; }

.form__status {
  grid-column: 1 / -1;
  min-height: 1.2rem;
  font-size: 0.85rem;
  color: var(--accent);
}

.footer {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem 2rem;
}

.footer .latin {
  color: var(--ink);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.footer__label {
  color: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.footer a { display: block; padding: 0.15rem 0; }
.footer a:hover { color: var(--ink); }

.footer__copy {
  grid-column: 1 / -1;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
}

@media (max-width: 1080px) {
  .nav__toggle { display: block; }

  .nav__menu {
    position: absolute;
    top: var(--nav-h);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.2rem 1.2rem;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .nav.is-open .nav__menu { display: flex; }

  .nav__menu a { padding: 0.75rem 0; border-bottom: 1px solid var(--line); }
}

@media (max-width: 860px) {
  .intro__grid,
  .ritual__grid,
  .pharmacies__grid,
  .shop-page__grid,
  .facts__row,
  .stories__list,
  .timeline,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .stories__list li {
    padding: 1.05rem 0 0;
    border-inline-end: 0;
    border-top: 1px solid var(--line);
  }

  .stories__list li:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .portrait,
  .shop { border-inline-start: 0; border-top: 1px solid var(--line); }
  .hero__lab { display: none; }
}

@media (max-width: 560px) {
  .form { grid-template-columns: 1fr; }
  .form__full { grid-column: auto; }
  .wrap { width: min(1120px, calc(100% - 1.5rem)); }
  .oil-row {
    grid-template-columns: 5.2rem 1fr;
    column-gap: 0.9rem;
    padding: 1.1rem 1rem;
  }
  .oil-row img {
    width: 5.2rem;
    height: 5.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__hint i { animation: none; }
}
