/* ==========================================================================
   Nimiora Scents — stylesheet
   1. Design tokens
   2. Reset & base
   3. Typography & utilities
   4. Buttons
   5. Header / navigation
   6. Hero
   7. Sections (about, collection, philosophy, newsletter)
   8. Footer
   9. Animations & motion preferences
   ========================================================================== */

/* ---------- 1. Design tokens ---------- */
:root {
  /* Palette — warm ivory, soft taupe, muted charcoal, dusty rose, soft gold */
  --ivory: #f7f3ee;
  --ivory-deep: #efe8e0;
  --taupe: #cfc3b6;
  --taupe-soft: #e3d9cf;
  --charcoal: #2e2b28;
  --charcoal-soft: #4d4741;
  --rose: #c9a2a0;
  --rose-soft: #e6cfcb;
  --gold: #c9a961;
  --gold-soft: #e0cb9c;

  /* Semantic */
  --bg: var(--ivory);
  --bg-alt: #fbf9f6;
  --bg-deep: var(--ivory-deep);
  --text: var(--charcoal);
  --text-muted: #6c645c;
  --line: rgba(46, 43, 40, 0.12);
  --accent: var(--rose);
  --highlight: var(--gold);

  /* Type */
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Fluid type scale */
  --fs-hero: clamp(3rem, 11vw, 7.5rem);
  --fs-h2: clamp(2rem, 5vw, 3.4rem);
  --fs-h3: clamp(1.15rem, 2vw, 1.4rem);
  --fs-lede: clamp(1.05rem, 1.6vw, 1.3rem);
  --fs-body: clamp(0.95rem, 1.1vw, 1.05rem);
  --fs-small: 0.8rem;

  /* Space & shape */
  --space-section: clamp(5rem, 12vw, 10rem);
  --container: 1200px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --radius: 2px;
  --radius-lg: 4px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 0.6s;

  --shadow-soft: 0 20px 60px -30px rgba(46, 43, 40, 0.35);
}

/* ---------- 2. Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  /* keeps anchored sections clear of the fixed header */
  scroll-padding-top: 6rem;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

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

:focus-visible {
  outline: 2px solid var(--highlight);
  outline-offset: 3px;
}

/* ---------- 3. Typography & utilities ---------- */
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

p {
  max-width: 60ch;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container.narrow {
  max-width: 720px;
  text-align: center;
}

.container.narrow p {
  margin-inline: auto;
}

.section {
  padding-block: var(--space-section);
}

.section-title {
  font-size: var(--fs-h2);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--highlight);
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(3rem, 7vw, 5rem);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head--center p {
  margin-inline: auto;
}

.eyebrow {
  font-size: var(--fs-small);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.lede {
  font-size: var(--fs-lede);
  color: var(--charcoal-soft);
  font-family: var(--font-display);
  font-style: italic;
  line-height: 1.6;
}

.section-intro {
  color: var(--text-muted);
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  background: var(--charcoal);
  color: var(--ivory);
  font-size: var(--fs-small);
  letter-spacing: 0.1em;
}

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

/* ---------- 4. Buttons ---------- */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--charcoal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: var(--fs-small);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease),
    background-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.btn-primary {
  --btn-bg: var(--charcoal);
  --btn-fg: var(--ivory);
  border-color: var(--charcoal);
}

/* soft gold wash that fades up instead of a hard colour flip */
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  color: var(--charcoal);
  border-color: var(--gold);
}

.btn-primary:hover::after,
.btn-primary:focus-visible::after {
  opacity: 1;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--charcoal);
  background-color: rgba(255, 255, 255, 0.5);
}

.btn:active {
  transform: translateY(1px);
}

.link-btn {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-size: var(--fs-small);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
}

.link-btn:hover,
.link-btn:focus-visible {
  color: var(--charcoal);
  border-color: var(--gold);
}

/* ---------- 5. Header / navigation ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding-block: 1.5rem;
  transition: background-color 0.5s var(--ease), padding 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}

.site-header.is-scrolled {
  padding-block: 0.9rem;
  background: rgba(247, 243, 238, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-mark {
  width: 9px;
  height: 14px;
  border-radius: 50% 50% 45% 45%;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  box-shadow: 0 0 14px rgba(201, 169, 97, 0.7);
  animation: flicker 4.5s var(--ease) infinite;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.75rem);
  list-style: none;
}

.nav-menu a {
  position: relative;
  font-size: var(--fs-small);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  transition: color 0.4s var(--ease);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--charcoal);
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: none;
  cursor: pointer;
  position: relative;
  z-index: 60;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  position: absolute;
  left: 50%;
  width: 22px;
  height: 1px;
  background: var(--charcoal);
  transition: transform 0.45s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle-bars {
  top: 50%;
  transform: translate(-50%, -50%);
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  left: 0;
}

.nav-toggle-bars::before {
  transform: translateY(-7px);
}

.nav-toggle-bars::after {
  transform: translateY(7px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
  transform: rotate(-45deg);
}

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% 110%, rgba(201, 162, 160, 0.22), transparent 60%),
    radial-gradient(90% 60% at 50% 0%, rgba(201, 169, 97, 0.14), transparent 65%),
    linear-gradient(180deg, var(--bg-alt), var(--bg-deep));
}

/* slow-breathing candle glow behind the wordmark */
.hero-glow {
  position: absolute;
  left: 50%;
  top: 52%;
  width: min(70vw, 720px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 226, 176, 0.55), transparent 62%);
  filter: blur(40px);
  animation: breathe 9s ease-in-out infinite;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  text-align: center;
  padding-block: 8rem 6rem;
}

.hero-inner p {
  margin-inline: auto;
}

.hero-title {
  font-size: var(--fs-hero);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.hero-title em {
  display: block;
  font-style: italic;
  font-size: 0.62em;
  letter-spacing: 0.12em;
  color: var(--charcoal-soft);
}

.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  color: var(--text-muted);
  margin-inline: auto;
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2.5rem;
  transform: translateX(-50%);
  width: 44px;
  height: 64px;
  display: grid;
  place-items: center;
}

.scroll-cue-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, transparent, var(--taupe));
  position: relative;
  overflow: hidden;
}

.scroll-cue-line::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  height: 18px;
  background: var(--charcoal);
  animation: trickle 2.6s var(--ease) infinite;
}

/* ---------- 7. Sections ---------- */

/* About — split layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.split-visual {
  position: relative;
}

.image-frame {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

/* Placeholder "photography" built from gradients — swap for real imagery later */
.image-frame--about {
  background:
    radial-gradient(60% 40% at 30% 22%, rgba(255, 232, 190, 0.85), transparent 60%),
    linear-gradient(165deg, var(--taupe-soft) 0%, var(--taupe) 45%, #a99c8f 100%);
}

.image-frame--about::after {
  /* suggestion of a candle silhouette */
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18%;
  width: 26%;
  height: 30%;
  transform: translateX(-50%);
  border-radius: 4px 4px 6px 6px;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.9), rgba(233, 222, 208, 0.65));
  box-shadow: 0 -40px 70px -10px rgba(255, 226, 176, 0.75);
}

.frame-caption {
  display: inline-block;
  margin-top: 1rem;
  font-size: var(--fs-small);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.split-copy p + p {
  margin-top: 1.25rem;
}

.feature-list {
  list-style: none;
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.5rem;
}

.feature-list li {
  font-size: var(--fs-small);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}

/* Collection */
.section-collection {
  background: var(--bg-alt);
  border-block: 1px solid var(--line);
}

.product-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.product-card {
  display: flex;
  flex-direction: column;
  transition: transform 0.7s var(--ease);
}

.product-media {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.7s var(--ease);
}

/* Each vessel gets its own mood gradient */
.product-media--1 {
  background: linear-gradient(160deg, #e8dccb, #b9a48b);
}

.product-media--2 {
  background: linear-gradient(160deg, #fbf8f3, #ded4c8);
}

.product-media--3 {
  background: linear-gradient(160deg, var(--rose-soft), #b98f8c);
}

.product-media--4 {
  background: linear-gradient(160deg, #6f6c66, #322f2c);
}

/* soft flame glow inside every card */
.product-media::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 38%;
  width: 60%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%) scale(0.9);
  background: radial-gradient(circle, rgba(255, 236, 205, 0.7), transparent 65%);
  opacity: 0.7;
  transition: transform 0.9s var(--ease), opacity 0.9s var(--ease);
}

.product-card:hover .product-media::before,
.product-card:focus-within .product-media::before {
  transform: translate(-50%, -50%) scale(1.15);
  opacity: 1;
}

.product-card:hover .product-media,
.product-card:focus-within .product-media {
  box-shadow: var(--shadow-soft);
}

.badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.85rem;
  background: rgba(247, 243, 238, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 100px;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}

.product-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.product-name {
  font-size: var(--fs-h3);
}

.product-price {
  font-size: var(--fs-small);
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.product-notes {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.product-desc {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-body .link-btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Philosophy */
.ritual-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
}

.ritual {
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.ritual-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--highlight);
  line-height: 1;
  margin-bottom: 1rem;
}

.ritual-title {
  font-size: var(--fs-h3);
  margin-bottom: 0.75rem;
}

.ritual p {
  color: var(--text-muted);
}

.pull-quote {
  margin-top: clamp(4rem, 9vw, 7rem);
  text-align: center;
}

.pull-quote blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3.4vw, 2.5rem);
  line-height: 1.4;
  max-width: 22ch;
  margin-inline: auto;
  color: var(--charcoal);
}

.pull-quote figcaption {
  margin-top: 1.5rem;
  font-size: var(--fs-small);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Newsletter */
.section-newsletter {
  background:
    radial-gradient(70% 60% at 50% 0%, rgba(201, 169, 97, 0.12), transparent 65%),
    var(--bg-deep);
  border-top: 1px solid var(--line);
}

.newsletter-form {
  margin-top: 2.5rem;
}

.field {
  display: flex;
  gap: 0.75rem;
  max-width: 520px;
  margin-inline: auto;
}

.field input {
  flex: 1;
  min-width: 0;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.4s var(--ease), background-color 0.4s var(--ease);
}

.field input::placeholder {
  color: #9a9088;
}

.field input:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}

.field input[aria-invalid="true"] {
  border-color: var(--rose);
}

.form-status {
  min-height: 1.5rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--charcoal-soft);
}

.form-status.is-error {
  color: #a8615f;
}

.form-note {
  margin-top: 0.5rem;
  font-size: var(--fs-small);
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ---------- 8. Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: var(--ivory);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
}

.brand--footer {
  font-size: 1.15rem;
  color: var(--ivory);
}

.footer-tagline {
  margin-top: 1rem;
  color: rgba(247, 243, 238, 0.6);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
}

.footer-nav ul {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.footer-nav a,
.social-link {
  font-size: var(--fs-small);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 243, 238, 0.7);
  transition: color 0.4s var(--ease);
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.social-link:hover,
.social-link:focus-visible {
  color: var(--gold-soft);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-base {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  padding-block: 1.75rem;
  border-top: 1px solid rgba(247, 243, 238, 0.14);
  font-size: var(--fs-small);
  color: rgba(247, 243, 238, 0.45);
  letter-spacing: 0.08em;
}

.footer-fineprint {
  font-style: italic;
}

/* ---------- 9. Animations ---------- */

/* Scroll reveal — JS adds .is-visible via IntersectionObserver */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  transition-delay: calc(var(--reveal-delay, 0) * 110ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* No-JS fallback: content must always be readable */
.no-js .reveal {
  opacity: 1;
  transform: none;
}

@keyframes breathe {
  0%, 100% { opacity: 0.75; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;    transform: translate(-50%, -50%) scale(1.07); }
}

@keyframes flicker {
  0%, 100% { opacity: 1;    transform: scaleY(1); }
  45%      { opacity: 0.72; transform: scaleY(0.92); }
  70%      { opacity: 0.95; transform: scaleY(1.04); }
}

@keyframes trickle {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(320%); }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }

  .split-visual {
    max-width: 460px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: rgba(247, 243, 238, 0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.45s var(--ease), transform 0.45s var(--ease),
      visibility 0.45s var(--ease);
  }

  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-menu a {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: none;
    letter-spacing: 0.08em;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

/* ---------- Motion & contrast preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

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

@media (prefers-contrast: more) {
  :root {
    --text-muted: #4a443e;
    --line: rgba(46, 43, 40, 0.35);
  }
}

@media print {
  .site-header,
  .scroll-cue,
  .hero-glow {
    display: none;
  }
}
