/* Solara Well — calm premium wellness landing */
:root {
  --sand: #f3efe6;
  --sand-deep: #e8e2d4;
  --cream: #faf7f0;
  --sage: #e7f0e8;
  --sage-mid: #c5d6c8;
  --sage-deep: #6b8f74;
  --forest: #2f3b33;
  --forest-soft: #4a5a50;
  --ink: #2a322c;
  --muted: #6b756e;
  --warm: #d4c4a8;
  --blush: #e8ddd0;
  --white: #fffcf7;
  --radius: 1.5rem;
  --radius-lg: 2rem;
  --radius-pill: 999px;
  --shadow: 0 14px 44px rgba(47, 59, 51, 0.1);
  --shadow-soft: 0 6px 24px rgba(47, 59, 51, 0.06);
  --shadow-card: 0 1px 0 rgba(107, 143, 116, 0.08), 0 12px 32px rgba(47, 59, 51, 0.07);
  --font-serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Nunito", "Source Sans 3", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 72rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse 70% 40% at 80% 0%, rgba(197, 214, 200, 0.35), transparent 55%),
    var(--sand);
  overflow-x: hidden;
}

h1, h2 {
  text-wrap: balance;
}

p {
  max-width: 65ch;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.container--narrow {
  width: min(100% - 2rem, 42rem);
}

/* Typography */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 1.25rem;
  height: 1px;
  background: var(--sage-deep);
  opacity: 0.6;
}

h1,
h2,
h3,
.serif {
  font-family: var(--font-serif);
  font-weight: 450;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--forest);
}

h1 {
  font-size: clamp(2.65rem, 6.5vw, 4.5rem);
  font-weight: 400;
}

h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.15rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.lead {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 65ch;
  line-height: 1.7;
}

.section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3rem;
}

.section-head .lead {
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 650;
  font-size: 0.95rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn svg {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 8px 24px rgba(47, 59, 51, 0.18);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(47, 59, 51, 0.22);
  background: #243029;
}

.btn--primary:active {
  transform: scale(0.98);
}

.btn--ghost {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid rgba(47, 59, 51, 0.18);
}

.btn--ghost:hover {
  background: rgba(47, 59, 51, 0.04);
  border-color: rgba(47, 59, 51, 0.3);
}

.btn--light {
  background: var(--cream);
  color: var(--forest);
  box-shadow: var(--shadow-soft);
}

.btn--light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn--light:active {
  transform: scale(0.98);
}

.btn--sm {
  padding: 0.65rem 1.2rem;
  font-size: 0.875rem;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, padding 0.3s, box-shadow 0.4s;
}

.nav.is-scrolled {
  background: rgba(243, 239, 230, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.65rem 0;
  box-shadow: 0 1px 0 rgba(47, 59, 51, 0.06);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--forest);
}

.logo__mark {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--sage-mid), var(--sage-deep));
  display: grid;
  place-items: center;
  color: var(--cream);
}

.logo__mark svg {
  width: 1.15rem;
  height: 1.15rem;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--forest-soft);
  transition: color 0.25s var(--ease);
}

.nav__links a:hover {
  color: var(--forest);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__menu-btn {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  color: var(--forest);
}

.nav__menu-btn span {
  display: block;
  width: 1.15rem;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  position: relative;
  transition: background 0.2s;
}

.nav__menu-btn span::before,
.nav__menu-btn span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s var(--ease);
}

.nav__menu-btn span::before {
  top: -5px;
}

.nav__menu-btn span::after {
  top: 5px;
}

.nav__menu-btn[aria-expanded="true"] span {
  background: transparent;
}

.nav__menu-btn[aria-expanded="true"] span::before {
  transform: translateY(5px) rotate(45deg);
}

.nav__menu-btn[aria-expanded="true"] span::after {
  transform: translateY(-5px) rotate(-45deg);
}

.nav__drawer {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid rgba(47, 59, 51, 0.08);
  padding: 1rem 0 1.5rem;
  box-shadow: var(--shadow);
}

.nav__drawer.is-open {
  display: block;
}

.nav__drawer ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav__drawer a {
  display: block;
  padding: 0.75rem 0;
  font-weight: 600;
  color: var(--forest);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(243, 239, 230, 0.94) 0%, rgba(243, 239, 230, 0.82) 42%, rgba(243, 239, 230, 0.35) 72%, rgba(243, 239, 230, 0.15) 100%),
    linear-gradient(to top, rgba(243, 239, 230, 0.7) 0%, transparent 35%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 34rem;
}

.hero__title {
  margin-bottom: 1.25rem;
}

.hero__title em {
  font-style: italic;
  font-weight: 350;
  color: var(--sage-deep);
}

.hero__lead {
  margin-bottom: 2rem;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.hero__stars {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--sage-deep);
}

.hero__stars svg {
  width: 0.95rem;
  height: 0.95rem;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
  filter: blur(40px);
  animation: float 12s ease-in-out infinite;
}

.hero__orb--1 {
  width: 18rem;
  height: 18rem;
  background: var(--sage-mid);
  top: 15%;
  right: 5%;
  animation-delay: 0s;
}

.hero__orb--2 {
  width: 12rem;
  height: 12rem;
  background: var(--warm);
  bottom: 20%;
  right: 25%;
  animation-delay: -4s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(12px, -18px) scale(1.05);
  }
}

/* Rituals */
.rituals {
  padding: 6rem 0;
  background:
    radial-gradient(ellipse 50% 40% at 10% 0%, rgba(197, 214, 200, 0.22), transparent 55%),
    var(--cream);
}

.ritual-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.ritual-tab {
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 650;
  letter-spacing: 0.03em;
  color: var(--forest-soft);
  background: transparent;
  border: 1.5px solid transparent;
  transition: color 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.ritual-tab:hover {
  color: var(--forest);
  background: var(--sage);
}

.ritual-tab:active {
  transform: scale(0.98);
}

.ritual-tab.is-active {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

.ritual-grid {
  display: grid;
  gap: 1.25rem;
}

.ritual-card {
  background:
    linear-gradient(165deg, rgba(255, 252, 247, 0.55), transparent 50%),
    var(--sand);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  border: 1px solid rgba(47, 59, 51, 0.06);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), opacity 0.3s var(--ease), border-color 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ritual-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(107, 143, 116, 0.18);
}

.ritual-card.is-dimmed {
  opacity: 0.45;
}

.ritual-card__icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1rem;
  background: var(--sage);
  color: var(--sage-deep);
  display: grid;
  place-items: center;
}

.ritual-card__icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.ritual-card__time {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sage-deep);
}

.ritual-card p {
  color: var(--muted);
  font-size: 0.975rem;
  flex: 1;
}

.ritual-card__tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  background: var(--sage);
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 700;
}

/* How it works */
.how {
  padding: 6rem 0;
  background: var(--sand);
  position: relative;
}

.how__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

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

.how__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.how__badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.how__badge-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--sage);
  color: var(--sage-deep);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.how__badge-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.how__badge strong {
  display: block;
  font-size: 0.9rem;
  color: var(--forest);
}

.how__badge span {
  font-size: 0.8rem;
  color: var(--muted);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.step__num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--sage);
  color: var(--forest);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  display: grid;
  place-items: center;
  font-weight: 500;
}

.step h3 {
  margin-bottom: 0.35rem;
}

.step p {
  color: var(--muted);
  font-size: 0.975rem;
}

/* Trust / science-ish */
.trust {
  padding: 6rem 0;
  background: var(--forest);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.trust::before {
  content: "";
  position: absolute;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 143, 116, 0.25), transparent 70%);
  top: -8rem;
  right: -6rem;
  pointer-events: none;
}

.trust .eyebrow {
  color: var(--sage-mid);
}

.trust .eyebrow::before {
  background: var(--sage-mid);
}

.trust h2 {
  color: var(--cream);
}

.trust .lead {
  color: rgba(243, 239, 230, 0.72);
}

.trust-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 3rem;
}

.trust-card {
  background:
    linear-gradient(160deg, rgba(197, 214, 200, 0.08), transparent 55%),
    rgba(255, 252, 247, 0.06);
  border: 1px solid rgba(255, 252, 247, 0.1);
  border-radius: var(--radius);
  padding: 1.85rem;
  box-shadow: inset 0 1px 0 rgba(255, 252, 247, 0.06);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.25s var(--ease);
}

.trust-card:hover {
  background:
    linear-gradient(160deg, rgba(197, 214, 200, 0.12), transparent 55%),
    rgba(255, 252, 247, 0.1);
  transform: translateY(-2px);
  border-color: rgba(255, 252, 247, 0.16);
}

.trust-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  background: rgba(197, 214, 200, 0.15);
  color: var(--sage-mid);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.trust-card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.trust-card h3 {
  color: var(--cream);
  font-size: 1.2rem;
}

.trust-card p {
  color: rgba(243, 239, 230, 0.68);
  font-size: 0.95rem;
  margin-top: 0.4rem;
}

.trust-note {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(243, 239, 230, 0.5);
  max-width: 28rem;
  margin-inline: auto;
}

/* Testimonials */
.stories {
  padding: 6rem 0;
  background:
    radial-gradient(ellipse 40% 50% at 90% 20%, rgba(212, 196, 168, 0.2), transparent 55%),
    var(--cream);
}

.stories-grid {
  display: grid;
  gap: 1.25rem;
}

.story {
  background:
    linear-gradient(165deg, rgba(255, 252, 247, 0.5), transparent 45%),
    var(--sand);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  border: 1px solid rgba(47, 59, 51, 0.06);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.story:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.story__quote {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--forest);
  font-weight: 400;
  flex: 1;
}

.story__quote::before {
  content: "“";
  color: var(--sage-deep);
  opacity: 0.5;
}

.story__footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.story__avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  object-fit: cover;
  background: var(--sage-mid);
}

.story__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--forest);
}

.story__role {
  font-size: 0.8rem;
  color: var(--muted);
}

/* CTA */
.cta {
  padding: 6rem 0;
  background: var(--sand);
}

.cta__card {
  position: relative;
  border-radius: calc(var(--radius-lg) + 0.5rem);
  overflow: hidden;
  min-height: 28rem;
  display: flex;
  align-items: center;
}

.cta__bg {
  position: absolute;
  inset: 0;
}

.cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(47, 59, 51, 0.88) 0%, rgba(47, 59, 51, 0.7) 50%, rgba(47, 59, 51, 0.4) 100%);
}

.cta__content {
  position: relative;
  z-index: 1;
  padding: 3rem 1.75rem;
  max-width: 28rem;
  color: var(--cream);
}

.cta__content .eyebrow {
  color: var(--sage-mid);
}

.cta__content .eyebrow::before {
  background: var(--sage-mid);
}

.cta__content h2 {
  color: var(--cream);
  margin-bottom: 1rem;
}

.cta__content p {
  color: rgba(243, 239, 230, 0.8);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.cta__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1.15rem;
  background: var(--cream);
  color: var(--forest);
  border-radius: 0.85rem;
  font-weight: 650;
  font-size: 0.85rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(47, 59, 51, 0.2);
}

.store-btn:active {
  transform: scale(0.98);
}

.store-btn small {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  opacity: 0.65;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.store-btn span {
  display: block;
  font-size: 0.95rem;
  line-height: 1.2;
}

.cta__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cta__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(243, 239, 230, 0.75);
}

.cta__list svg {
  width: 1rem;
  height: 1rem;
  color: var(--sage-mid);
  flex-shrink: 0;
}

/* Footer */
.footer {
  padding: 3.25rem 0 2.25rem;
  background: var(--sand-deep);
  border-top: 1px solid rgba(47, 59, 51, 0.06);
}

.footer__top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer__brand p {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 16rem;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.footer__cols h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--forest);
  margin-bottom: 0.85rem;
}

.footer__cols a {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.footer__cols a:hover {
  color: var(--forest);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(47, 59, 51, 0.08);
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--muted);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* Focus */
:focus-visible {
  outline: 2px solid var(--sage-deep);
  outline-offset: 3px;
}

/* Responsive */
@media (min-width: 640px) {
  .ritual-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .cta__content {
    padding: 3.5rem;
  }
}

@media (min-width: 900px) {
  .nav__links {
    display: flex;
  }

  .nav__menu-btn {
    display: none;
  }

  .nav .btn--sm {
    display: inline-flex;
  }

  .ritual-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .how__grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }

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

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

  .footer__top {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 1100px) {
  .hero {
    padding: 8rem 0 5rem;
  }

  .hero__content {
    max-width: 38rem;
  }
}

@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;
  }

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