/* =========================================================================
   Kamla Agro Industries — Design System
   Display: Fraunces · Body: Inter Tight · Mono: JetBrains Mono
   Brand: harvest orange + field green on cream, plum-ink dark accents
   ========================================================================= */

:root {
  /* brand */
  --orange-700: #b0481a;
  --orange-600: #c4541a;
  --orange-500: #e2671c;
  --orange-400: #ef8338;
  --green-700: #1f6b33;
  --green-600: #2e7d32;
  --green-500: #3c9d4e;
  --green-400: #5bae5e;
  --harvest-300: #f2b544;
  --harvest-200: #f7cd72;
  --plum-900: #221e26;
  --plum-800: #2a2430;
  --plum-700: #3a3343;
  --plum-600: #534862;

  /* surfaces (light theme) */
  --paper: #fdfaf3;
  --paper-2: #f6f1e6;
  --card: #ffffff;
  --line: #e7ded0;
  --ink: #2b2630;
  --muted: #6b6470;
  --muted-2: #938b98;
  --on-dark: #fdfaf3;

  /* roles */
  --bg: var(--paper);
  --surface: var(--card);
  --text: var(--ink);
  --accent: var(--orange-500);
  --accent-2: var(--green-600);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter Tight', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, Menlo, Consolas, monospace;

  --maxw: 1200px;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(42, 36, 48, .06);
  --shadow: 0 18px 50px -22px rgba(42, 36, 48, .30);
  --shadow-lg: 0 40px 90px -34px rgba(42, 36, 48, .45);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --nav-h: 84px;
}

[data-theme="dark"] {
  --bg: #1b1820;
  --surface: #262030;
  --card: #262030;
  --paper-2: #221d2b;
  --line: #3a3343;
  --ink: #efe9f1;
  --text: #efe9f1;
  --muted: #b3aabd;
  --muted-2: #8d8499;
  --shadow: 0 18px 50px -22px rgba(0, 0, 0, .6);
  --shadow-lg: 0 40px 90px -30px rgba(0, 0, 0, .7);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .4s var(--ease), color .4s var(--ease);
}

img {
  max-width: 100%;
  display: block
}

a {
  color: inherit;
  text-decoration: none
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.015em;
  margin: 0
}

em {
  font-style: italic;
  color: var(--accent)
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px
}

/* ---------- shared section helpers ---------- */
.section-pad {
  padding: 26px 0
}

.section-pad-lg {
  padding: 34px 0
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 0;
  position: relative;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  display: inline-block
}

.on-dark .eyebrow,
.eyebrow.on-dark {
  color: var(--harvest-300)
}

.section-title {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  margin: 14px 0 0
}

.section-title.on-dark,
.on-dark .section-title {
  color: var(--on-dark)
}

.section-sub {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 60ch;
  margin-top: 18px
}

.on-dark .section-sub {
  color: rgba(253, 250, 243, .72)
}

.section-header {
  max-width: 760px
}

.section-header.centered {
  margin-inline: auto;
  text-align: center
}

.section-header.centered .section-sub {
  margin-inline: auto
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .98rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
}

.btn:hover {
  transform: translateY(-2px)
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(226, 103, 28, .7)
}

.btn-primary:hover {
  background: var(--orange-600)
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
  backdrop-filter: blur(6px)
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent)
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--line)
}

.btn-outline:hover {
  border-color: var(--accent-2);
  color: var(--accent-2);
  background: color-mix(in srgb, var(--accent-2) 8%, transparent)
}

/* ---------- progress + loader + back to top ---------- */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 1000;
  background: linear-gradient(90deg, var(--orange-500), var(--green-500));
  transition: width .1s linear
}

#loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: opacity .5s var(--ease), visibility .5s
}

#loader.done {
  opacity: 0;
  visibility: hidden
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px
}

.loader-logo {
  height: 74px;
  width: auto;
  animation: floaty 2.4s ease-in-out infinite
}

.loader-bar {
  width: 180px;
  height: 4px;
  border-radius: 4px;
  background: var(--line);
  overflow: hidden
}

.loader-fill {
  height: 100%;
  width: 40%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--orange-500), var(--green-500));
  animation: load 1.1s var(--ease) infinite
}

@keyframes load {
  0% {
    transform: translateX(-120%)
  }

  100% {
    transform: translateX(360%)
  }
}

@keyframes floaty {
  50% {
    transform: translateY(-8px)
  }
}

#back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--plum-800);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(16px) scale(.9);
  pointer-events: none;
  box-shadow: var(--shadow);
  transition: .3s var(--ease)
}

#back-to-top.show {
  opacity: 1;
  transform: none;
  pointer-events: auto
}

#back-to-top:hover {
  background: var(--accent)
}

/* ---------- navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 800;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: .3s var(--ease)
}

.navbar.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm)
}

.nav-container {
  max-width: var(--maxw);
  margin-inline: auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 20px;
  padding-inline: 24px
}

.nav-logo img {
  height: 62px;
  width: auto
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 3px;
  margin: 0;
  padding: 0;
  margin-left: 8px
}

.nav-links>li>a {
  display: inline-block;
  padding: 10px 11px;
  border-radius: 10px;
  font-weight: 500;
  font-size: .85rem;
  letter-spacing: .005em;
  color: var(--text);
  transition: .2s
}

.nav-links>li>a:hover {
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 9%, transparent)
}

.nav-links>li>a.active {
  color: var(--accent)
}

.nav-dropdown {
  position: relative
}

.nav-dropdown>a::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: .6rem;
  margin-left: 7px;
  opacity: .6
}

.dropdown-menu {
  list-style: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 290px;
  margin: 0;
  padding: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .22s var(--ease)
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: none
}

.dropdown-menu li a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: .92rem;
  color: var(--text)
}

.dropdown-menu li a:hover {
  background: var(--paper-2);
  color: var(--accent)
}

.nav-contact-lang {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto
}

.nav-translate {
  position: relative
}

.nav-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: .78rem;
  background: var(--paper-2);
  color: var(--text);
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: .2s
}

.nav-lang-btn:hover {
  border-color: var(--accent)
}

.nav-lang-btn .chevron {
  font-size: .6rem;
  transition: .2s
}

.nav-translate.open .chevron {
  transform: rotate(180deg)
}

.lang-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 210px;
  max-height: 320px;
  overflow: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s var(--ease);
  z-index: 30
}

.nav-translate.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: none
}

.lang-dropdown button {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 9px 12px;
  border-radius: 9px;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text)
}

.lang-dropdown button:hover {
  background: var(--paper-2)
}

.lang-dropdown button.active {
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent);
  font-weight: 600
}

.nav-socials {
  display: flex;
  gap: 7px
}

.nav-social {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .85rem;
  background: var(--paper-2);
  color: var(--muted);
  border: 1px solid var(--line);
  transition: .2s
}

.nav-social:hover {
  transform: translateY(-2px);
  color: #fff
}

.nav-social.wa:hover {
  background: #25d366;
  border-color: #25d366
}

.nav-social.yt:hover {
  background: #ff0000;
  border-color: #ff0000
}

.nav-social.fb:hover {
  background: #1877f2;
  border-color: #1877f2
}

.nav-social.ig:hover {
  background: #e1306c;
  border-color: #e1306c
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .92rem;
  color: var(--text);
  padding: 9px 16px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--green-600) 12%, transparent);
  color: var(--green-700);
  transition: .2s;
  white-space: nowrap;
}

[data-theme="dark"] .nav-phone {
  color: var(--green-400)
}

.nav-phone:hover {
  background: var(--green-600);
  color: #fff
}

.theme-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper-2);
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: .95rem;
  transition: .2s
}

.theme-btn:hover {
  border-color: var(--accent);
  color: var(--accent)
}

#theme-toggle {
  margin-left: 4px
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--paper-2);
  cursor: pointer;
  align-items: center;
  justify-content: center
}

.hamburger span {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: .25s
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.nav-mobile-extras {
  display: none
}

/* ---------- hero ---------- */
#hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 90% at 85% -10%, color-mix(in srgb, var(--green-600) 16%, transparent), transparent 60%),
    radial-gradient(80% 80% at 0% 110%, color-mix(in srgb, var(--orange-500) 14%, transparent), transparent 55%),
    var(--bg)
}

.hero-inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 32px 24px 36px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items: center
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--green-700);
  box-shadow: var(--shadow-sm)
}

[data-theme="dark"] .hero-badge {
  color: var(--green-400)
}

.hero-badge i {
  color: var(--green-500)
}

.hero-title {
  font-size: clamp(1.45rem, 3.1vw, 2.4rem);
  margin: 12px 0 0;
  font-weight: 600
}

.hero-subtitle {
  color: var(--muted);
  font-size: 1.14rem;
  max-width: 46ch;
  margin: 22px 0 0
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 30px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line)
}

.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text)
}

.hero-stat-label {
  font-size: .78rem;
  color: var(--muted);
  font-family: var(--font-mono);
  letter-spacing: .04em
}

.hero-media {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.hero-logo-above {
  width: auto;
  max-width: 280px;
  height: auto;
  margin: 0 auto
}

.hero-visual {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  transform: rotate(.5deg)
}

.hero-video-label {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4;
  padding: 14px 16px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(.95rem, 2vw, 1.2rem);
  letter-spacing: -.01em;
  color: #fff;
  text-align: center;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .6), transparent);
  pointer-events: none
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .15)
}

/* ---------- marquee ---------- */
.marquee-strip {
  background: var(--plum-800);
  color: var(--on-dark);
  overflow: hidden;
  padding: 15px 0;
  border-block: 1px solid rgba(255, 255, 255, .06)
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: marq 38s linear infinite
}

.marquee-item {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .14em;
  white-space: nowrap;
  color: rgba(253, 250, 243, .82)
}

.marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--harvest-300);
  flex: none
}

@keyframes marq {
  to {
    transform: translateX(-50%)
  }
}

/* ---------- about ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: center
}

.about-visual {
  position: relative
}

.about-leaf {
  position: absolute;
  top: -22px;
  left: -18px;
  font-size: 2.2rem;
  z-index: 3;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, .15));
  animation: floaty 3.6s ease-in-out infinite
}

.about-img-main {
  position: relative;
  aspect-ratio: 4/3.6;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line)
}

.about-img-badge-tl {
  position: absolute;
  left: 16px;
  top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27, 24, 32, .6);
  color: #fff;
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600
}

.about-img-badge-tl i {
  color: var(--harvest-300)
}

.about-badge {
  position: absolute;
  right: -14px;
  bottom: -18px;
  background: var(--accent);
  color: #fff;
  border-radius: 18px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 3px solid var(--bg)
}

.about-badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1
}

.about-badge-label {
  font-size: .72rem;
  letter-spacing: .04em;
  opacity: .92
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 30px 0 28px
}

.about-feat {
  display: flex;
  gap: 13px
}

.about-feat-icon {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--green-600) 12%, transparent);
  color: var(--green-600);
  font-size: 1rem
}

.about-feat h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px
}

.about-feat p {
  font-size: .86rem;
  color: var(--muted);
  margin: 0
}

/* ---------- why (dark band) ---------- */
#why {
  background:
    radial-gradient(90% 120% at 100% 0%, color-mix(in srgb, var(--green-700) 40%, transparent), transparent 60%),
    var(--plum-900);
  color: var(--on-dark);
  border-radius: var(--radius-lg);
  margin-inline: auto;
  max-width: calc(var(--maxw) + 48px)
}

#why .container {
  padding-block: 0
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px
}

.why-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: .3s var(--ease)
}

.why-card:hover {
  background: rgba(255, 255, 255, .07);
  transform: translateY(-4px)
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--orange-500), var(--green-500));
  color: #fff;
  margin-bottom: 18px
}

.why-card h3 {
  font-size: 1.22rem;
  color: var(--on-dark);
  margin-bottom: 10px
}

.why-card p {
  color: rgba(253, 250, 243, .66);
  font-size: .94rem;
  margin: 0
}

/* ---------- stats band ---------- */
#stats {
  background: var(--plum-800);
  color: var(--on-dark);
  padding: 48px 0
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.stat-item {
  text-align: center;
  padding: 14px
}

.stat-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  background: rgba(255, 255, 255, .07);
  color: var(--harvest-300)
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  display: inline-flex
}

.stat-unit {
  color: var(--harvest-300)
}

.stat-label {
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .08em;
  color: rgba(253, 250, 243, .6);
  text-transform: uppercase
}

/* ---------- products ---------- */
.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 46px
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: .32s var(--ease);
  display: flex;
  flex-direction: column
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line))
}

.product-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--paper-2)
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease)
}

.product-card:hover .product-card-img img {
  transform: scale(1.06)
}

.product-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--harvest-300);
  color: var(--plum-900)
}

.product-card-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.product-card-cat {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-600)
}

.product-card-name {
  font-size: 1.12rem;
  margin: 8px 0 10px;
  line-height: 1.2
}

.product-card-desc {
  font-size: .9rem;
  color: var(--muted);
  margin: 0 0 18px
}

.product-card-footer {
  margin-top: auto
}

.product-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--accent)
}

.product-card:hover .product-card-btn {
  gap: 12px
}

/* ---------- video ---------- */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 38px;
  align-items: center
}

.video-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px
}

.video-point {
  display: flex;
  gap: 15px
}

.video-point-icon {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  background: color-mix(in srgb, var(--orange-500) 13%, transparent);
  color: var(--orange-500)
}

.video-point h4 {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 3px
}

.video-point p {
  font-size: .9rem;
  color: var(--muted);
  margin: 0
}

.video-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line)
}

.yt-lite {
  position: relative;
  aspect-ratio: 16/9;
  cursor: pointer;
  background: #000;
  overflow: hidden
}

.yt-lite img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s;
  opacity: .92
}

.yt-lite:hover img {
  opacity: 1;
  transform: scale(1.03)
}

.yt-lite iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: none
}

.yt-lite.loaded iframe {
  display: block
}

.yt-lite.loaded img,
.yt-lite.loaded .yt-play-btn {
  display: none
}

.yt-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(226, 103, 28, .92);
  display: grid;
  place-items: center;
  transition: .25s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .4)
}

.yt-lite:hover .yt-play-btn {
  transform: scale(1.08);
  background: var(--orange-500)
}

.yt-play-btn span {
  width: 0;
  height: 0;
  border-left: 20px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 5px
}

/* ---------- certs ---------- */
#certs {
  padding: 48px 0
}

.certs-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap
}

.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center
}

.cert-item img {
  height: 58px;
  width: auto;
  border-radius: 8px;
  filter: saturate(1.05)
}

.cert-item span {
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .06em;
  color: var(--muted)
}

.certs-divider {
  width: 1px;
  height: 54px;
  background: var(--line)
}

/* ---------- testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: .3s var(--ease)
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow)
}

.testimonial-stars {
  color: var(--harvest-300);
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  font-size: .92rem
}

.testimonial-text {
  font-size: .98rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 22px
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 13px
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: .9rem;
  color: #fff;
  background: linear-gradient(135deg, var(--orange-500), var(--green-600));
  font-family: var(--font-display)
}

.testimonial-name {
  font-weight: 700;
  font-size: .96rem
}

.testimonial-loc {
  font-size: .8rem;
  color: var(--muted)
}

/* ---------- CTA banner ---------- */
.cta-banner-wrap {
  padding: 24px 0 56px
}

.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 36px clamp(24px, 5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
  background: linear-gradient(120deg, var(--plum-900), var(--green-700));
  color: #fff;
  box-shadow: var(--shadow-lg)
}

.cta-banner::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--orange-500) 50%, transparent), transparent 70%)
}

.cta-banner>* {
  position: relative;
  z-index: 1
}

.cta-banner h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  color: #fff;
  margin: 10px 0 8px
}

.cta-banner p {
  color: rgba(255, 255, 255, .82);
  max-width: 46ch;
  margin: 0
}

.cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 230px
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  background: var(--harvest-300);
  color: var(--plum-900);
  font-weight: 700;
  transition: .25s var(--ease)
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  background: var(--harvest-200)
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
  font-weight: 600;
  transition: .25s var(--ease)
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, .18)
}

/* ---------- footer ---------- */
footer {
  background: var(--plum-900);
  color: var(--on-dark);
  padding: 48px 0 28px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px
}

.footer-brand p {
  color: rgba(253, 250, 243, .6);
  font-size: .92rem;
  margin: 18px 0 0;
  max-width: 34ch
}

.footer-brand img {
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .4))
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .95rem;
  background: rgba(255, 255, 255, .07);
  color: rgba(253, 250, 243, .8);
  transition: .2s
}

.social-link:hover {
  transform: translateY(-3px);
  background: var(--accent);
  color: #fff
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--harvest-300);
  margin-bottom: 18px;
  font-weight: 700
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px
}

.footer-col ul a {
  color: rgba(253, 250, 243, .62);
  font-size: .92rem;
  transition: .2s
}

.footer-col ul a:hover {
  color: #fff;
  padding-left: 4px
}

.newsletter-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .05);
  color: #fff;
  font-family: var(--font-body);
  font-size: .9rem
}

.newsletter-form input::placeholder {
  color: rgba(253, 250, 243, .4)
}

.newsletter-form button {
  padding: 12px 18px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  transition: .2s
}

.newsletter-form button:hover {
  background: var(--orange-600)
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .09)
}

.footer-bottom p {
  color: rgba(253, 250, 243, .5);
  font-size: .84rem;
  margin: 0
}

.footer-bottom-links {
  display: flex;
  gap: 20px
}

.footer-bottom-links a {
  color: rgba(253, 250, 243, .5);
  font-size: .84rem;
  transition: .2s
}

.footer-bottom-links a:hover {
  color: var(--harvest-300)
}

/* ---------- inner page hero + breadcrumb ---------- */
.page-hero {
  position: relative;
  padding: 44px 0 40px;
  overflow: hidden;
  background: radial-gradient(90% 120% at 90% -20%, color-mix(in srgb, var(--green-600) 14%, transparent), transparent 60%),
    radial-gradient(70% 90% at -10% 120%, color-mix(in srgb, var(--orange-500) 12%, transparent), transparent 55%),
    var(--paper-2)
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: 14px 0 0
}

.page-hero p {
  color: var(--muted);
  max-width: 62ch;
  margin: 18px 0 0;
  font-size: 1.06rem
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .84rem;
  font-family: var(--font-mono);
  color: var(--muted)
}

.breadcrumb a {
  color: var(--accent)
}

.breadcrumb a:hover {
  text-decoration: underline
}

.breadcrumb .sep {
  opacity: .5
}

.breadcrumb [aria-current] {
  color: var(--text)
}

/* ---------- legal prose ---------- */
.legal-prose h2 {
  font-size: 1.4rem;
  margin: 38px 0 12px;
  color: var(--text)
}

.legal-prose h2:first-child {
  margin-top: 0
}

.legal-prose p {
  color: var(--muted);
  margin: 0 0 14px
}

.legal-prose ul {
  color: var(--muted);
  margin: 0 0 16px;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 7px
}

.legal-prose a {
  color: var(--accent);
  text-decoration: underline
}

.legal-prose strong {
  color: var(--text)
}

/* ---------- gallery ---------- */
.gallery-block {
  margin-top: 44px
}

.gallery-head {
  text-align: center;
  margin-bottom: 38px
}

.gallery-head h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem)
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  border: 1px solid var(--line)
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease)
}

.gallery-item:hover img {
  transform: scale(1.07)
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 16px 14px;
  font-size: .86rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(transparent, rgba(20, 17, 24, .82));
  opacity: 0;
  transform: translateY(8px);
  transition: .3s var(--ease)
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: none
}

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: rgba(15, 12, 18, .92);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: .3s var(--ease)
}

.lightbox.open {
  opacity: 1;
  visibility: visible
}

.lightbox-stage {
  position: relative;
  max-width: 90vw;
  max-height: 86vh
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 14px;
  box-shadow: var(--shadow-lg)
}

.lightbox-caption {
  text-align: center;
  color: #fff;
  margin-top: 14px;
  font-size: .92rem
}

.lightbox-counter {
  position: absolute;
  top: -34px;
  left: 0;
  color: rgba(255, 255, 255, .7);
  font-family: var(--font-mono);
  font-size: .8rem
}

.lightbox-btn {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1rem;
  transition: .2s
}

.lightbox-btn:hover {
  background: var(--accent)
}

.lightbox-close {
  top: -34px;
  right: 0
}

.lightbox-prev {
  left: -66px;
  top: calc(50% - 23px)
}

.lightbox-next {
  right: -66px;
  top: calc(50% - 23px)
}

/* ---------- contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: .95fr 1.15fr;
  gap: 48px;
  align-items: start
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 22px
}

.contact-info-item {
  display: flex;
  gap: 15px;
  align-items: flex-start
}

.contact-icon {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  background: color-mix(in srgb, var(--green-600) 12%, transparent);
  color: var(--green-600)
}

.contact-info-label {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px
}

.contact-info-value {
  font-weight: 500;
  line-height: 1.5
}

.contact-info-value a:hover {
  color: var(--accent)
}

.contact-social {
  display: flex;
  gap: 10px;
  margin-top: 6px
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm)
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column
}

.form-group label {
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--text)
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: .95rem;
  transition: .2s
}

.form-group textarea {
  min-height: 120px;
  resize: vertical
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent)
}

.form-submit {
  width: 100%;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: .25s var(--ease)
}

.form-submit:hover {
  background: var(--orange-600);
  transform: translateY(-2px)
}

.form-submit:disabled {
  opacity: .6;
  cursor: wait;
  transform: none
}

/* ---------- product detail page ---------- */
.product-detail {
  padding: 44px 0 30px
}

.pd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start
}

.pd-media {
  position: sticky;
  top: calc(var(--nav-h) + 24px)
}

.pd-figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  background: var(--paper-2)
}

.pd-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.pd-cat {
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-600)
}

.pd-title {
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin: 10px 0 0
}

.pd-lead {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 18px 0 0
}

.pd-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0
}

.pd-tag {
  font-size: .78rem;
  padding: 6px 13px;
  border-radius: 999px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  color: var(--muted)
}

.pd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0
}

.pd-section {
  margin-top: 36px
}

.pd-section h3 {
  font-size: 1.3rem;
  margin-bottom: 14px
}

.pd-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px
}

.pd-features li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
  font-size: .96rem
}

.pd-features i {
  color: var(--green-600);
  margin-top: 4px
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 13px 16px;
  font-size: .92rem;
  border-bottom: 1px solid var(--line)
}

.spec-table th {
  width: 42%;
  background: var(--paper-2);
  color: var(--text);
  font-weight: 600;
  font-family: var(--font-body)
}

.spec-table td {
  color: var(--muted)
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: none
}

.pd-note {
  font-size: .82rem;
  color: var(--muted-2);
  margin-top: 10px
}

/* products index intro */
.prod-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 10px
}

/* ---------- reveal animations ---------- */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity .7s var(--ease), transform .7s var(--ease)
}

.reveal {
  transform: translateY(28px)
}

.reveal-left {
  transform: translateX(-36px)
}

.reveal-right {
  transform: translateX(36px)
}

.reveal.in,
.reveal-left.in,
.reveal-right.in {
  opacity: 1;
  transform: none
}

/* ---------- google translate cleanup ---------- */
.goog-te-banner-frame {
  display: none !important
}

.goog-te-banner-frame.skiptranslate {
  display: none !important
}

iframe.skiptranslate {
  display: none !important;
  visibility: hidden !important
}

.skiptranslate>iframe {
  display: none !important
}

body {
  top: 0 !important;
  position: static !important
}

#google_translate_element {
  display: none !important
}

.goog-tooltip,
.goog-text-highlight {
  background: none !important;
  box-shadow: none !important
}

/* =========================================================================
   VIVID LAYER — richer colour, depth and light
   Purely additive: overrides the base system above. No HTML changes needed.
   Every rule is theme-aware (light + dark). Motion is covered by the
   prefers-reduced-motion block at the end of this file.

   TUNING KNOBS — the two tokens below control the whole page rhythm:
     --sec-pad / --sec-pad-lg   vertical breathing room between sections
   ========================================================================= */

:root {
  /* extra brand steps */
  --harvest-400: #eda62b;

  /* gradient ramps */
  --grad-warm: linear-gradient(115deg, var(--orange-600) 0%, var(--orange-500) 38%, var(--harvest-300) 100%);
  --grad-warm-bright: linear-gradient(115deg, var(--orange-400) 0%, var(--harvest-300) 55%, var(--harvest-200) 100%);
  --grad-fresh: linear-gradient(135deg, var(--green-500), var(--green-700));
  --grad-brand: linear-gradient(110deg, var(--orange-500) 0%, var(--harvest-300) 46%, var(--green-500) 100%);
  --grad-ink: linear-gradient(140deg, var(--plum-900) 0%, var(--plum-700) 48%, var(--green-700) 100%);

  /* coloured glows */
  --glow-orange: 0 20px 44px -16px rgba(226, 103, 28, .58);
  --glow-orange-lg: 0 30px 70px -20px rgba(226, 103, 28, .5);
  --glow-green: 0 20px 44px -16px rgba(46, 125, 50, .45);

  /* section rhythm */
  --sec-pad: 58px;
  --sec-pad-lg: 78px;
}

[data-theme="dark"] {
  --glow-orange: 0 20px 48px -16px rgba(239, 131, 56, .42);
  --glow-orange-lg: 0 30px 76px -22px rgba(239, 131, 56, .38);
  --glow-green: 0 20px 48px -16px rgba(92, 174, 94, .34);
}

/* ---------- page atmosphere ---------- */
body {
  background-color: var(--bg);
  background-image:
    radial-gradient(closest-side at 92% 0%, color-mix(in srgb, var(--harvest-300) 26%, transparent), transparent),
    radial-gradient(closest-side at 2% 22%, color-mix(in srgb, var(--green-500) 15%, transparent), transparent);
  background-size: 1000px 760px, 820px 900px;
  background-repeat: no-repeat;
}

[data-theme="dark"] body {
  background-image:
    radial-gradient(closest-side at 92% 0%, color-mix(in srgb, var(--orange-500) 20%, transparent), transparent),
    radial-gradient(closest-side at 2% 22%, color-mix(in srgb, var(--green-600) 20%, transparent), transparent);
}

/* ---------- rhythm ---------- */
.section-pad {
  padding: var(--sec-pad) 0
}

.section-pad-lg {
  padding: var(--sec-pad-lg) 0
}

/* ---------- gradient display type ----------
   The site sets a key word in <em> inside every headline — this is what
   turns that word into the brand gradient. Guarded so unsupported
   browsers keep solid accent text instead of invisible text. */
@supports ((background-clip: text) or (-webkit-background-clip: text)) {

  h1 em,
  h2 em,
  .hero-title em,
  .section-title em,
  .page-hero h1 em,
  .pd-title em {
    background-image: var(--grad-warm);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    padding-inline: .04em;
    margin-inline: -.04em;
  }

  /* on dark bands the ramp needs to stay bright */
  .on-dark h1 em,
  .on-dark h2 em,
  #why h2 em,
  #stats h2 em,
  .cta-banner h2 em,
  footer h2 em,
  [data-theme="dark"] h1 em,
  [data-theme="dark"] h2 em,
  [data-theme="dark"] .section-title em {
    background-image: var(--grad-warm-bright);
  }
}

.section-title {
  font-weight: 700;
  letter-spacing: -.022em
}

/* ---------- eyebrow becomes a chip ---------- */
.eyebrow {
  padding: 7px 14px 7px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
}

.eyebrow::before {
  width: 18px;
  height: 2px;
  background: var(--grad-warm);
}

.on-dark .eyebrow,
.eyebrow.on-dark,
#why .eyebrow,
.cta-banner .eyebrow {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .16);
}

.on-dark .eyebrow::before,
.eyebrow.on-dark::before {
  background: var(--grad-warm-bright);
}

/* ---------- buttons ---------- */
.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn-primary {
  background-image: var(--grad-warm);
  background-color: var(--accent);
  box-shadow: var(--glow-orange);
  border-color: transparent;
}

.btn-primary:hover {
  background-image: var(--grad-warm);
  background-color: var(--orange-600);
  box-shadow: var(--glow-orange-lg);
  transform: translateY(-3px);
}

/* light sweep across primary buttons on hover */
.btn-primary::after,
.btn-cta-primary::after,
.form-submit::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, .38) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease);
}

.btn-primary:hover::after,
.btn-cta-primary:hover::after,
.form-submit:hover::after {
  transform: translateX(120%);
}

.btn-outline:hover,
.btn-secondary:hover {
  border-color: transparent;
  color: #fff;
  background-image: var(--grad-fresh);
  box-shadow: var(--glow-green);
}

.btn-cta-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-image: var(--grad-warm);
  box-shadow: var(--glow-orange);
}

/* ---------- navbar ---------- */
.navbar.scrolled {
  box-shadow: 0 10px 34px -18px rgba(42, 36, 48, .35);
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 14%, var(--line));
}

.nav-links>li>a {
  position: relative
}

.nav-links>li>a:hover {
  background-image: linear-gradient(135deg, color-mix(in srgb, var(--accent) 14%, transparent), color-mix(in srgb, var(--accent-2) 12%, transparent));
}

/* gradient underline marks the current page */
.nav-links>li>a.active {
  color: var(--accent)
}

.nav-links>li>a.active::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 4px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--grad-warm);
}

.nav-social:hover {
  box-shadow: 0 8px 20px -8px currentColor
}

.nav-phone {
  background-image: linear-gradient(135deg, color-mix(in srgb, var(--accent) 12%, transparent), color-mix(in srgb, var(--accent-2) 12%, transparent));
  border-color: color-mix(in srgb, var(--accent) 28%, transparent);
}

.nav-phone:hover {
  background-image: var(--grad-warm);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--glow-orange);
}

/* ---------- hero ---------- */
#hero {
  position: relative;
  isolation: isolate;
}

/* two slow ambient light orbs behind the hero */
#hero::before,
#hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

#hero::before {
  width: 460px;
  height: 460px;
  top: -140px;
  right: -100px;
  background: radial-gradient(circle, color-mix(in srgb, var(--harvest-300) 62%, transparent), transparent 70%);
  animation: orbFloat 17s var(--ease) infinite alternate;
}

#hero::after {
  width: 380px;
  height: 380px;
  bottom: -120px;
  left: -120px;
  background: radial-gradient(circle, color-mix(in srgb, var(--green-500) 48%, transparent), transparent 70%);
  animation: orbFloat 21s var(--ease) infinite alternate-reverse;
}

@keyframes orbFloat {
  from {
    transform: translate3d(0, 0, 0) scale(1)
  }

  to {
    transform: translate3d(-38px, 34px, 0) scale(1.14)
  }
}

.hero-badge {
  background-image: linear-gradient(135deg, color-mix(in srgb, var(--green-500) 14%, transparent), color-mix(in srgb, var(--harvest-300) 16%, transparent));
  border-color: color-mix(in srgb, var(--green-500) 30%, transparent);
  box-shadow: 0 8px 22px -12px rgba(46, 125, 50, .5);
}

.hero-title {
  letter-spacing: -.02em
}

.hero-stat-num {
  background-image: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

@supports not ((background-clip: text) or (-webkit-background-clip: text)) {
  .hero-stat-num {
    color: var(--accent);
    -webkit-text-fill-color: currentColor
  }
}

.hero-stats-row {
  border-top-color: color-mix(in srgb, var(--accent) 22%, var(--line))
}

/* gradient frame around the hero image */
.hero-visual {
  border: none;
  box-shadow: var(--shadow-lg), 0 0 0 1px color-mix(in srgb, var(--accent) 18%, transparent);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border-radius: inherit;
  padding: 2px;
  background: var(--grad-brand);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: .85;
}

.hero-logo-above {
  filter: drop-shadow(0 12px 26px rgba(226, 103, 28, .28))
}

/* ---------- marquee ---------- */
.marquee-strip {
  background-image: var(--grad-ink);
  border-block-color: rgba(255, 255, 255, .1);
}

.marquee-dot {
  background: var(--grad-warm-bright);
  box-shadow: 0 0 10px 1px color-mix(in srgb, var(--harvest-300) 70%, transparent);
}

/* ---------- product cards ---------- */
.product-card {
  position: relative;
  background-image: linear-gradient(180deg, color-mix(in srgb, var(--accent) 3%, transparent), transparent 34%);
}

/* gradient rule that wipes across the card top on hover */
.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 3;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}

.product-card:hover::before {
  transform: scaleX(1)
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--glow-orange);
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
}

.product-card-img {
  background-image: linear-gradient(150deg, color-mix(in srgb, var(--harvest-300) 22%, var(--paper-2)), var(--paper-2) 62%);
}

.product-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, color-mix(in srgb, var(--plum-900) 34%, transparent));
  opacity: 0;
  transition: opacity .4s var(--ease);
}

.product-card:hover .product-card-img::after {
  opacity: 1
}

.product-card:hover .product-card-img img {
  transform: scale(1.09)
}

.product-badge {
  background-image: var(--grad-warm);
  color: #fff;
  box-shadow: 0 6px 16px -6px rgba(226, 103, 28, .8);
  backdrop-filter: blur(4px);
}

.product-card-cat {
  color: var(--green-600);
  font-weight: 600
}

[data-theme="dark"] .product-card-cat {
  color: var(--green-400)
}

.product-card-btn {
  transition: gap .3s var(--ease), color .3s var(--ease)
}

/* ---------- why cards (dark band) ---------- */
#why {
  background-image:
    radial-gradient(85% 120% at 100% 0%, color-mix(in srgb, var(--green-600) 46%, transparent), transparent 62%),
    radial-gradient(60% 90% at 0% 100%, color-mix(in srgb, var(--orange-600) 34%, transparent), transparent 60%),
    var(--grad-ink);
  box-shadow: var(--shadow-lg);
}

.why-card {
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--grad-brand);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s var(--ease);
}

.why-card:hover::before {
  opacity: .9
}

.why-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .09);
  box-shadow: 0 26px 60px -28px rgba(0, 0, 0, .8);
}

.why-icon {
  background-image: var(--grad-brand);
  box-shadow: 0 12px 26px -12px rgba(226, 103, 28, .75);
}

/* ---------- stats band ---------- */
#stats {
  background-image:
    radial-gradient(70% 140% at 15% 0%, color-mix(in srgb, var(--green-700) 55%, transparent), transparent 60%),
    radial-gradient(60% 130% at 88% 100%, color-mix(in srgb, var(--orange-700) 48%, transparent), transparent 58%),
    linear-gradient(120deg, var(--plum-900), var(--plum-700));
}

.stat-icon {
  background-image: linear-gradient(140deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .04));
  border: 1px solid rgba(255, 255, 255, .12);
  color: var(--harvest-300);
  box-shadow: 0 10px 26px -14px rgba(242, 181, 68, .9);
  transition: transform .35s var(--ease);
}

.stat-item:hover .stat-icon {
  transform: translateY(-4px) scale(1.06)
}

/* gradient goes on the text node, not the inline-flex wrapper —
   background-clip:text is unreliable on flex containers */
.stat-num .counter {
  background-image: linear-gradient(120deg, #fff 10%, var(--harvest-200) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

@supports not ((background-clip: text) or (-webkit-background-clip: text)) {
  .stat-num .counter {
    color: #fff;
    -webkit-text-fill-color: currentColor
  }
}

.stat-unit {
  color: var(--harvest-300)
}

/* ---------- testimonials ---------- */
.testimonial-card {
  position: relative;
  overflow: hidden;
}

.testimonial-card::after {
  content: "\201C";
  position: absolute;
  right: 14px;
  top: -18px;
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 1;
  color: color-mix(in srgb, var(--accent) 14%, transparent);
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
  box-shadow: var(--shadow), var(--glow-orange);
}

.testimonial-stars {
  color: var(--harvest-400);
  filter: drop-shadow(0 2px 6px rgba(242, 181, 68, .45));
}

.testimonial-avatar {
  background-image: var(--grad-brand);
  color: #fff;
  box-shadow: 0 10px 22px -10px rgba(226, 103, 28, .7);
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background-image:
    radial-gradient(70% 160% at 0% 100%, color-mix(in srgb, var(--green-600) 60%, transparent), transparent 60%),
    linear-gradient(115deg, var(--plum-900) 0%, var(--plum-700) 45%, var(--green-700) 100%);
}

.cta-banner::before {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, color-mix(in srgb, var(--orange-500) 70%, transparent), transparent 70%);
  filter: blur(10px);
  animation: orbFloat 19s var(--ease) infinite alternate;
}

/* ---------- certs ---------- */
.cert-item {
  transition: transform .3s var(--ease), filter .3s var(--ease)
}

.cert-item:hover {
  transform: translateY(-4px);
  filter: drop-shadow(0 12px 24px rgba(226, 103, 28, .3));
}

.certs-divider {
  background: var(--grad-brand);
  opacity: .5
}

/* ---------- gallery ---------- */
.gallery-item {
  border-color: color-mix(in srgb, var(--accent) 16%, var(--line));
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}

.gallery-item:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
  box-shadow: var(--shadow-lg), var(--glow-orange);
}

/* captions stay legible instead of only appearing on hover */
.gallery-caption {
  background: linear-gradient(transparent, rgba(20, 17, 24, .92));
  opacity: .92;
  transform: none;
}

.gallery-item:hover .gallery-caption {
  opacity: 1
}

/* ---------- inner page hero ---------- */
.page-hero {
  background-image:
    radial-gradient(80% 130% at 92% -20%, color-mix(in srgb, var(--harvest-300) 34%, transparent), transparent 62%),
    radial-gradient(70% 100% at -10% 120%, color-mix(in srgb, var(--green-500) 24%, transparent), transparent 58%),
    linear-gradient(180deg, var(--paper-2), var(--bg));
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 14%, var(--line));
}

.page-hero h1 {
  letter-spacing: -.025em
}

.breadcrumb a:hover {
  color: var(--accent)
}

/* ---------- product detail ---------- */
.pd-figure {
  border: none;
  box-shadow: var(--shadow-lg), 0 0 0 1px color-mix(in srgb, var(--accent) 20%, transparent);
  background-image: linear-gradient(150deg, color-mix(in srgb, var(--harvest-300) 18%, var(--paper-2)), var(--paper-2) 60%);
}

.pd-tag {
  background-image: linear-gradient(135deg, color-mix(in srgb, var(--accent) 12%, transparent), color-mix(in srgb, var(--accent-2) 12%, transparent));
  border-color: color-mix(in srgb, var(--accent) 26%, transparent);
  font-weight: 600;
}

.pd-features i {
  color: var(--green-500);
  filter: drop-shadow(0 2px 5px rgba(60, 157, 78, .4));
}

.spec-table tr:nth-child(odd) th,
.spec-table tr:nth-child(odd) td {
  background: color-mix(in srgb, var(--accent) 4%, transparent)
}

/* ---------- contact form ---------- */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 15%, transparent);
}

.form-submit {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-image: var(--grad-warm);
  box-shadow: var(--glow-orange);
}

.contact-icon {
  background-image: var(--grad-brand);
  color: #fff;
  box-shadow: 0 10px 24px -12px rgba(226, 103, 28, .7);
}

/* ---------- footer ---------- */
footer {
  position: relative;
  background-image:
    radial-gradient(60% 140% at 88% 0%, color-mix(in srgb, var(--green-700) 32%, transparent), transparent 62%),
    linear-gradient(180deg, var(--plum-900), var(--plum-800));
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-brand);
}

.footer-col h4 {
  position: relative;
  padding-bottom: 10px
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-warm-bright);
}

.footer-col ul a:hover {
  color: var(--harvest-300)
}

.social-link:hover {
  background-image: var(--grad-warm);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--glow-orange);
}

.newsletter-form button {
  background-image: var(--grad-warm);
  box-shadow: 0 10px 24px -12px rgba(226, 103, 28, .8);
}

/* ---------- video gallery (gallery.html #videos) ---------- */
#videos {
  background:
    radial-gradient(70% 100% at 100% 0%, color-mix(in srgb, var(--green-500) 12%, transparent), transparent 60%),
    radial-gradient(60% 90% at 0% 100%, color-mix(in srgb, var(--orange-500) 10%, transparent), transparent 58%),
    var(--paper-2);
  border-block: 1px solid color-mix(in srgb, var(--accent) 12%, var(--line));
}

/* videos use the same tile geometry as the image gallery */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.video-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #000;
  border: 1px solid color-mix(in srgb, var(--accent) 16%, var(--line));
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}

.video-item:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
  box-shadow: var(--shadow-lg), var(--glow-orange);
}

.video-item .yt-lite {
  position: absolute;
  inset: 0;
  border-radius: 0;
  aspect-ratio: auto;
}

.video-item .yt-lite img {
  opacity: 1;
  transition: transform .5s var(--ease)
}

.video-item:hover .yt-lite img {
  transform: scale(1.07)
}

/* caption sits over the thumbnail, like .gallery-caption */
.video-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
  padding: 26px 16px 14px;
  font-size: .86rem;
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
  background: linear-gradient(transparent, rgba(20, 17, 24, .92));
  opacity: .92;
  transition: opacity .3s var(--ease);
}

.video-item:hover .video-caption {
  opacity: 1
}

/* once playing, get out of the player's way */
.video-item:has(.yt-lite.loaded) .video-caption {
  opacity: 0
}

.videos-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

/* ---------- faq ---------- */
.faq-list {
  max-width: 820px;
  margin: 38px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid color-mix(in srgb, var(--accent) 16%, var(--line));
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}

.faq-item[open],
.faq-item:hover {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
}

.faq-item[open] {
  box-shadow: var(--shadow-lg);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  padding: 20px 22px;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker {
  display: none
}

/* chevron drawn in CSS so no icon font is needed */
.faq-item summary::after {
  content: "";
  flex: none;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .3s var(--ease);
}

.faq-item[open] summary::after {
  transform: rotate(-135deg) translate(-2px, -2px);
}

.faq-item summary:hover {
  color: var(--accent)
}

.faq-answer {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: .97rem;
  line-height: 1.75;
}

.faq-answer a {
  color: var(--accent);
  font-weight: 600;
}

.faq-answer a:hover {
  text-decoration: underline
}

/* ---------- scrollbar ---------- */
::-webkit-scrollbar {
  width: 11px;
  height: 11px
}

::-webkit-scrollbar-track {
  background: var(--paper-2)
}

::-webkit-scrollbar-thumb {
  background: var(--grad-warm);
  border-radius: 999px;
  border: 3px solid var(--paper-2);
}

/* ---------- responsive tuning for the vivid layer ---------- */
@media (max-width:860px) {
  :root {
    --sec-pad: 44px;
    --sec-pad-lg: 56px;
  }

  #hero::before,
  #hero::after {
    width: 260px;
    height: 260px;
    filter: blur(56px);
  }
}

@media (max-width:480px) {
  :root {
    --sec-pad: 36px;
    --sec-pad-lg: 46px;
  }

  .testimonial-card::after {
    font-size: 5rem
  }
}


/* ---------- responsive ---------- */
@media (max-width:1024px) {

  .about-grid,
  .video-grid,
  .contact-grid,
  .pd-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-inner {
    display: flex;
    flex-direction: column-reverse;
    gap: 28px;
    margin-top: -50px;

  }

  .pd-media {
    position: static
  }

  .why-grid,
  .testimonials-grid,
  .gallery-grid,
  .videos-grid,
  .prod-index-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .about-features {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:860px) {

  :root {
    --nav-h: 60px;
  }

  .nav-container {
    padding-inline: 12px;
    gap: 8px;
    height: var(--nav-h);
  }

  .nav-contact-lang {
    flex-direction: row-reverse;
    gap: 6px;
  }

  .nav-lang-btn {
    padding: 6px 10px;
    font-size: .75rem;
    gap: 4px;
  }

  .nav-contact-lang .nav-socials {
    display: none
  }

  /* keep the phone number in the header on small screens, compact */
  .nav-contact-lang .nav-phone {
    display: inline-flex;
    padding: 6px 10px;
    font-size: .75rem;
    gap: 4px
  }

  #theme-toggle {
    display: none
  }

  .hamburger {
    display: flex;
    margin-left: 2px;
    width: 36px;
    height: 36px;
  }

  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 14px;
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    transition: transform .35s var(--ease);
    max-height: calc(100vh - var(--nav-h));
    overflow: auto
  }

  .nav-logo img {
    height: 42px
  }

  .nav-links.open {
    transform: none
  }

  .nav-links>li>a {
    padding: 13px 14px;
    border-radius: 12px;
    font-size: 1rem
  }

  .nav-dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--paper-2);
    margin: 4px 0 6px;
    padding: 4px
  }

  .nav-mobile-extras {
    display: flex;
    justify-content: center;
    padding: 10px 0 4px
  }

  .nav-contact-lang {
    margin-left: auto;
    gap: 8px
  }
}

@media (max-width:680px) {
  .section-pad {
    padding: var(--sec-pad) 0
  }

  .section-pad-lg {
    padding: var(--sec-pad-lg) 0
  }

  .hero-stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 20px
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px
  }

  .why-grid,
  .products-grid,
  .testimonials-grid,
  .gallery-grid,
  .videos-grid,
  .prod-index-grid,
  .about-features,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start
  }

  .cta-banner-actions {
    width: 100%
  }

  .lightbox-prev {
    left: 6px
  }

  .lightbox-next {
    right: 6px
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start
  }
}

@media (max-width:480px) {

  /* make room for the phone number: collapse lang button to its globe icon */
  .nav-contact-lang {
    gap: 6px
  }

  .nav-lang-btn #lang-label,
  .nav-lang-btn .chevron {
    display: none
  }

  .nav-contact-lang .nav-phone {
    padding: 7px 10px;
    font-size: .78rem
  }

  .nav-logo img {
    height: 44px
  }
}

@media (prefers-reduced-motion:reduce) {
  * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important
  }

  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none
  }
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px
}