:root {
  --cream: #f3ebe0;
  --foam: #fbf7f0;
  --paper: #e8dccb;
  --ink: #231612;
  --cacao: #3d2418;
  --caramel: #b87333;
  --honey: #d4a05a;
  --wine: #8c3A32;
  --muted: #6f5b4f;
  --line: rgba(61, 36, 24, 0.12);
  --shadow: 0 0 0 1px rgba(35, 22, 18, 0.06), 0 1px 2px -1px rgba(35, 22, 18, 0.06),
    0 10px 28px -16px rgba(35, 22, 18, 0.28);
  --shadow-hover: 0 0 0 1px rgba(35, 22, 18, 0.08), 0 14px 36px -14px rgba(35, 22, 18, 0.32);
  --whatsapp: #1f6b3a;
  --radius: 18px;
  --header-h: 72px;
  --space: 8px;
  --measure: 68ch;
  --wide: 1120px;
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Figtree", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.2, 0, 0, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  text-wrap: pretty;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  outline: 1px solid rgba(35, 22, 18, 0.1);
  outline-offset: -1px;
}

img.plain {
  outline: none;
}

a {
  color: inherit;
}

button,
[role="button"] {
  cursor: pointer;
}

button:not(:disabled):active,
.btn:active {
  scale: 0.96;
}

h1,
h2,
h3,
.display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 0;
}

p {
  margin: 0;
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--ink);
  color: var(--foam);
  padding: 8px 12px;
  z-index: 100;
}

.skip:focus {
  top: 12px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--caramel);
}

.wrap {
  width: min(calc(100% - 40px), var(--wide));
  margin-inline: auto;
}

.wrap-narrow {
  width: min(calc(100% - 40px), 720px);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  color: var(--foam);
  transition: background 220ms var(--ease), box-shadow 220ms var(--ease), color 220ms var(--ease);
}

.site-header .brand-name,
.site-header .nav a:not(.btn) {
  color: var(--foam);
}

.site-header .nav a:not(.btn):hover {
  color: var(--honey);
}

.site-header .nav-toggle span,
.site-header .nav-toggle span::before,
.site-header .nav-toggle span::after {
  background: var(--foam);
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(243, 235, 224, 0.94);
  box-shadow: 0 1px 0 var(--line);
}

.site-header.is-scrolled:not(.is-open) {
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled .brand-name,
.site-header.is-open .brand-name,
.site-header.is-scrolled .nav a:not(.btn),
.site-header.is-open .nav a:not(.btn) {
  color: var(--cacao);
}

.site-header.is-scrolled .nav a:not(.btn):hover,
.site-header.is-open .nav a:not(.btn):hover {
  color: var(--wine);
}

.site-header.is-scrolled .nav-toggle span,
.site-header.is-open .nav-toggle span,
.site-header.is-scrolled .nav-toggle span::before,
.site-header.is-open .nav-toggle span::before,
.site-header.is-scrolled .nav-toggle span::after,
.site-header.is-open .nav-toggle span::after {
  background: var(--ink);
}

.header-inner {
  width: min(calc(100% - 32px), var(--wide));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-height: 44px;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  outline: none;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  text-decoration: none;
  padding: 10px 12px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--cacao);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav a:hover {
  color: var(--wine);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px 0 22px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 180ms var(--ease), color 180ms var(--ease),
    box-shadow 180ms var(--ease), scale 150ms ease-out;
}

.btn-wine {
  background: var(--wine);
  color: #fbf7f0;
}

.btn-wine:hover {
  background: #742f29;
}

.btn-ghost {
  background: transparent;
  color: var(--foam);
  box-shadow: inset 0 0 0 1.5px rgba(251, 247, 240, 0.55);
}

.btn-ghost:hover {
  background: rgba(251, 247, 240, 0.1);
}

.btn-ghost.dark {
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px rgba(35, 22, 18, 0.22);
}

.btn-ghost.dark:hover {
  background: rgba(35, 22, 18, 0.05);
}

.btn-wa {
  background: var(--whatsapp);
  color: #f4faf5;
}

.btn-wa:hover {
  background: #185830;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
  margin: 0 auto;
  transition: transform 180ms var(--ease), opacity 180ms var(--ease);
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--foam);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  outline: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20, 10, 8, 0.28) 0%, rgba(20, 10, 8, 0.12) 32%, rgba(20, 10, 8, 0.55) 70%, rgba(20, 10, 8, 0.82) 100%);
}

.hero-content {
  width: min(calc(100% - 40px), var(--wide));
  margin: 0 auto;
  padding: 0 0 72px;
}

.hero .eyebrow {
  color: var(--honey);
}

.hero h1 {
  margin: 14px 0 16px;
  font-size: clamp(2.15rem, 6vw, 5.1rem);
  font-weight: 500;
  max-width: 14ch;
  color: var(--foam);
}

.hero-lead {
  max-width: 42ch;
  font-size: 1.05rem;
  color: rgba(251, 247, 240, 0.86);
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  font-size: 0.88rem;
  color: rgba(251, 247, 240, 0.72);
  border-top: 1px solid rgba(251, 247, 240, 0.16);
  padding-top: 18px;
}

/* Ribbon */
.ribbon {
  background: var(--cacao);
  color: var(--paper);
  overflow: hidden;
  padding: 14px 0;
}

.ribbon-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 42s linear infinite;
}

.ribbon-track span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0 22px;
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Sections */
section {
  padding: 88px 0;
  scroll-margin-top: calc(var(--header-h) + 8px);
}

.keto h2,
.order h2 {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  margin: 10px 0 16px;
  max-width: 16ch;
}

.section-head {
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  margin-top: 10px;
  max-width: 16ch;
}

.lede {
  margin-top: 16px;
  color: var(--muted);
  max-width: 48ch;
}

/* Story */
.story {
  background: var(--foam);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.story-copy h2 {
  font-size: clamp(2rem, 4.4vw, 3.3rem);
  margin: 10px 0 20px;
}

.story-copy p + p {
  margin-top: 16px;
}

.story-copy p {
  color: var(--cacao);
  max-width: var(--measure);
}

.story-note {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--cacao);
}

.story-visual {
  position: relative;
}

.story-visual img {
  width: 100%;
  border-radius: 22px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.story-chip {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: var(--foam);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: var(--shadow);
}

/* Products */
.products-grid {
  display: grid;
  gap: 22px;
}

.product {
  background: var(--foam);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: box-shadow 180ms var(--ease), transform 180ms var(--ease);
}

.product:hover {
  box-shadow: var(--shadow-hover);
}

.product img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  outline: none;
}

.product-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.product h3 {
  font-size: 1.7rem;
}

.product p {
  color: var(--muted);
  font-size: 0.98rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.chip {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--cacao);
}

.product .btn {
  margin-top: auto;
  align-self: flex-start;
  min-height: 44px;
  padding: 0 16px;
  background: transparent;
  color: var(--wine);
  box-shadow: none;
  padding-left: 0;
}

.product .btn:hover {
  color: #742f29;
}

.price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--wine);
  letter-spacing: 0.01em;
  margin: 0;
}

.product .price {
  font-size: 1.35rem;
}

/* Flavor catalog */
.menu {
  background: var(--foam);
}

.menu-block + .menu-block {
  margin-top: 72px;
  padding-top: 72px;
  border-top: 1px solid var(--line);
}

#sabores-keto,
#sabores-avena,
#sabores-trad,
#empresas {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.menu-intro h3 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  margin: 10px 0 12px;
}

.menu-intro p {
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 28px;
}

.flavor-grid {
  display: grid;
  gap: 16px;
}

.flavor-card {
  background: var(--cream);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.flavor-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  outline: none;
  background: #f4eee4;
}

.flavor-card-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.flavor-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
}

.flavor-card-body p:not(.price) {
  color: var(--muted);
  font-size: 0.88rem;
}

.fine {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 20px;
}

.gift-prices li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  grid-template-columns: none;
}

.gift-prices strong {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--wine);
  white-space: nowrap;
}

.corporate {
  background: var(--cream);
}

.corporate-grid {
  display: grid;
  gap: 12px;
}

.corporate-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
}

.corporate-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  outline: none;
}

.corporate-cta {
  margin-top: 28px;
}

.place-extra {
  margin-top: 14px;
}

/* Keto */
.keto {
  background: var(--cacao);
  color: var(--foam);
}

.keto .eyebrow {
  color: var(--honey);
}

.keto h2 {
  color: var(--foam);
}

.keto .lede {
  color: rgba(243, 235, 224, 0.78);
}

.keto-layout {
  display: grid;
  gap: 32px;
}

.keto-layout img {
  width: 100%;
  border-radius: 22px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.flavor-list {
  display: grid;
  gap: 12px;
}

.flavor {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 16px;
  border-radius: 14px;
  background: rgba(251, 247, 240, 0.05);
  box-shadow: inset 0 0 0 1px rgba(251, 247, 240, 0.08);
}

.swatch {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-top: 6px;
}

.flavor h3 {
  font-size: 1.2rem;
  color: var(--foam);
}

.flavor p {
  color: rgba(243, 235, 224, 0.7);
  font-size: 0.92rem;
  margin-top: 4px;
}

/* Quote */
.quote {
  position: relative;
  min-height: 72svh;
  display: grid;
  place-items: end start;
  color: var(--foam);
  isolation: isolate;
}

.quote img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  outline: none;
}

.quote::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(20, 10, 8, 0.15), rgba(20, 10, 8, 0.72));
}

.quote figure {
  width: min(calc(100% - 40px), 820px);
  margin: 0 auto 72px;
}

.quote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  line-height: 1.25;
  font-weight: 400;
}

.quote figcaption {
  margin-top: 18px;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(251, 247, 240, 0.75);
}

/* Gifts */
.gifts {
  background: var(--foam);
}

.gifts-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}

.gifts-copy h2 {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  margin: 10px 0 16px;
}

.gifts-copy p {
  color: var(--muted);
}

.perk-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
}

.perk-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: var(--cacao);
  font-weight: 500;
}

.perk-list.gift-prices li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  grid-template-columns: unset;
}

.perk-list.gift-prices strong {
  flex-shrink: 0;
}

.gifts-visual img {
  width: 100%;
  border-radius: 22px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

/* Places */
.places-grid {
  display: grid;
  gap: 16px;
}

.place-card {
  background: var(--foam);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.place-card h3 {
  font-size: 1.35rem;
  margin: 8px 0 8px;
}

.place-card p {
  color: var(--muted);
}

.place-card a {
  color: var(--wine);
  font-weight: 600;
  text-decoration: none;
}

.place-card a:hover {
  text-decoration: underline;
}

.store-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.store-list span {
  background: var(--paper);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
}

/* Order */
.order {
  background: var(--cacao);
  color: var(--foam);
}

.order .eyebrow {
  color: var(--honey);
}

.order h2 {
  color: var(--foam);
}

.order .lede {
  color: rgba(243, 235, 224, 0.78);
}

.order-grid {
  display: grid;
  gap: 32px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.field label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(243, 235, 224, 0.72);
}

.field input,
.field select,
.field textarea {
  font: inherit;
  color: var(--ink);
  background: var(--foam);
  border: 0;
  border-radius: 12px;
  padding: 14px 14px;
  min-height: 48px;
  width: 100%;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--honey);
  outline-offset: 2px;
}

.order-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: rgba(251, 247, 240, 0.05);
  box-shadow: inset 0 0 0 1px rgba(251, 247, 240, 0.1);
  border-radius: 18px;
  padding: 22px;
}

.contact-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.contact-card p,
.contact-card a {
  color: rgba(243, 235, 224, 0.8);
  text-decoration: none;
}

.phone {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--foam) !important;
  display: inline-block;
  margin: 8px 0;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(251, 247, 240, 0.2);
  color: var(--foam);
}

.socials a:hover {
  background: rgba(251, 247, 240, 0.08);
}

.socials svg {
  width: 18px;
  height: 18px;
}

/* Footer */
.site-footer {
  background: #1a100c;
  color: rgba(243, 235, 224, 0.72);
  padding: 36px 0 28px;
  font-size: 0.9rem;
}

.footer-inner {
  width: min(calc(100% - 40px), var(--wide));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.site-footer a {
  color: var(--paper);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* Float WA */
.float-wa {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px -8px rgba(31, 107, 58, 0.7);
  text-decoration: none;
}

.float-wa svg {
  width: 28px;
  height: 28px;
}

.float-wa span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(4px);
  animation: none;
}

.reveal.is-visible {
  animation: fade-up 560ms var(--ease) forwards;
}

.hero .reveal,
.hero .reveal.is-visible {
  animation: fade-up 700ms var(--ease) forwards;
}

.reveal.d1,
.hero .reveal.d1 {
  animation-delay: 80ms;
}
.reveal.d2,
.hero .reveal.d2 {
  animation-delay: 160ms;
}
.reveal.d3,
.hero .reveal.d3 {
  animation-delay: 240ms;
}

@keyframes fade-up {
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (min-width: 760px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .story-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
  }

  .keto-layout {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .gifts-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 64px;
  }

  .places-grid {
    grid-template-columns: 1fr 1fr;
  }

  .order-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }

  .nav .btn {
    margin-left: 8px;
  }

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

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

@media (min-width: 1080px) {
  .flavor-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 759px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 32px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms var(--ease), transform 200ms var(--ease);
  }

  .nav.is-open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .nav a,
  .nav .btn {
    width: 100%;
    justify-content: flex-start;
    font-size: 1.15rem;
    padding: 14px 4px;
  }

  .nav .btn {
    justify-content: center;
    margin-top: 12px;
  }

  .hero-content {
    padding-bottom: 56px;
  }

  section {
    padding: 64px 0;
  }
}

@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;
    filter: none;
  }
}
