:root {
  --green: #0B3D2E;
  --green-deep: #05261D;
  --green-mid: #0a3328;
  --gold: #F5B700;
  --gold-soft: #FFD54F;
  --white: #ffffff;
  --cream: #FFFDF8;
  --text: #1A1A1A;
  --muted: #5A645E;
  --font: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", "Poppins", system-ui, sans-serif;
  --script: "Great Vibes", cursive;
  --display: "Playfair Display", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: #FFFDF8;
  line-height: 1.5;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0 0 0.5rem; }
.wrap { width: min(100% - 2.5rem, 1280px); margin-inline: auto; }

/* ========== HEADER â€” sharp like mockup ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #04160f;
  border-bottom: 1px solid rgba(240, 196, 10, 0.22);
}
.header.is-scrolled {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}
.header__row {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-right: auto;
  flex-shrink: 0;
}
.brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(240, 196, 10, 0.65);
}
.brand__text {
  display: grid;
  line-height: 1.12;
  color: #fff;
}
.brand__text strong {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.brand__text em {
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}
.brand__text small {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: 0.12rem;
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.05rem;
}
.nav a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
.nav a:hover,
.nav a.is-active {
  color: var(--gold);
}
.btn-reg {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  background: var(--gold);
  color: #142018;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.58rem 1.05rem;
  border-radius: 6px;
  white-space: nowrap;
  cursor: pointer;
  pointer-events: auto;
}
.btn-reg:hover {
  filter: brightness(1.06);
}
.nav-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 121;
}
.nav-btn span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--green);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ========== HERO — sharp full background ========== */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background: #04160f;
  min-height: clamp(520px, 72vh, 720px);
  display: flex;
  align-items: center;
}
.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
  margin: 0;
  transform: none;
  filter: none;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    104deg,
    rgba(4, 22, 15, 0.74) 0%,
    rgba(4, 22, 15, 0.58) 20%,
    rgba(4, 22, 15, 0.24) 38%,
    rgba(4, 22, 15, 0.08) 53%,
    transparent 66%
  );
}
.hero__grid {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  line-height: 1.5;
  width: min(100% - 2rem, 1200px);
  max-width: 1200px;
  margin-inline: auto;
  padding: 3.5rem 0;
  min-height: inherit;
}
.hero__copy {
  max-width: 500px;
}
.hero-line {
  opacity: 0;
  transform: translateY(22px);
  animation: heroRise 0.75s var(--ease) both;
  animation-delay: calc(var(--d, 0) * 0.09s + 0.12s);
}
.hero__welcome {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}
.hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5.4vw, 3.7rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
}
.hero h1 span { color: var(--gold); }
.hero__script {
  margin: 0.15rem 0 0.65rem;
  font-family: var(--script);
  font-size: clamp(1.9rem, 3.3vw, 2.55rem);
  line-height: 1.15;
  color: #fff4c8;
  font-weight: 400;
}
.hero__veg {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.75rem;
  padding: 0.32rem 0.75rem;
  border-radius: 6px;
  background: #178a3a;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero__veg i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c8ff7a;
  display: inline-block;
  animation: pulseDot 2s ease-in-out infinite;
}
.hero__line {
  margin: 0 0 0.5rem;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--gold-soft);
}
.hero__desc {
  margin: 0 0 1.25rem;
  max-width: 32rem;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}
.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-block;
  border-radius: 8px;
  font-family: inherit;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 0.72rem 1.15rem;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease), filter 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s var(--ease);
  pointer-events: none;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}
.btn:hover::after { transform: translateX(120%); }
.btn--gold {
  background: var(--gold);
  color: #142018;
  border-color: var(--gold);
}
.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ========== FEATURES — dark about theme + float ========== */
.features {
  position: relative;
  z-index: 5;
  margin: 0;
  padding: 2rem 0 2.25rem;
  background: #0a1a10;
}
.features__row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  gap: 0.65rem 0.85rem;
  background: #0f2418;
  border-radius: 24px;
  padding: 1.75rem 1.35rem 1.55rem;
  border: 1px solid rgba(240, 196, 10, 0.28);
  box-shadow:
    0 0 0 1px rgba(240, 196, 10, 0.08),
    0 16px 40px rgba(0, 0, 0, 0.35);
  box-sizing: border-box;
  overflow: visible;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 0.55rem 0.4rem;
  min-width: 0;
  opacity: 1;
  transform: none;
  border-radius: 16px;
  transition: background 0.3s, transform 0.3s var(--ease);
}
.feature:hover {
  background: rgba(240, 196, 10, 0.06);
}
.feature__icon {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  margin: 0 0 0.85rem;
  border-radius: 50%;
  overflow: hidden;
  background: #08150f;
  border: 3px solid rgba(240, 196, 10, 0.55);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35), 0 0 0 4px rgba(240, 196, 10, 0.1);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.3s;
}
.feature__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s var(--ease);
}
.features__row.is-visible .feature__icon {
  animation: featureFloat 2.8s ease-in-out infinite;
}
.features__row.is-visible .feature[data-stagger="0"] .feature__icon { animation-delay: 0s; }
.features__row.is-visible .feature[data-stagger="1"] .feature__icon { animation-delay: 0.25s; }
.features__row.is-visible .feature[data-stagger="2"] .feature__icon { animation-delay: 0.5s; }
.features__row.is-visible .feature[data-stagger="3"] .feature__icon { animation-delay: 0.75s; }
.features__row.is-visible .feature[data-stagger="4"] .feature__icon { animation-delay: 1s; }
.feature:hover .feature__icon,
.feature.is-pulse .feature__icon {
  animation-play-state: paused;
  transform: translateY(-8px) scale(1.08);
  border-color: #f0c40a;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.4), 0 0 0 5px rgba(240, 196, 10, 0.22);
}
.feature:hover .feature__icon img {
  transform: scale(1.1);
}
.features__row .feature {
  opacity: 0;
}
.features__row:not(.is-visible) .feature {
  opacity: 0;
  transform: translateY(18px);
  animation: none !important;
}
.features__row:not(.is-visible) .feature__icon {
  animation: none !important;
}
.features__row.is-visible .feature {
  animation: featureRise 0.6s var(--ease) both;
  animation-delay: calc(var(--stagger, 0) * 0.08s + 0.1s);
}
.feature[data-stagger="0"] { --stagger: 0; }
.feature[data-stagger="1"] { --stagger: 1; }
.feature[data-stagger="2"] { --stagger: 2; }
.feature[data-stagger="3"] { --stagger: 3; }
.feature[data-stagger="4"] { --stagger: 4; }
.feature h3 {
  color: #fff;
  font-size: 0.88rem;
  line-height: 1.3;
  font-weight: 700;
  margin: 0 0 0.35rem;
  min-height: 2.6em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature p {
  margin: auto 0 0;
  color: var(--gold);
  font-size: 0.78rem;
  line-height: 1.35;
  font-weight: 600;
}
@keyframes featureFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ========== ABOUT ========== */
.eyebrow {
  margin: 0 0 0.45rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.section-head {
  text-align: center;
  margin-bottom: 1.75rem;
}
.section-head h2 {
  margin: 0 0 0.45rem;
  color: var(--green);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 800;
}
.section-head p {
  margin: 0 auto;
  max-width: 36rem;
  color: var(--muted);
}
/* ========== ABOUT — dark split panel ========== */
.about {
  padding: 0;
  background: #0a1a10;
}
.about__split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: 540px;
}
.about__media {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 540px;
}
.about__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: none !important;
  -webkit-filter: none !important;
  transform: none !important;
  image-rendering: auto;
  transition: none !important;
  will-change: auto;
}
.about__media:hover img {
  transform: none !important;
  filter: none !important;
}
.about__badge {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  background: var(--gold);
  color: #0a1a10;
  border-radius: 16px;
  padding: 1rem 1.25rem;
  min-width: 120px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  animation: badgeGlow 3s ease-in-out infinite;
}
.about__badge strong {
  display: block;
  color: #0a1a10;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.about__badge span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0a1a10;
}
.about__copy {
  background: #0a1a10;
  padding: 3rem 2.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 540px;
  height: 100%;
  box-sizing: border-box;
}
.about__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 0.7rem;
}
.about__heading {
  font-family: var(--script);
  font-size: clamp(1.8rem, 2.8vw, 2.45rem);
  color: var(--gold);
  line-height: 1.22;
  margin: 0 0 1rem;
  font-weight: 400;
}
.about__heading em { font-style: italic; }
.about__copy p {
  color: rgba(255,255,255,0.82);
  margin: 0 0 0.8rem;
  line-height: 1.62;
  font-size: 0.94rem;
}
.about__copy strong { color: #fff; }
.about__points {
  list-style: none;
  padding: 0;
  margin: 0.7rem 0 1.35rem;
  display: grid;
  gap: 0.6rem;
}
.about__points li {
  position: relative;
  padding-left: 1.3rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.94rem;
  font-weight: 500;
}
.about__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--gold);
  border-radius: 2px;
}
.about__cta {
  display: inline-block;
  background: var(--gold);
  color: #0a1a10 !important;
  font-weight: 700;
  border-radius: 40px;
  padding: 0.8rem 2rem;
  font-size: 0.97rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  align-self: flex-start;
  box-shadow: 0 4px 18px rgba(240,196,10,0.28);
}
.about__cta:hover {
  background: #ffe033;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(240,196,10,0.42);
}

/* ========== PROCESS — dark about theme ========== */
.process {
  padding: 3.5rem 0 4rem;
  background: #0a1a10;
}
.process .section-head .eyebrow {
  color: var(--gold);
}
.process .section-head h2 {
  color: #fff;
  font-family: var(--script);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
}
.process .section-head p {
  color: rgba(255,255,255,0.72);
}
.process__track {
  position: relative;
  padding: 0.75rem 0 0.25rem;
}
.process__line {
  display: none;
  position: absolute;
  top: 48px;
  left: 11%;
  right: 11%;
  height: 2px;
  background: rgba(240, 196, 10, 0.18);
  z-index: 0;
  overflow: hidden;
}
.process__line i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #f0c40a 0%, #ffe566 100%);
  transition: width 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}
.process__track.is-animated .process__line i {
  width: 100%;
}
.process__list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.process__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #0f2418;
  border: 1.5px solid rgba(240, 196, 10, 0.18);
  border-radius: 22px;
  padding: 1.6rem 1.15rem 1.45rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s,
    box-shadow 0.35s;
}
.process__item.is-on {
  opacity: 1;
  transform: translateY(0);
}
.process__item.is-on.is-focus {
  border-color: rgba(240, 196, 10, 0.95);
  box-shadow:
    0 0 0 4px rgba(240, 196, 10, 0.18),
    0 16px 36px rgba(0, 0, 0, 0.35);
}
.process__item.is-on:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(240, 196, 10, 0.55);
}
.process__icon {
  width: 64px;
  height: 64px;
  margin: 0 0 0.7rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #04160f;
  border: 1px solid rgba(240, 196, 10, 0.35);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
}
.process__item.is-on .process__icon {
  animation: processPop 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.process__item.is-focus .process__icon {
  box-shadow: 0 0 0 6px rgba(240, 196, 10, 0.22), 0 10px 24px rgba(0, 0, 0, 0.4);
}
.process__icon svg {
  width: 26px;
  height: 26px;
  fill: #f0c40a;
}
.process__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  height: 1.55rem;
  margin: 0 0 0.85rem;
  padding: 0 0.65rem;
  border-radius: 999px;
  background: #f0c40a;
  color: #0a1a10;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.process__item h3 {
  margin: 0 0 0.45rem;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.25;
}
.process__item p {
  margin: 0;
  max-width: 16rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  line-height: 1.5;
  font-weight: 500;
}
@keyframes processPop {
  0% { transform: scale(0.72); }
  65% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
@media (min-width: 901px) {
  .process__line { display: block; }
}
/* ========== MODELS — about theme ========== */
.models {
  margin-top: 0;
  padding: 3rem 0 0;
  background: #0a1a10;
  color: #fff;
}
.models__grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
}
.models__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem 0.25rem 0.5rem 0;
}
.models__eyebrow {
  margin: 0 0 0.45rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.models__intro h2 {
  color: #fff;
  font-family: var(--script);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  line-height: 1.2;
  font-weight: 400;
  text-transform: none;
  margin: 0 0 0.85rem;
}
.models__intro p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 0 1rem;
}
.link {
  display: inline-block;
  color: #f0c40a;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.25s var(--ease), color 0.2s;
}
.link:hover { transform: translateX(4px); color: #ffe566; }
.link.dark { color: #0b3d2e; }

.models__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
  align-items: stretch;
  perspective: 1100px;
}
.card {
  position: relative;
  background: #0f2418;
  color: #fff;
  border-radius: 18px;
  padding: 1.15rem 1.05rem 1.2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 460px;
  border: 1px solid rgba(240, 196, 10, 0.18);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  transition: box-shadow 0.35s var(--ease), border-color 0.3s;
  will-change: transform;
  transform-style: preserve-3d;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,0.12) 50%, transparent 65%);
  transform: translateX(-130%);
  pointer-events: none;
  z-index: 2;
}
.card.is-shine::before {
  animation: cardShine 0.85s var(--ease) both;
}
.card.is-visible {
  animation: cardFloat 3.4s ease-in-out infinite;
}
.card.is-visible[data-delay="0"] { animation-delay: 0s; }
.card.is-visible[data-delay="1"] { animation-delay: 0.55s; }
.card.is-visible[data-delay="2"] { animation-delay: 1.1s; }
.card.is-tilting,
.card:hover {
  animation-play-state: paused;
}
.card.is-tilting {
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.42);
  border-color: rgba(240, 196, 10, 0.5);
}
.card:hover {
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4);
  border-color: rgba(240, 196, 10, 0.45);
}
.card--featured {
  border: 2px solid #f0c40a;
  box-shadow: 0 10px 28px rgba(240, 196, 10, 0.18);
}
.card--featured.is-visible {
  animation-name: cardFloatFeatured;
}
@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  }
  50% {
    transform: translateY(-14px);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.38);
  }
}
@keyframes cardFloatFeatured {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 10px 28px rgba(240, 196, 10, 0.18);
  }
  50% {
    transform: translateY(-16px);
    box-shadow: 0 24px 44px rgba(240, 196, 10, 0.28);
  }
}
@keyframes cardShine {
  from { transform: translateX(-130%); }
  to { transform: translateX(130%); }
}
.card > * {
  position: relative;
  z-index: 1;
}
.card__badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 3;
  background: transparent;
  color: #d4af37;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.card--featured .card__badge {
  animation: none;
}
.card h3 {
  color: #fff;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 800;
  text-transform: none;
  letter-spacing: -0.01em;
  margin: 0 0 0.3rem;
  min-height: 1.3em;
  padding-right: 4.5rem;
  line-height: 1.15;
}
.card__tag {
  height: 2.6em;
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  line-height: 1.35;
  color: rgba(255,255,255,0.58);
  font-weight: 400;
  overflow: hidden;
}
.card__media {
  width: 100%;
  height: 140px;
  border-radius: 14px;
  overflow: hidden;
  background: #08150f;
  margin-bottom: 0.9rem;
  flex-shrink: 0;
  border: 1px solid rgba(240, 196, 10, 0.12);
}
.card__media--product {
  background: #fff;
}
.card__media--product img {
  object-fit: contain;
  object-position: center;
  padding: 0.35rem;
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s var(--ease);
}
.card:hover .card__media img {
  transform: scale(1.06);
}
.card__label {
  margin: 0.35rem 0 0.2rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.card__price {
  margin: 0 0 0.85rem;
  align-self: flex-start;
  background: transparent;
  color: var(--gold);
  font-weight: 400;
  padding: 0;
  border-radius: 0;
  font-size: 1rem;
  line-height: 1.15;
  white-space: nowrap;
  box-shadow: none;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}
.card:hover .card__price {
  transform: none;
}
.card__currency {
  font-family: var(--script);
  font-size: clamp(1.85rem, 2.8vw, 2.35rem);
  font-weight: 400;
  color: #f0c40a;
  line-height: 1;
}
.card__amount {
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  color: #f0c40a;
  letter-spacing: 0.01em;
}

.card ul {
  display: grid;
  gap: 0.4rem;
  margin: 0 0 0.85rem;
  min-height: 3.4em;
  flex: 1;
}
.card li {
  position: relative;
  padding-left: 1.05rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.88);
  font-weight: 400;
}
.card li strong {
  color: #fff;
  font-weight: 700;
}
.card li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0.35em;
  color: #f0c40a;
  font-size: 0.45rem;
  font-weight: 700;
}
.card .link {
  margin-top: auto;
  font-size: 0.88rem;
  font-weight: 700;
}
/* Opportunity — about theme strip below models */
.opp-wrap {
  margin-top: 1.5rem;
  margin-bottom: 0.25rem;
}
.opp {
  background: #0f2418;
  border-radius: 28px;
  padding: 1.5rem 1.35rem 1.4rem;
  border: 1px solid rgba(240, 196, 10, 0.18);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  box-sizing: border-box;
}
.opp__head {
  text-align: center;
  margin-bottom: 1.15rem;
}
.opp__head h2 {
  margin: 0 0 0.3rem;
  color: #fff;
  font-family: var(--script);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.25;
}
.opp__head p {
  margin: 0;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  font-weight: 500;
}
.opp__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
}
.opp__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.45rem;
  padding: 0.85rem 0.55rem;
  border-radius: 18px;
  background: #08150f;
  border: 1px solid rgba(240, 196, 10, 0.14);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), background 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.opp:not(.is-visible) .opp__item {
  opacity: 0;
  transform: translateY(16px);
}
.opp.is-visible .opp__item {
  opacity: 1;
  transform: translateY(0);
}
.opp.is-visible .opp__item[data-delay="0"] { transition-delay: 0.08s; }
.opp.is-visible .opp__item[data-delay="1"] { transition-delay: 0.16s; }
.opp.is-visible .opp__item[data-delay="2"] { transition-delay: 0.24s; }
.opp.is-visible .opp__item[data-delay="3"] { transition-delay: 0.32s; }
.opp__item:hover {
  background: #12301f;
  border-color: rgba(240, 196, 10, 0.4);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}
.opp__photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  border: 3px solid rgba(240, 196, 10, 0.45);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  background: #0a1a10;
}
.opp strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin: 0;
}
.opp small {
  display: block;
  color: rgba(255,255,255,0.62);
  font-size: 0.78rem;
  line-height: 1.35;
  margin: 0;
}
.stats {
  margin-top: 1.75rem;
  background: #04160f;
  border-top: 1px solid rgba(240, 196, 10, 0.2);
  padding: 1.45rem 0;
}
.stats__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat strong {
  display: block;
  color: #f0c40a;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.3s var(--ease);
}
.stat strong::after { content: "+"; }
.stat span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ========== GALLERY ========== */
.gallery {
  padding: 3.5rem 0 4rem;
  background: #06281f;
  overflow: hidden;
}
.gallery__head {
  text-align: center;
  margin-bottom: 2.2rem;
}
.gallery__eyebrow {
  margin: 0 0 0.55rem;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.gallery__head h2 {
  margin: 0;
  color: #fff;
  font-family: var(--script);
  font-size: clamp(2.3rem, 5vw, 4.3rem);
  line-height: 1.05;
  font-weight: 400;
}
.gallery__head h2 span {
  color: var(--gold);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1080px;
  margin-inline: auto;
}
.gallery__item {
  position: relative;
  margin: 0;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  background: #0d3a2d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}
.gallery__item--hero {
  aspect-ratio: 1 / 1;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1);
  transition: transform 0.55s var(--ease), filter 0.35s var(--ease);
}
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(3, 20, 14, 0.88) 100%);
  pointer-events: none;
}
.gallery__item figcaption {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 0.95rem;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.gallery__item:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}
.gallery__item:hover img,
.gallery__item:focus-within img {
  transform: scale(1.06);
  filter: saturate(1.05);
}
.gallery__item:not(.is-visible) {
  opacity: 0;
  transform: translateY(28px);
}
.gallery__item.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(4, 22, 15, 0.88);
  animation: lbIn 0.28s var(--ease) both;
}
.lightbox[hidden] { display: none; }
.lightbox__img {
  max-width: min(920px, 100%);
  max-height: min(78vh, 100%);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  animation: lbZoom 0.35s var(--ease) both;
}
.lightbox__cap {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}
.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: #142018;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  font-weight: 700;
}
.lightbox__close:hover { filter: brightness(1.06); }
@keyframes lbIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes lbZoom {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}

/* FAQ + CONTACT — dark about theme */
.faq, .contact { padding: 3.25rem 0 3.5rem; }
.faq { background: #062015; }
.contact { background: #0a1a10; }
.faq__wrap { max-width: 760px; }

.faq .section-head .eyebrow,
.contact .section-head .eyebrow {
  color: var(--gold);
}
.faq .section-head h2,
.contact .section-head h2 {
  color: #fff;
  font-family: var(--script);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
}
.faq .section-head p,
.contact .section-head p {
  color: rgba(255,255,255,0.72);
}
.contact .section-head strong {
  color: var(--gold);
}

.faq details {
  background: #0f2418;
  border: 1px solid rgba(240, 196, 10, 0.18);
  border-radius: 14px;
  padding: 0.95rem 1.15rem;
  margin-bottom: 0.7rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}
.faq details:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  border-color: rgba(240, 196, 10, 0.45);
}
.faq details[open] {
  border-color: rgba(240, 196, 10, 0.55);
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: #fff;
  list-style: none;
  position: relative;
  padding-right: 1.5rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.15rem;
  font-weight: 700;
}
.faq details[open] summary::after { content: "–"; }
.faq p {
  margin: 0.55rem 0 0;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  align-items: start;
}
.contact .section-head { text-align: left; margin-bottom: 1.5rem; }
.contact .section-head p { margin-left: 0; }
.checks { display: grid; gap: 0.55rem; margin: 0 0 1.35rem; }
.checks li {
  position: relative;
  padding-left: 1.35rem;
  font-weight: 600;
  color: var(--text);
}
.checks li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.contact .checks li {
  color: rgba(255,255,255,0.88);
}
.contact .checks li::before {
  color: var(--gold);
}
.page-register .checks li {
  color: var(--text);
}
.page-register .register__side h2 {
  color: var(--green);
}
.page-register .contact__card {
  background: var(--cream);
  border-color: rgba(11, 61, 46, 0.1);
}
.page-register .contact__card strong {
  color: var(--green);
}
.page-register .contact__card span {
  color: var(--text);
}
.page-register .register__form {
  background: #fff;
  border: 1px solid rgba(11, 61, 46, 0.12);
  box-shadow: 0 12px 32px rgba(5, 34, 24, 0.08);
}
.page-register .register__form h2,
.page-register .register__form label {
  color: var(--green);
}
.page-register .register__form input,
.page-register .register__form select,
.page-register .register__form textarea {
  background: #fff;
  color: var(--text);
  border: 1px solid #cfd8d3;
}
.page-register .register__form input::placeholder,
.page-register .register__form textarea::placeholder {
  color: #8a9690;
}
.page-register .register__form input:focus,
.page-register .register__form select:focus,
.page-register .register__form textarea:focus {
  outline: 2px solid var(--green);
  border-color: transparent;
}
.page-register .form-msg {
  color: var(--muted);
}
.page-register .link.dark {
  color: var(--green);
}
.contact__cards {
  display: grid;
  gap: 0.75rem;
}
.contact__card {
  display: grid;
  gap: 0.2rem;
  background: #0f2418;
  border: 1px solid rgba(240, 196, 10, 0.18);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}
a.contact__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
  border-color: rgba(240, 196, 10, 0.45);
}
.contact__card strong {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.contact__card span {
  color: rgba(255,255,255,0.88);
  font-size: 0.92rem;
  line-height: 1.4;
  font-weight: 600;
}
.form {
  display: grid;
  gap: 0.7rem;
  background: #0f2418;
  border: 1px solid rgba(240, 196, 10, 0.22);
  border-radius: 16px;
  padding: 1.35rem 1.25rem;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
}
.form label {
  display: grid;
  gap: 0.28rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
}
.form input,
.form select {
  font: inherit;
  font-weight: 400;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  background: #08150f;
  color: #fff;
}
.form input::placeholder {
  color: rgba(255,255,255,0.4);
}
.form input:focus,
.form select:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: transparent;
}
.form select option {
  background: #0a1a10;
  color: #fff;
}
.form .btn--gold {
  color: #0a1a10;
  margin-top: 0.25rem;
}
.form-msg {
  margin: 0;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
}
.form textarea {
  font: inherit;
  font-weight: 400;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  resize: vertical;
  min-height: 88px;
  background: #08150f;
  color: #fff;
}
.form textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: transparent;
}
.form textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

/* ========== REGISTER PAGE ========== */
.page-register { background: var(--cream); }
.register__hero {
  background: #04160f;
  color: #fff;
  padding: 2.75rem 0 2.5rem;
}
.register__hero-inner { max-width: 40rem; }
.register__hero .eyebrow { color: var(--gold); }
.register__hero h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
}
.register__hero p {
  margin: 0;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
  font-size: 1.02rem;
}
.register__hero strong { color: var(--gold); }
.register__body { padding: 2.5rem 0 3.25rem; }
.register__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.75rem;
  align-items: stretch;
}
.register__side {
  background: #fff;
  border: 1px solid rgba(11, 61, 46, 0.1);
  border-radius: 16px;
  padding: 1.4rem 1.25rem;
  box-shadow: 0 10px 28px rgba(5, 34, 24, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}
.register__side h2 {
  margin: 0 0 0.85rem;
  color: var(--green);
  font-size: 1.25rem;
  font-weight: 800;
}
.register__side .checks {
  margin-bottom: 1.25rem;
}
.register__side .contact__cards {
  flex: 1;
  align-content: start;
}
.register__back {
  display: inline-block;
  margin-top: auto;
  padding-top: 1.25rem;
  font-weight: 700;
}
.register__form {
  height: 100%;
  box-sizing: border-box;
  align-content: start;
}
.register__form h2 {
  margin: 0 0 0.35rem;
  color: var(--green);
  font-size: 1.25rem;
  font-weight: 800;
}
.register__fee {
  margin: 0 0 0.85rem;
  color: var(--muted);
}
.register__fee strong { color: var(--green); }
.page-register .register__form {
  height: 100%;
}
.btn-reg.is-active-page {
  box-shadow: 0 0 0 2px rgba(255,255,255,0.25), 0 0 0 4px rgba(240, 196, 10, 0.45);
}

@media (max-width: 900px) {
  .register__grid { grid-template-columns: 1fr; }
  .register__side,
  .register__form,
  .page-register .register__form {
    height: auto;
  }
}

.footer {
  background: #03140e;
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  padding: 0;
  border-top: 2px solid var(--gold);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.5rem;
  padding: 2.4rem 0 1.75rem;
}
.footer__brand {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.footer__brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
}
.footer__brand strong {
  display: block;
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 800;
}
.footer__brand p {
  margin: 0.25rem 0 0;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}
.footer__col {
  display: grid;
  gap: 0.4rem;
  align-content: start;
}
.footer__col h3 {
  margin: 0 0 0.35rem;
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer__col a,
.footer__col p {
  color: rgba(255,255,255,0.75);
  margin: 0;
  font-weight: 500;
}
.footer__col a:hover { color: var(--gold); }
.footer__bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0.95rem 0;
}
.footer__bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1.25rem;
}
.footer__bar p { margin: 0; color: rgba(255,255,255,0.55); font-size: 0.82rem; }
.footer__credit a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-weight: 600;
}
.footer__credit a:hover { color: var(--gold); }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  background: var(--gold);
  color: #142018;
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  font-weight: 800;
}
.skip-link:focus { top: 1rem; }

.to-top {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 90;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: #142018;
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}
.to-top[hidden] { display: none; }
.to-top:hover { filter: brightness(1.06); }

/* ========== ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal[data-anim="up"] { transform: translateY(32px); }
.reveal[data-anim="left"] { transform: translateX(-36px); }
.reveal[data-anim="right"] { transform: translateX(36px); }
.reveal:not([data-anim]) { transform: translateY(24px); }
.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}
.card.reveal[data-delay="0"],
.faq details.reveal[data-delay="0"] { transition-delay: 0.05s; }
.card.reveal[data-delay="1"],
.faq details.reveal[data-delay="1"] { transition-delay: 0.14s; }
.card.reveal[data-delay="2"],
.faq details.reveal[data-delay="2"],
.gallery__item.reveal[data-delay="2"] { transition-delay: 0.23s; }
.gallery__item.reveal[data-delay="0"] { transition-delay: 0.05s; }
.gallery__item.reveal[data-delay="1"] { transition-delay: 0.14s; }
.stat.reveal:nth-child(2) { transition-delay: 0.08s; }
.stat.reveal:nth-child(3) { transition-delay: 0.16s; }
.stat.reveal:nth-child(4) { transition-delay: 0.24s; }

.faq details:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  border-color: rgba(240, 196, 10, 0.45);
}
.form {
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.form.is-visible:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
  border-color: rgba(240, 196, 10, 0.4);
}
.stat:not(.is-visible) strong {
  animation: none !important;
}
.stat.is-visible strong {
  animation: statPop 0.55s 0.2s var(--ease) both;
}
.card:not(.is-visible) .card__price {
  animation: none !important;
}
.card.is-visible .card__price {
  animation: pricePop 0.55s 0.35s var(--ease) both;
}
.opp__item:hover .opp__photo {
  transform: scale(1.08);
}
.opp__photo {
  transition: transform 0.35s var(--ease);
}

@keyframes heroRise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes featureRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pricePop {
  0% { transform: scale(0.92); }
  60% { transform: scale(1.06); }
  100% { transform: scale(1); }
}
@keyframes statPop {
  0% { transform: scale(0.85); opacity: 0.4; }
  70% { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.75; }
}
.card--featured .card__badge {
  animation: badgeGlow 2.4s ease-in-out infinite;
}
@keyframes badgeGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240, 196, 10, 0.35); }
  50% { box-shadow: 0 0 0 6px rgba(240, 196, 10, 0); }
}
/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .models__grid { grid-template-columns: 1fr; }
  .features__row { grid-template-columns: repeat(3, 1fr); }
  .opp__list { grid-template-columns: repeat(2, 1fr); }
  .about__split {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .about__media {
    min-height: 320px;
    height: 320px;
  }
  .about__copy {
    min-height: 0;
    height: auto;
    padding: 2.5rem 1.5rem;
  }
  .process__list { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .gallery__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
  }
}
@media (max-width: 900px) {
  .nav {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1rem 1rem;
    background: #ffffff;
    border-bottom: 1px solid rgba(11, 61, 46, 0.12);
    z-index: 200;
  }
  .nav.is-open { display: none !important; }
  .nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(11, 61, 46, 0.08);
  }
  .btn-reg {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    font-size: 0.72rem;
  }
  /* Hamburger only on true mobile — see mobile-nav.css (≤768px) */
  .nav-btn { display: none !important; }
  .hero__grid {
    padding: 1.5rem 1rem 2.5rem;
    align-items: flex-start;
  }
  .hero__shade {
    background: linear-gradient(
      180deg,
      rgba(4, 22, 15, 0.88) 0%,
      rgba(4, 22, 15, 0.5) 45%,
      rgba(4, 22, 15, 0.12) 100%
    );
  }
  .hero h1 { font-size: 2.2rem; }
  .models__cards,
  .stats__row,
  .contact__grid,
  .features__row { grid-template-columns: 1fr 1fr; }
  .gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }
}
@media (max-width: 560px) {
  .models__cards,
  .stats__row,
  .contact__grid,
  .features__row,
  .opp__list,
  .process__list,
  .footer__grid { grid-template-columns: 1fr; }
  .gallery__grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .gallery__item,
  .gallery__item--hero {
    aspect-ratio: 1.15 / 1;
  }
  .brand__text em,
  .brand__text small { display: none; }
  .about__media {
    min-height: 260px;
    height: 260px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal,
  .opp__item,
  .hero-line,
  .feature,
  .features__row .feature,
  .gallery__item,
  .process__item {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .card:hover,
  .feature:hover .feature__icon {
    transform: none !important;
  }
  .card.is-visible,
  .card--featured.is-visible {
    animation: none !important;
  }
  .features__row.is-visible .feature__icon {
    animation: none !important;
  }
}

/* ========== LIGHT THEME (white backgrounds) ========== */
body { background: #ffffff; color: var(--text); }

.header {
  background: #ffffff;
  border-bottom: 1px solid rgba(11, 61, 46, 0.12);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.header.is-scrolled { box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.brand__text { color: var(--text); }
.brand__text strong { color: var(--green); }
.brand__text em { color: rgba(23,37,30,0.75); }
.brand__text small { color: #b8860b; }
.nav a { color: var(--green); }
.nav a:hover,
.nav a.is-active { color: #9a7b00; }

.features {
  background: #ffffff;
}
.features__row {
  background: #ffffff;
  border: 1px solid rgba(11, 61, 46, 0.1);
  box-shadow: 0 8px 28px rgba(5, 34, 24, 0.06);
}
.feature:hover { background: rgba(240, 196, 10, 0.08); }
.feature__icon {
  background: #f4f7f5;
  border-color: rgba(240, 196, 10, 0.65);
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
.feature h3 { color: var(--green); }
.feature p { color: #8a6d00; }

.about { background: #ffffff; }
.about__copy { background: #ffffff; }
.about__eyebrow { color: var(--green); }
.about__heading { color: #b8860b; }
.about__copy p { color: var(--muted); }
.about__copy strong { color: var(--green); }
.about__points li { color: var(--text); }
.about__cta { color: #0a1a10 !important; }

.process { background: #f7f8f7; }
.process .section-head .eyebrow { color: var(--green); }
.process .section-head h2 { color: var(--green); font-family: var(--font); font-weight: 800; font-size: clamp(1.45rem, 2.4vw, 1.85rem); }
.process .section-head p { color: var(--muted); }
.process__line { background: rgba(11, 61, 46, 0.15); }
.process__item {
  background: #ffffff;
  border-color: rgba(11, 61, 46, 0.08);
  box-shadow: 0 10px 28px rgba(16, 40, 28, 0.06);
}
.process__item h3 { color: var(--green); }
.process__item p { color: var(--muted); }
.process__icon {
  background: var(--green);
  border-color: transparent;
}

.models { background: #ffffff; color: var(--text); }
.models__eyebrow { color: var(--green); }
.models__intro h2 { color: var(--green); font-family: var(--font); font-weight: 800; text-transform: uppercase; font-size: clamp(1.45rem, 2.6vw, 1.9rem); }
.models__intro p { color: var(--muted); }
.link { color: #9a7b00; }
.link:hover { color: #7a6200; }
.card {
  background: #ffffff;
  color: var(--text);
  border: 1px solid rgba(11, 61, 46, 0.1);
  box-shadow: 0 10px 28px rgba(5, 34, 24, 0.06);
}
.card:hover,
.card.is-tilting {
  border-color: rgba(240, 196, 10, 0.7);
  box-shadow: 0 18px 36px rgba(5, 34, 24, 0.1);
}
.card--featured {
  border: 2px solid var(--gold);
  box-shadow: 0 10px 28px rgba(240, 196, 10, 0.18);
}
.card__badge { color: #9a7b00; }
.card h3 { color: var(--green); }
.card__tag { color: var(--muted); }
.card__media { background: #f4f7f5; border-color: rgba(11, 61, 46, 0.08); }
.card__label {
  color: var(--muted);
  border-top-color: rgba(11, 61, 46, 0.1);
}
.card__currency,
.card__amount { color: #b8860b; }
.card li { color: var(--text); }
.card li strong { color: var(--green); }
.card li::before { color: #b8860b; }
.card .link { color: var(--green); }

.opp {
  background: #ffffff;
  border: 1px solid rgba(11, 61, 46, 0.1);
  box-shadow: 0 12px 32px rgba(5, 34, 24, 0.06);
}
.opp__head h2 { color: var(--green); font-family: var(--font); font-weight: 800; }
.opp__head p { color: var(--muted); }
.opp__item {
  background: #f7f8f7;
  border-color: rgba(11, 61, 46, 0.08);
}
.opp__item:hover {
  background: #eef5f1;
  border-color: rgba(240, 196, 10, 0.45);
}
.opp strong { color: var(--green); }
.opp small { color: var(--muted); }

.stats {
  background: #f7f8f7;
  border-top: 1px solid rgba(11, 61, 46, 0.1);
}
.stat strong { color: #b8860b; }
.stat span { color: var(--muted); }

.gallery { background: #ffffff; }
.gallery__eyebrow { color: #9a7b00; }
.gallery__head h2 { color: var(--green); }
.gallery__head h2 span { color: #b8860b; }
.gallery__item {
  background: #f4f7f5;
  border-color: rgba(11, 61, 46, 0.08);
}

.faq { background: #f7f8f7; }
.contact { background: #ffffff; }
.faq .section-head .eyebrow,
.contact .section-head .eyebrow { color: var(--green); }
.faq .section-head h2,
.contact .section-head h2 {
  color: var(--green);
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
}
.faq .section-head p,
.contact .section-head p { color: var(--muted); }
.contact .section-head strong { color: var(--green); }
.faq details {
  background: #ffffff;
  border-color: rgba(11, 61, 46, 0.12);
}
.faq details:hover,
.faq details[open] { border-color: rgba(240, 196, 10, 0.55); }
.faq summary { color: var(--green); }
.faq summary::after { color: #b8860b; }
.faq p { color: var(--muted); }
.checks li { color: var(--text); }
.contact .checks li { color: var(--text); }
.contact__card {
  background: #f7f8f7;
  border-color: rgba(11, 61, 46, 0.1);
}
.contact__card strong { color: var(--green); }
.contact__card span { color: var(--text); }
.form {
  background: #ffffff;
  border: 1px solid rgba(11, 61, 46, 0.12);
  box-shadow: 0 12px 32px rgba(5, 34, 24, 0.06);
}
.form label { color: var(--green); }
.form input,
.form select,
.form textarea {
  background: #ffffff;
  color: var(--text);
  border: 1px solid #cfd8d3;
}
.form input::placeholder,
.form textarea::placeholder { color: #8a9690; }
.form select option { background: #fff; color: var(--text); }
.form-msg { color: var(--muted); }

.register__hero {
  background: #ffffff;
  color: var(--text);
  border-bottom: 1px solid rgba(11, 61, 46, 0.1);
}
.register__hero .eyebrow { color: var(--green); }
.register__hero h1 { color: var(--green); }
.register__hero p { color: var(--muted); }
.register__hero strong { color: #b8860b; }
.page-register { background: #ffffff; }

.footer {
  background: #ffffff;
  color: var(--text);
  border-top: 2px solid var(--gold);
}
.footer__brand strong { color: var(--green); }
.footer__brand p { color: var(--muted); }
.footer__col h3 { color: var(--green); }
.footer__col a,
.footer__col p { color: var(--muted); }
.footer__col a:hover { color: #9a7b00; }
.footer__bar {
  border-top: 1px solid rgba(11, 61, 46, 0.1);
}
.footer__bar p { color: var(--muted); }
.footer__credit a { color: var(--green); }
.footer__credit a:hover { color: #9a7b00; }

@media (max-width: 900px) {
  .nav {
    background: #ffffff;
    border-bottom: 1px solid rgba(11, 61, 46, 0.12);
  }
  .nav a { border-bottom-color: rgba(11, 61, 46, 0.08); color: var(--green); }
  .nav-btn span { background: var(--green); }
}