:root {
  --green-900: #203a2b;
  --green-800: #2f533e;
  --green-700: #3f7256;
  --green-100: #edf5ed;
  --green-50: #f8fbf7;
  --sage: #7c8c72;
  --cream: #fffdf7;
  --surface: #ffffff;
  --surface-soft: #f8fbf7;
  --blush: #e7cfc1;
  --mint: #dbeee2;
  --sky: #dceff0;
  --sun: #f4c960;
  --ink: #1d2a24;
  --muted: #667169;
  --line: rgba(32, 58, 43, .14);
  --shadow: 0 18px 50px rgba(18, 39, 27, .14);
  --header-bg: rgba(255, 253, 247, .92);
  --hero-scrim: linear-gradient(90deg, rgba(20, 44, 29, .88), rgba(28, 67, 43, .62), rgba(255, 253, 247, .16));
}

:root[data-theme="dark"] {
  --green-900: #edf6ee;
  --green-800: #9fc5a7;
  --green-700: #b8d7bd;
  --green-100: rgba(166, 206, 174, .16);
  --green-50: #101a14;
  --sage: #c4d2ab;
  --cream: #0c130f;
  --surface: #142119;
  --surface-soft: #101a14;
  --blush: #b78f7f;
  --mint: #233c2d;
  --sky: #19343a;
  --sun: #f0c45b;
  --ink: #f4f8f1;
  --muted: #b9c6ba;
  --line: rgba(238, 248, 236, .14);
  --shadow: 0 22px 60px rgba(0, 0, 0, .36);
  --header-bg: rgba(12, 19, 15, .88);
  --hero-scrim: linear-gradient(90deg, rgba(6, 14, 9, .92), rgba(19, 45, 29, .74), rgba(12, 19, 15, .36));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 18%, color-mix(in srgb, var(--mint) 42%, transparent), transparent 28%),
    radial-gradient(circle at 88% 36%, color-mix(in srgb, var(--sun) 16%, transparent), transparent 26%),
    linear-gradient(180deg, var(--cream), var(--green-50));
  color: var(--ink);
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  line-height: 1.5;
  transition: background .35s ease, color .35s ease;
}

body[dir="rtl"] {
  font-family: Tahoma, "Segoe UI", Arial, sans-serif;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 86px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(20, 44, 29, .08);
}

.site-header::after {
  content: "";
  position: absolute;
  inset-inline: clamp(18px, 4vw, 56px);
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-700), var(--sun), transparent);
  transform-origin: left;
  animation: headerLine 4.2s ease-in-out infinite;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand {
  padding: 7px 12px 7px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  box-shadow: 0 14px 30px rgba(34, 58, 42, .07);
  transition: transform .25s ease, box-shadow .25s ease;
}

.brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(34, 58, 42, .13);
}

.brand-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--green-50);
  border: 1px solid rgba(47, 83, 62, .12);
}

:root[data-theme="dark"] .brand-icon {
  background: rgba(244, 248, 241, .96);
}

.brand-icon img {
  width: 46px;
  max-width: none;
  height: 46px;
  object-fit: contain;
  transform: translateY(0);
  animation: logoFloat 4.8s ease-in-out infinite;
}

.brand-text {
  display: grid;
  gap: 0;
  color: var(--green-900);
}

.brand-text strong {
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0;
}

.brand-text small {
  color: var(--sage);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
}

.main-nav {
  justify-self: center;
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25);
  color: var(--green-900);
  font-size: 15px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 10px 18px;
  border-radius: 999px;
  overflow: hidden;
  transition: background .2s ease, transform .2s ease, color .2s ease;
}

.main-nav a:hover {
  background: var(--green-100);
  transform: translateY(-1px);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: var(--sun);
  transform: scaleX(0);
  transition: transform .25s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switch {
  display: inline-grid;
  place-items: center;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.lang-button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
  font-size: 21px;
}

.lang-button.is-active {
  background: var(--green-800);
  color: var(--cream);
}

.theme-toggle {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(34, 58, 42, .08);
  transition: transform .2s ease, background .2s ease;
}

.theme-toggle:hover {
  transform: translateY(-1px) rotate(-8deg);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
  overflow: hidden;
}

.button:hover {
  transform: translateY(-2px);
}

.button::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -70%;
  width: 48%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .32), transparent);
  transform: skewX(-18deg);
  transition: left .55s ease;
}

.button:hover::after {
  left: 122%;
}

.button-primary {
  background: var(--green-800);
  color: var(--cream);
  box-shadow: 0 12px 28px rgba(47, 83, 62, .22);
}

.button-primary:hover {
  background: var(--green-900);
}

.button-secondary {
  background: rgba(255, 255, 255, .88);
  color: var(--green-900);
  border-color: rgba(255, 255, 255, .9);
}

:root[data-theme="dark"] .button-secondary {
  background: rgba(244, 248, 241, .92);
  color: #142119;
}

.button-light {
  background: white;
  color: var(--green-900);
}

:root[data-theme="dark"] .button-light {
  color: #142119;
}

.button-small {
  min-height: 38px;
  padding-inline: 14px;
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 80px));
  display: flex;
  align-items: center;
  padding: clamp(52px, 8vw, 100px) clamp(18px, 7vw, 96px);
  color: white;
  background:
    var(--hero-scrim),
    url("assets/hero-mindus.jpg") center / cover no-repeat;
  background-position: center, center calc(50% + var(--scroll-y, 0px));
  background-size: cover, cover;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: min(52vw, 620px);
  aspect-ratio: 1;
  right: -12vw;
  top: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 201, 96, .28), rgba(219, 238, 226, .12) 42%, transparent 68%);
  animation: heroGlow 7s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 110px;
  background: linear-gradient(0deg, var(--cream), rgba(255, 253, 247, 0));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  animation: heroLift .9s cubic-bezier(.2, .8, .2, 1) both;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: white;
  text-shadow: 0 2px 14px rgba(20, 44, 29, .45);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 7vw, 84px);
  line-height: .98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.quick-info {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1180px, calc(100% - 36px));
  margin: -38px auto 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quick-info a {
  min-height: 92px;
  padding: 22px;
  border-inline-end: 1px solid var(--line);
}

.quick-info a:last-child {
  border-inline-end: 0;
}

.quick-info span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.quick-info strong {
  display: block;
  margin-top: 6px;
  color: var(--green-900);
  font-size: clamp(16px, 2vw, 20px);
}

.quick-info small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 900;
}

.map-portal {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--mint) 42%, transparent), transparent 58%),
    var(--surface);
}

.map-portal::before {
  content: "";
  position: absolute;
  width: 96px;
  height: 96px;
  inset-inline-end: -28px;
  top: 50%;
  border: 1px solid color-mix(in srgb, var(--green-700) 28%, transparent);
  border-radius: 50%;
  transform: translateY(-50%);
  animation: portalPulse 3.8s ease-in-out infinite;
  z-index: -1;
}

.map-portal::after,
.map-link::after {
  content: "\2197";
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green-800);
  color: var(--cream);
  font-size: 14px;
  font-weight: 900;
}

.map-portal::after {
  position: absolute;
  inset-inline-end: 20px;
  top: 18px;
}

.section {
  padding: clamp(72px, 9vw, 120px) clamp(18px, 6vw, 80px);
  scroll-margin-top: 104px;
}

.section-intro {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--cream) 0 48%, rgba(255, 253, 247, .68)),
    url("assets/products/baby-care.png") right center / min(52vw, 720px) no-repeat;
}

.section-intro::before {
  content: "";
  position: absolute;
  right: clamp(18px, 7vw, 98px);
  top: clamp(50px, 9vw, 130px);
  width: min(36vw, 520px);
  height: min(36vw, 520px);
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--mint) 42%, transparent), transparent 68%);
  animation: softPulse 7s ease-in-out infinite alternate;
  pointer-events: none;
}

.section-intro > * {
  position: relative;
  z-index: 1;
}

.section-heading {
  width: min(780px, 100%);
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  max-width: 690px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
}

.section-heading h2,
.request-band h2 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(31px, 4.6vw, 56px);
  line-height: 1.06;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 13px;
  font-weight: 900;
}

.feature h3,
.contact-block h3 {
  margin: 0 0 10px;
  color: var(--green-900);
  font-size: 20px;
}

.feature p,
.contact-block p {
  margin: 0;
  color: var(--muted);
}

.products-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, color-mix(in srgb, var(--sun) 12%, transparent), transparent 22%),
    linear-gradient(135deg, transparent 0 47%, color-mix(in srgb, var(--mint) 32%, transparent) 47% 47.5%, transparent 47.5%),
    linear-gradient(180deg, var(--surface-soft), var(--cream)),
    var(--green-50);
}

.products-section::before {
  content: "";
  position: absolute;
  width: min(52vw, 680px);
  aspect-ratio: 1;
  right: -16vw;
  top: 70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 201, 96, .18), rgba(219, 238, 226, .28) 42%, transparent 70%);
  animation: productGlow 8s ease-in-out infinite alternate;
  pointer-events: none;
}

.products-section > * {
  position: relative;
  z-index: 1;
}

.catalogue-spotlight {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: clamp(18px, 4vw, 48px);
  align-items: center;
  margin: 0 0 32px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(132deg, color-mix(in srgb, var(--sun) 20%, transparent), transparent 36%),
    linear-gradient(90deg, color-mix(in srgb, var(--surface) 92%, transparent), color-mix(in srgb, var(--mint) 24%, transparent));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.catalogue-spotlight::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid color-mix(in srgb, var(--green-700) 18%, transparent);
  border-radius: 8px;
  pointer-events: none;
}

.catalogue-spotlight::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -70px;
  bottom: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--sun) 22%, transparent), transparent 68%);
  animation: softPulse 6s ease-in-out infinite alternate;
  pointer-events: none;
}

.spotlight-copy {
  display: grid;
  justify-items: start;
}

.spotlight-copy h3 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(27px, 4vw, 48px);
  line-height: 1.04;
}

.spotlight-copy p:not(.eyebrow) {
  margin: 16px 0 26px;
  color: var(--muted);
  font-size: 17px;
}

.spotlight-stage {
  position: relative;
  min-height: 360px;
}

.spotlight-stage img {
  position: absolute;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(34, 58, 42, .18);
}

.spotlight-main {
  inset: 0 auto auto 10%;
  width: min(78%, 560px);
  height: 330px;
  animation: floatMain 5.8s ease-in-out infinite;
}

.spotlight-card {
  width: 220px;
  height: 160px;
  border: 6px solid color-mix(in srgb, var(--surface) 88%, transparent);
}

.spotlight-card-one {
  right: 2%;
  top: 18px;
  animation: floatCard 4.8s ease-in-out infinite .2s;
}

.spotlight-card-two {
  right: 9%;
  bottom: 2px;
  animation: floatCard 5.4s ease-in-out infinite .7s;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.tab {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--green-900);
  cursor: pointer;
  font-weight: 800;
}

.tab.is-active {
  background: var(--green-800);
  color: white;
  border-color: var(--green-800);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: 250px 1fr;
  min-height: 472px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(34, 58, 42, .08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .28), transparent 34%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.product-card.is-visible {
  animation: cardPop .62s cubic-bezier(.2, .9, .2, 1) both;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(63, 114, 86, .28);
  box-shadow: 0 20px 44px rgba(34, 58, 42, .14);
}

.product-card:hover::after {
  opacity: 1;
}

.product-card img {
  width: 100%;
  height: 250px;
  background: #f2f7f1;
  object-fit: cover;
  transition: transform .7s ease, filter .35s ease;
}

.product-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.02);
}

.product-card-content {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
}

.product-category {
  color: var(--sage);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card h3 {
  min-height: 58px;
  margin: 0;
  color: var(--green-900);
  font-size: 18px;
  line-height: 1.18;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.product-card .button {
  width: 100%;
  margin-top: 4px;
}

.request-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: clamp(46px, 7vw, 72px) clamp(18px, 6vw, 80px);
  background:
    linear-gradient(135deg, rgba(244, 201, 96, .18), transparent 42%),
    linear-gradient(90deg, var(--green-800), var(--green-900));
}

.request-band .eyebrow,
.request-band h2 {
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-block {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.contact-block a {
  color: var(--green-800);
  font-weight: 900;
}

.contact-block a[href^="tel"] {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
}

.address-link {
  display: grid;
  gap: 10px;
  line-height: 1.6;
}

.address-link small {
  color: var(--sage);
  font-size: 12px;
  font-weight: 900;
}

.map-link {
  position: relative;
  padding-inline-end: 40px;
}

.map-link::after {
  position: absolute;
  inset-inline-end: 0;
  top: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 32px clamp(18px, 6vw, 80px);
  background: var(--green-900);
  color: rgba(255, 255, 255, .78);
}

.site-footer .brand-icon {
  background: rgba(255, 255, 255, .95);
}

.site-footer .brand-text {
  color: white;
}

.site-footer .brand-text small {
  color: rgba(255, 255, 255, .7);
}

.site-footer p {
  margin: 0;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  padding: 18px;
}

.modal.is-open {
  display: grid;
  place-items: center;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 31, 23, .62);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  width: min(860px, 100%);
  max-height: min(92vh, 860px);
  overflow: auto;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.modal-panel h2 {
  margin: 0 0 22px;
  color: var(--green-900);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--green-900);
  cursor: pointer;
  font-size: 26px;
}

.modal-close {
  position: absolute;
  top: 18px;
  inset-inline-end: 18px;
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--green-900);
  font-size: 14px;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--ink);
  outline: 0;
}

input {
  height: 48px;
  padding: 0 13px;
}

textarea {
  resize: vertical;
  min-height: 118px;
  padding: 13px;
}

input:focus,
textarea:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(63, 114, 86, .13);
}

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

.form-message {
  min-height: 22px;
  margin: 0;
  color: var(--green-800);
  font-weight: 800;
}

.form-message.is-error {
  color: #a33a2f;
}

.request-success {
  display: grid;
  justify-items: start;
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid color-mix(in srgb, var(--green-700) 24%, transparent);
  border-radius: 8px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--mint) 48%, transparent), transparent 58%),
    var(--surface-soft);
}

.request-success[hidden] {
  display: none;
}

.success-mark {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--green-800);
  color: var(--cream);
  font-size: 28px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(47, 83, 62, .22);
}

.request-success h3 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.08;
}

.request-success p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

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

.reveal {
  opacity: 0;
  clip-path: inset(0 0 14% 0);
  transform: translateY(34px) scale(.985);
  transition: opacity .75s cubic-bezier(.2, .8, .2, 1), transform .75s cubic-bezier(.2, .8, .2, 1), clip-path .75s cubic-bezier(.2, .8, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
}

@keyframes heroLift {
  from {
    opacity: 0;
    transform: translateY(32px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes headerLine {
  0%, 100% {
    transform: scaleX(.18);
    opacity: .35;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(2px) rotate(0deg);
  }
  50% {
    transform: translateY(-3px) rotate(2deg);
  }
}

@keyframes heroGlow {
  from {
    transform: translate3d(0, 0, 0) scale(.92);
    opacity: .6;
  }
  to {
    transform: translate3d(-7vw, 5vh, 0) scale(1.08);
    opacity: 1;
  }
}

@keyframes cardPop {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(.96);
  }
  70% {
    transform: translateY(-3px) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes productGlow {
  from {
    transform: translate3d(0, 0, 0) scale(.94);
    opacity: .58;
  }
  to {
    transform: translate3d(-6vw, 7vh, 0) scale(1.08);
    opacity: 1;
  }
}

@keyframes floatMain {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-14px) rotate(1deg);
  }
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0) rotate(3deg);
  }
  50% {
    transform: translateY(16px) rotate(-2deg);
  }
}

@keyframes softPulse {
  from {
    transform: scale(.88);
    opacity: .35;
  }
  to {
    transform: scale(1.12);
    opacity: .8;
  }
}

@keyframes portalPulse {
  0%, 100% {
    transform: translateY(-50%) scale(.78);
    opacity: .3;
  }
  50% {
    transform: translateY(-50%) scale(1.12);
    opacity: .9;
  }
}

body[dir="rtl"] .main-nav,
body[dir="rtl"] .hero-actions,
body[dir="rtl"] .category-tabs,
body[dir="rtl"] .site-footer,
body[dir="rtl"] .header-actions {
  flex-direction: row-reverse;
}

body[dir="rtl"] .eyebrow {
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .catalogue-spotlight {
    grid-template-columns: 1fr;
  }

  .spotlight-stage {
    min-height: 390px;
  }
}

@media (max-width: 820px) {
  .section {
    padding-inline: 20px;
    scroll-margin-top: 210px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .quick-info,
  .intro-grid,
  .contact-grid,
  .request-band {
    grid-template-columns: 1fr;
  }

  .quick-info a {
    min-height: 78px;
    padding: 18px 20px;
    border-inline-end: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-info a:last-child {
    border-bottom: 0;
  }

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

  .request-form {
    grid-template-columns: 1fr;
  }

  .spotlight-stage {
    min-height: 340px;
  }
}

@media (max-width: 560px) {
  .site-header {
    grid-template-columns: 1fr;
    padding: 12px 14px 14px;
    gap: 10px;
  }

  .brand {
    justify-self: center;
    padding: 6px 12px 6px 7px;
  }

  .brand-icon {
    width: 52px;
    height: 52px;
  }

  .brand-icon img {
    width: 42px;
    height: 42px;
  }

  .brand-text strong {
    font-size: 20px;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
    gap: 16px;
  }

  .header-actions .button-small {
    min-width: 120px;
  }

  .main-nav {
    gap: 4px;
    padding: 5px;
  }

  .main-nav a {
    flex: 1;
    padding: 10px 8px;
    text-align: center;
  }

  .section-intro {
    background:
      linear-gradient(180deg, var(--cream) 0 58%, rgba(255, 253, 247, .78)),
      url("assets/products/baby-care.png") center bottom / 92vw no-repeat;
    padding-bottom: 260px;
  }

  .section-intro::before {
    right: -80px;
    top: auto;
    bottom: 80px;
    width: 260px;
    height: 260px;
  }

  .hero {
    min-height: 590px;
    align-items: flex-end;
    padding: 46px 20px 88px;
    background-position: center, 56% center;
  }

  h1 {
    font-size: clamp(38px, 13vw, 54px);
    line-height: 1;
  }

  .hero-copy {
    font-size: 17px;
  }

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

  .hero-actions .button {
    min-width: 0;
    padding-inline: 12px;
  }

  .quick-info {
    width: calc(100% - 28px);
    margin-top: -48px;
  }

  .quick-info a {
    min-height: 76px;
    padding: 16px 18px;
  }

  .quick-info strong {
    font-size: 19px;
  }

  .map-portal::after {
    top: 14px;
    inset-inline-end: 16px;
  }

  .section-heading h2,
  .request-band h2 {
    font-size: clamp(31px, 11vw, 44px);
  }

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

  .product-card {
    grid-template-rows: 230px 1fr;
    min-height: 430px;
  }

  .product-card img {
    height: 230px;
  }

  .catalogue-spotlight {
    padding: 20px;
  }

  .spotlight-stage {
    min-height: 320px;
  }

  .spotlight-main {
    left: 0;
    width: 84%;
    height: 258px;
  }

  .spotlight-card {
    width: 150px;
    height: 112px;
    border-width: 4px;
  }

  .spotlight-card-one {
    right: 0;
    top: 12px;
  }

  .spotlight-card-two {
    right: 5%;
    bottom: 10px;
  }

  .site-footer {
    display: grid;
  }

  .contact-block {
    padding: 22px;
  }

  .contact-block a[href^="tel"] {
    width: 100%;
    min-height: 46px;
    padding: 0 12px;
    border-radius: 8px;
    background: var(--green-100);
  }

  .success-actions {
    width: 100%;
    display: grid;
  }

  .success-actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
