/* ─────────────────────────────────────────
   CHAÁK HA' — Main Stylesheet
   ───────────────────────────────────────── */

/* ── TOKENS ── */
:root {
  --obsidian: #060808;
  --deep: #0d1a18;
  --jungle: #060d08;
  --teal: #0f1e1b;
  --gold: #c8a84b;
  --gold-light: #e2c06a;
  --bone: #ede8dc;
  --rain: #8bada8;
  --text: #c4bfb3;
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--obsidian);
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── RAIN CANVAS (fixed, behind everything) ── */
#rain-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
}

/* ─────────────────────────────────────────
   NAV
   ───────────────────────────────────────── */
body > nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 3rem;
  background: linear-gradient(
    to bottom,
    rgba(6, 8, 8, 0.95) 0%,
    transparent 100%
  );
}

.nav-logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-decoration: none;
}
.nav-logo span {
  color: var(--bone);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: "Space Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rain);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--gold);
}

/* ─────────────────────────────────────────
   HERO
   ───────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  /* no flex — all children are absolutely positioned */
}

/* ── BACKGROUND IMAGE ── */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("../images/hero-bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* ── OVERLAY — dark at top (nav) and bottom (title), clear in middle ── */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(6, 8, 8, 0.55) 0%,
    rgba(6, 8, 8, 0) 30%,
    rgba(6, 8, 8, 0) 55%,
    rgba(6, 8, 8, 0.7) 78%,
    rgba(6, 8, 8, 0.95) 100%
  );
}

/* lightning flicker */
.lightning {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: rgba(200, 230, 180, 0.04);
  animation: lightningFlash 8s ease-in-out infinite;
}
@keyframes lightningFlash {
  0%,
  91%,
  95%,
  100% {
    opacity: 0;
  }
  92% {
    opacity: 1;
  }
  93% {
    opacity: 0;
  }
  94% {
    opacity: 0.6;
  }
}

/* ── EYEBROW — top center, below nav ── */
.hero-eyebrow {
  position: absolute;
  top: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  /* wrap instead of cut off */
  white-space: normal;
  text-align: center;
  width: 90%;
  font-family: "Space Mono", monospace;
  font-size: clamp(0.5rem, 1vw, 0.65rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}

/* can-wrapper styles moved to hero layout block below */
.can-img-placeholder-remove {
  display: none;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.7))
    drop-shadow(0 0 80px rgba(200, 168, 75, 0.2));
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* ─────────────────────────────────────────
   HERO LAYOUT — desktop: left text + right can
   ───────────────────────────────────────── */

/* ── HERO LAYOUT: 3 equal columns
   col 1 (left)   = text + cta
   col 2 (center) = can, centered over pyramid
   col 3 (right)  = intentionally empty
   ───────────────────────────────────────── */
.hero-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: flex-end;
  padding: 0 4vw clamp(2rem, 4vh, 3.5rem);
  pointer-events: none;
}

/* Col 1 — text */
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: all;
}

.hero-title {
  font-family: "Anton", sans-serif;
  font-size: clamp(3.5rem, 8vw, 9.5rem);
  line-height: 0.88;
  letter-spacing: -0.01em;
  color: var(--bone);
  text-transform: uppercase;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
  margin: 0 0 0.15em;
}
.hero-title .gold {
  color: var(--gold);
}

.hero-sub {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(0.85rem, 1.6vw, 1.5rem);
  letter-spacing: 0.35em;
  color: var(--rain);
  margin-bottom: clamp(0.8rem, 1.8vh, 1.4rem);
  white-space: nowrap;
}

.hero-cta {
  display: inline-block;
  font-family: "Space Mono", monospace;
  font-size: clamp(0.58rem, 0.9vw, 0.74rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--obsidian);
  background: var(--gold);
  padding: clamp(0.65rem, 1.2vh, 1rem) clamp(1.2rem, 2.2vw, 2rem);
  text-decoration: none;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: background 0.2s;
  white-space: nowrap;
  pointer-events: all;
}
.hero-cta:hover {
  background: var(--gold-light);
}

/* Col 2 — can, centered and lifted above the pedestal */
.can-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  /* push the can up from the bottom — 28vh lifts it above the pedestal */
  padding-bottom: 28vh;
}
.can-img {
  width: clamp(130px, 14vw, 240px);
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.7))
    drop-shadow(0 0 80px rgba(200, 168, 75, 0.2));
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* Col 3 — empty spacer, no element needed */

.scroll-hint {
  display: none;
}
.scroll-line {
  display: none;
}

/* ─────────────────────────────────────────
   MARQUEE STRIP
   ───────────────────────────────────────── */
.sus-strip {
  position: relative;
  z-index: 2;
  background: var(--gold);
  padding: 1.3rem 0;
  overflow: hidden;
}
.sus-marquee {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}
.sus-marquee span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.15em;
  color: var(--obsidian);
  text-transform: uppercase;
  flex-shrink: 0;
}
.sus-sep {
  color: rgba(0, 0, 0, 0.3);
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ─────────────────────────────────────────
   SHARED SECTION UTILITIES
   ───────────────────────────────────────── */
.section-label {
  font-family: "Space Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  opacity: 0.8;
}
.section-title {
  font-family: "Anton", sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--bone);
  line-height: 0.92;
  margin-bottom: 3.5rem;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────
   PILLARS
   ───────────────────────────────────────── */
.pillars {
  position: relative;
  z-index: 2;
  padding: 7rem 3rem;
  background: linear-gradient(180deg, #0a1208 0%, #071009 100%);
  border-top: 1px solid rgba(200, 168, 75, 0.12);
  border-bottom: 1px solid rgba(200, 168, 75, 0.12);
}
.pillars::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 50% at 50% 0%,
    rgba(200, 168, 75, 0.04) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
}
.pillar {
  padding: 2.5rem 2rem;
  background: rgba(6, 8, 6, 0.6);
  border: 1px solid rgba(200, 168, 75, 0.08);
  transition:
    background 0.3s,
    border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.pillar:hover {
  background: rgba(15, 30, 15, 0.9);
  border-color: rgba(200, 168, 75, 0.25);
}
.pillar:hover::before {
  opacity: 1;
}

.pillar-icon {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  display: block;
}
.pillar-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.pillar-desc {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text);
}

/* ─────────────────────────────────────────
   MYTH / ORIGIN
   ───────────────────────────────────────── */
.myth-section {
  position: relative;
  z-index: 2;
  padding: 8rem 3rem;
  background: linear-gradient(180deg, #060d08 0%, #040a06 100%);
  overflow: hidden;
}
.myth-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 50% 50%,
    rgba(200, 168, 75, 0.04) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.myth {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.myth-mask {
  display: flex;
  justify-content: center;
}

.mask-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mask-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200, 168, 75, 0.2);
  animation: ringPulse 3s ease-in-out infinite;
}
.mask-ring-1 {
  inset: -24px;
}
.mask-ring-2 {
  inset: -48px;
  animation-delay: 1s;
  opacity: 0.5;
}
@keyframes ringPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.02);
  }
}
.mask-photo {
  width: clamp(200px, 28vw, 340px);
  height: clamp(200px, 28vw, 340px);
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(200, 168, 75, 0.5));
}

.myth-title {
  font-family: "Anton", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 0.9;
  color: var(--bone);
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.myth-title em {
  color: var(--gold);
  font-style: normal;
  display: block;
}

.myth-quote {
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--rain);
  line-height: 1.2;
}
.myth-text {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 1.2rem;
}

/* ─────────────────────────────────────────
   PROCESS
   ───────────────────────────────────────── */
.proceso {
  position: relative;
  z-index: 2;
  padding: 8rem 3rem;
  background: linear-gradient(180deg, #040a06 0%, #060d08 100%);
  border-top: 1px solid rgba(200, 168, 75, 0.08);
}
.proceso-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.proceso-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
  border: 1px solid rgba(200, 168, 75, 0.1);
}
.step {
  padding: 2.5rem 1.8rem;
  border-right: 1px solid rgba(200, 168, 75, 0.1);
  position: relative;
}
.step:last-child {
  border-right: none;
}
.step-num {
  font-family: "Space Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 1.2rem;
}
.step-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.step-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: var(--bone);
  margin-bottom: 0.6rem;
}
.step-desc {
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--text);
}

/* ─────────────────────────────────────────
   PRODUCT SCENE
   ───────────────────────────────────────── */
.product-scene {
  position: relative;
  z-index: 2;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #060d08 0%, #030807 100%);
  overflow: hidden;
}
.product-scene-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      ellipse 70% 60% at 50% 70%,
      rgba(200, 168, 75, 0.07) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 100% 50% at 50% 100%,
      rgba(10, 25, 15, 0.9) 0%,
      transparent 60%
    );
}
.product-scene > * {
  position: relative;
  z-index: 2;
}

.tulum-can {
  width: clamp(240px, 32vw, 420px);
  margin: 2rem 0;
  filter: drop-shadow(0 30px 80px rgba(200, 168, 75, 0.2));
}
.product-scene-title {
  font-family: "Anton", sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  color: var(--bone);
  text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: 1rem;
}
.product-scene-title em {
  color: var(--gold);
  font-style: normal;
}

.product-fact-row {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: 2rem;
  flex-wrap: wrap;
}
.fact {
  text-align: center;
}
.fact-num {
  font-family: "Anton", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  line-height: 1;
  display: block;
}
.fact-label {
  font-family: "Space Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rain);
  margin-top: 0.3rem;
}

/* ─────────────────────────────────────────
   UMA
   ───────────────────────────────────────── */
.uma-section {
  position: relative;
  z-index: 2;
  padding: 8rem 3rem;
  background: linear-gradient(180deg, #030807 0%, #040a06 100%);
  border-top: 1px solid rgba(200, 168, 75, 0.1);
}
.uma {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.uma-title {
  font-family: "Anton", sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  color: var(--bone);
  text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: 2rem;
}
.uma-title em {
  color: var(--gold);
  font-style: normal;
}
.uma-text {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 1.2rem;
}

.uma-stat-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.uma-stat {
  padding: 1.5rem;
  border: 1px solid rgba(200, 168, 75, 0.12);
  background: rgba(10, 18, 10, 0.5);
}
.uma-stat-num {
  font-family: "Anton", sans-serif;
  font-size: 2.2rem;
  color: var(--gold);
  display: block;
}
.uma-stat-label {
  font-size: 0.78rem;
  color: var(--rain);
  margin-top: 0.2rem;
  line-height: 1.4;
}

.uma-visual {
  background: linear-gradient(
    135deg,
    rgba(15, 30, 15, 0.7),
    rgba(6, 8, 6, 0.9)
  );
  border: 1px solid rgba(200, 168, 75, 0.12);
  padding: 3rem 2rem;
  text-align: center;
}
.uma-icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  display: block;
}
.uma-visual-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.uma-visual-text {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text);
}

/* ─────────────────────────────────────────
   NEWSLETTER
   ───────────────────────────────────────── */
.newsletter {
  position: relative;
  z-index: 2;
  padding: 7rem 3rem;
  text-align: center;
  border-top: 1px solid rgba(200, 168, 75, 0.1);
  background: #030807;
}
.newsletter-title {
  font-family: "Anton", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--bone);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.newsletter-sub {
  font-size: 0.9rem;
  color: var(--rain);
  margin-bottom: 2.5rem;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-input {
  flex: 1;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 168, 75, 0.3);
  border-right: none;
  color: var(--bone);
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  outline: none;
}
.newsletter-input::placeholder {
  color: rgba(196, 191, 179, 0.4);
}
.newsletter-btn {
  padding: 1rem 2rem;
  background: var(--gold);
  border: none;
  cursor: pointer;
  font-family: "Space Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--obsidian);
  transition: background 0.2s;
}
.newsletter-btn:hover {
  background: var(--gold-light);
}

/* ─────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────── */
footer {
  position: relative;
  z-index: 2;
  padding: 3rem;
  border-top: 1px solid rgba(200, 168, 75, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  background: #030807;
}
.footer-logo {
  font-family: "Anton", sans-serif;
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

footer nav {
  position: static;
  background: none;
  padding: 0;
  border: none;
  display: flex;
  gap: 2rem;
}
footer nav a {
  font-family: "Space Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(196, 191, 179, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
footer nav a:hover {
  color: var(--gold);
}

.footer-copy {
  font-family: "Space Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: rgba(196, 191, 179, 0.4);
  text-transform: uppercase;
}

/* ─────────────────────────────────────────
   SCROLL REVEAL
   ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────── */
@media (max-width: 900px) {
  body > nav {
    padding: 1rem 1.5rem;
  }
  .nav-links {
    display: none;
  }

  /* tablet: shrink can a bit, tighten padding */
  .hero-bottom {
    padding: 0 4vw clamp(1.5rem, 3vh, 2.5rem);
  }
  .hero-text {
    max-width: 55%;
  }
  .can-img {
    width: clamp(120px, 22vw, 220px);
  }
  .hero-eyebrow {
    top: 4.5rem;
  }

  .myth {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 1.5rem;
  }
  .myth-mask {
    order: -1;
  }

  .proceso-steps {
    grid-template-columns: 1fr 1fr;
  }
  .step:nth-child(2n) {
    border-right: none;
  }
  .step:nth-child(n + 3) {
    border-top: 1px solid rgba(200, 168, 75, 0.1);
  }

  .uma {
    grid-template-columns: 1fr;
  }
  .uma-section {
    padding: 5rem 1.5rem;
  }
  .pillars {
    padding: 5rem 1.5rem;
  }
  .myth-section,
  .proceso,
  .product-scene {
    padding: 5rem 1.5rem;
  }

  footer {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 1.5rem;
  }
  footer nav {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  /* mobile: single column, can on top, text below */
  .hero-bottom {
    grid-template-columns: 1fr; /* collapse 3 cols to 1 */
    align-items: end;
    justify-items: center;
    padding: 0 1.5rem clamp(1rem, 3vh, 2rem);
    gap: 0.4rem;
  }
  /* hide the empty third col on mobile */
  .hero-bottom > div:last-child {
    display: none;
  }

  .hero-text {
    align-items: center;
    text-align: center;
    order: 2;
  }
  .can-wrapper {
    order: 1;
    justify-content: center;
    /* on mobile, no padding-bottom override — sits naturally above text */
    padding-bottom: 0;
  }
  .can-img {
    width: clamp(110px, 38vw, 190px);
    animation: none;
  }
  .hero-title {
    font-size: clamp(3rem, 18vw, 5.5rem);
  }
  .hero-sub {
    font-size: clamp(0.7rem, 3.5vw, 1rem);
    letter-spacing: 0.2em;
  }
  .hero-eyebrow {
    top: 4rem;
    font-size: 0.5rem;
    letter-spacing: 0.2em;
    width: 95%;
  }
}

@media (max-width: 520px) {
  .proceso-steps {
    grid-template-columns: 1fr;
  }
  .step {
    border-right: none !important;
    border-bottom: 1px solid rgba(200, 168, 75, 0.1);
  }
  .step:last-child {
    border-bottom: none;
  }
  .uma-stat-block {
    grid-template-columns: 1fr;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-input {
    border-right: 1px solid rgba(200, 168, 75, 0.3);
    border-bottom: none;
  }
  .newsletter-btn {
    width: 100%;
  }
}
