:root {
  /* Brand palette */
  --bone: oklch(0.965 0 0);
  --paper: oklch(0.94 0 0);
  --ink: oklch(0.16 0 0);
  --moss: oklch(0.34 0.025 155);
  --rust: oklch(0.66 0.17 48);

  /* Layout and motion tokens */
  --line: rgba(17, 17, 17, 0.1);
  --line-light: rgba(245, 243, 239, 0.16);
  --text-soft: oklch(0.45 0 0);
  --text-invert: rgba(245, 243, 239, 0.75);
  --radius-xl: 1.5rem;
  --radius-lg: 1rem;
  --container: min(1400px, calc(100vw - 2rem));
  --section-y: clamp(4.8rem, 8vw, 6.3rem);
  --section-head-space: clamp(2.25rem, 4vw, 2.8rem);
  --copy-width: 34rem;
  --copy-leading: 1.7;
  --shadow-soft: 0 24px 60px rgba(17, 17, 17, 0.08);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --image-zoom-duration: 2.2s;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-locked {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background-color 220ms ease, backdrop-filter 220ms ease, border-color 220ms ease;
}

.site-header.is-solid {
  background: rgba(17, 17, 17, 0.6);
  border-bottom: 1px solid rgba(245, 243, 239, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  color: var(--bone);
  mix-blend-mode: difference;
}

.brand-name,
h1,
h2,
h3,
.footer-brand h3,
.quote-card blockquote,
.marquee-track {
  font-family: "Inter Tight", sans-serif;
  letter-spacing: -0.035em;
}

.brand-name {
  font-size: 0.95rem;
  font-weight: 800;
}

.brand-tag {
  margin-top: 0.15rem;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.7;
}

.site-nav {
  display: none;
  position: fixed;
  top: 5rem;
  left: 50%;
  z-index: 80;
  width: min(18rem, calc(100vw - 3rem));
  gap: 0.45rem;
  padding: 1.15rem;
  border: 1px solid rgba(245, 243, 239, 0.18);
  border-radius: 1.2rem;
  background: rgba(17, 17, 17, 0.82);
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.42);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
}

.menu-backdrop {
  display: none;
}

.site-nav a,
.footer-title,
.section-kicker,
.card-top span,
.detail-item span,
.hero-footer,
.status-pill,
.footer-bottom {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.site-nav a {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: 0.7rem;
  color: var(--bone);
  opacity: 0.78;
  transition: background-color 180ms ease, opacity 180ms ease;
}

.site-nav {
  justify-self: center;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(245, 243, 239, 0.1);
  opacity: 1;
}

.menu-toggle {
  justify-self: end;
  border: 1px solid rgba(245, 243, 239, 0.45);
  background: transparent;
  color: var(--bone);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.65rem;
}

.site-header.menu-open .site-nav {
  display: grid;
}

.site-header.menu-open .brand,
.site-header.menu-open .menu-toggle {
  position: relative;
  z-index: 90;
}

.site-header.menu-open + .menu-backdrop {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(17, 17, 17, 0.36);
  backdrop-filter: blur(2px);
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--bone);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 500;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}

.text-link:hover,
.text-link:focus-visible,
.site-nav a:hover,
.site-nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  transform: translateY(-1px);
}

.button-outline {
  border-color: rgba(245, 243, 239, 0.45);
  background: transparent;
  color: var(--bone);
  mix-blend-mode: difference;
}

.button-outline:hover,
.button-outline:focus-visible {
  background: rgba(245, 243, 239, 0.1);
}

.button-dark {
  background: var(--ink);
  color: var(--bone);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--moss);
}

.button-light {
  background: transparent;
  border-color: rgba(17, 17, 17, 0.28);
}

.button-light:hover,
.button-light:focus-visible {
  background: rgba(17, 17, 17, 0.05);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--bone);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.56) 0%, rgba(17, 17, 17, 0.34) 44%, rgba(17, 17, 17, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: min(48rem, calc(100vw - 2rem));
  margin: 0 auto;
  padding: 8rem 0 6rem;
  text-align: center;
}

.centered {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(245, 243, 239, 0.86);
}

.hero .section-kicker.centered {
  color: rgba(245, 243, 239, 0.88);
}

.centered span {
  width: 1.5rem;
  height: 1px;
  background: var(--rust);
}

h1 {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.05;
}

h1 em,
h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--rust);
}

.hero-lead,
.section-support,
.feature-copy,
.stack-copy p,
.info-card p,
.gallery-copy p,
.faq-intro p,
.faq-body p,
.final-cta p,
.footer-brand p {
  line-height: var(--copy-leading);
}

.hero-lead {
  width: min(32rem, 100%);
  margin: 1.5rem auto 0;
  color: var(--text-invert);
  font-size: 0.84rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: center;
  margin-top: 2.35rem;
}

.hero-footer {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.5rem;
  border-top: 1px solid var(--line-light);
  background: rgba(17, 17, 17, 0.24);
  backdrop-filter: blur(12px);
  color: rgba(245, 243, 239, 0.72);
}

.hero-footer span:nth-child(2) {
  display: none;
}

.section {
  padding: var(--section-y) 0;
}

/* Shared section shells */
.section-light {
  background: var(--bone);
}

.section-paper {
  background: var(--paper);
}

.section-dark {
  background: var(--ink);
  color: var(--bone);
}

.section-how {
  padding-bottom: 0;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: var(--section-head-space);
}

.section-kicker {
  margin: 0 0 1.5rem;
  color: var(--text-soft);
}

.section-dark .section-kicker,
.section-dark .card-top span {
  color: rgba(245, 243, 239, 0.6);
}

h2 {
  margin: 0;
  font-size: 2.15rem;
  line-height: 1;
  font-weight: 800;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
  padding: 0.65rem 0.95rem;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 999px;
}

.status-pill span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--rust);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1); }
}

/* Next experience */
.feature-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--bone);
  box-shadow: var(--shadow-soft);
}

.feature-media {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  min-height: 0;
}

.feature-media img {
  min-height: 0;
  transform: scale(1) translate3d(0, 0, 0);
  transform-origin: center center;
  backface-visibility: hidden;
  will-change: transform;
  transition: transform var(--image-zoom-duration) var(--ease-soft);
}

.feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(1.35rem, 3vw, 1.65rem);
  padding: 2.2rem 1.75rem;
}

.feature-button {
  justify-content: space-between;
  width: 100%;
  min-height: 3.3rem;
  padding-inline: 1.4rem;
}

.feature-content h3,
.gallery-copy h3,
.info-card h3 {
  margin: 0;
  font-size: 2.15rem;
  line-height: 1;
  font-weight: 800;
}

.feature-copy {
  margin: 0.9rem 0 0;
  color: var(--text-soft);
  max-width: 27rem;
  font-size: 0.95rem;
}

.feature-includes {
  margin: -0.65rem 0 0;
  color: var(--text-soft);
  font-size: 0.78rem;
  line-height: 1.55;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 2.7rem;
  row-gap: 1.45rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.detail-item strong {
  display: block;
  margin-top: 0.5rem;
  font-family: "Inter Tight", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.detail-item.highlight strong {
  color: var(--rust);
}

.split-layout,
.faq-layout,
.footer-grid,
.universe-grid {
  display: grid;
  gap: 2rem;
}

/* About */
.media-block {
  overflow: hidden;
  border-radius: var(--radius-xl);
  min-height: 23rem;
}

.media-block img {
  transform: scale(1) translate3d(0, 0, 0);
  transform-origin: center center;
  backface-visibility: hidden;
  will-change: transform;
  transition: transform var(--image-zoom-duration) var(--ease-soft);
}

.feature-card:hover .feature-media img,
.feature-card.is-hovered .feature-media img,
.feature-card:focus-within .feature-media img {
  transform: scale(1.035) translate3d(0, 0, 0);
}

.split-layout:hover .media-block img,
.media-block.is-hovered img,
.split-layout:focus-within .media-block img,
.media-block:hover img {
  transform: scale(1.03) translate3d(0, 0, 0);
}

.text-block {
  align-self: center;
}

.stack-copy {
  margin-top: 1.9rem;
  max-width: var(--copy-width);
}

.stack-copy p,
.faq-intro p,
.faq-body p {
  margin: 0 0 1rem;
  color: var(--text-soft);
  font-size: 0.84rem;
}

.strong-copy {
  color: var(--ink) !important;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2.15rem;
}

.tag-list span {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  font-size: 0.75rem;
  font-weight: 500;
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.tag-list span:hover {
  transform: translateY(-1px);
  border-color: rgba(17, 17, 17, 0.28);
  background: rgba(255, 255, 255, 0.35);
}

/* Brand universe */
.brand-universe {
  border-top: 1px solid var(--line);
}

.universe-grid {
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--line);
}

.universe-card {
  min-height: 17rem;
  padding: 1.75rem;
  background: var(--bone);
  transition: background-color 220ms ease, transform 220ms ease;
}

.universe-card:hover {
  background: rgba(255, 255, 255, 0.44);
}

.universe-card span {
  display: inline-block;
  margin-bottom: 3.6rem;
  color: var(--text-soft);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.32em;
}

.universe-card h3 {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1;
}

.universe-card h3 small {
  display: inline-block;
  margin-left: 0.45rem;
  color: var(--rust);
  font-family: "Inter", sans-serif;
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  vertical-align: middle;
}

.universe-card p {
  max-width: 22rem;
  margin: 1rem 0 0;
  color: var(--text-soft);
  font-size: 0.84rem;
  line-height: var(--copy-leading);
}

/* How it works */
.cards-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(245, 243, 239, 0.12);
}

.info-card {
  background: var(--ink);
  padding: clamp(2rem, 5vw, 2.35rem) clamp(1.5rem, 4vw, 2rem) 2rem;
  transition: background-color 220ms ease, transform 220ms ease;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-top i {
  width: 2rem;
  height: 1px;
  background: var(--bone);
  opacity: 0.8;
}

.accent-line .card-top i {
  background: var(--rust);
}

.info-card h3 {
  margin-top: 3.1rem;
  color: var(--bone);
  font-size: 2.25rem;
}

.info-card p {
  color: rgba(245, 243, 239, 0.72);
  max-width: 19rem;
  font-size: 0.84rem;
}

.info-card:hover {
  background: rgba(245, 243, 239, 0.04);
}

/* Moving tagline */
.marquee-shell {
  overflow: hidden;
  margin-top: 4.2rem;
  padding: 1.45rem 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.section-how .marquee-shell {
  margin-top: 5.2rem;
}

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  font-size: 3rem;
  font-weight: 800;
  color: var(--bone);
  white-space: nowrap;
  will-change: transform;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 2.7rem;
  flex: 0 0 auto;
  padding-right: 2.7rem;
  white-space: nowrap;
}

.arrow-mark,
.dash-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  flex: 0 0 auto;
}

.arrow-mark {
  color: var(--rust);
}

.dash-mark {
  color: rgba(245, 243, 239, 0.42);
}

.arrow-mark.accent {
  color: var(--rust);
}

.dash-mark.light {
  color: rgba(245, 243, 239, 0.42);
}

.arrow-mark::before {
  content: "\2192";
  font-size: 0.92em;
  line-height: 1;
}

.dash-mark::before {
  content: "\2014";
  font-size: 0.84em;
  line-height: 1;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: color 220ms ease, transform 220ms ease;
}

.text-link::after {
  content: "->";
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--moss);
}

/* Gallery */
.gallery-grid,
.testimonials-grid {
  display: grid;
  gap: 1rem;
}

.testimonials-grid {
  width: 100%;
  margin-inline: 0;
}

.gallery-card,
.quote-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.gallery-card {
  background: var(--paper);
}

.gallery-image {
  overflow: hidden;
  min-height: 20rem;
}

.gallery-image.short {
  min-height: 15.7rem;
}

.gallery-image img {
  transform: scale(1) translate3d(0, 0, 0);
  transform-origin: center center;
  backface-visibility: hidden;
  will-change: transform;
  transition: transform var(--image-zoom-duration) var(--ease-soft);
}

.gallery-card:hover .gallery-image img,
.gallery-card.is-hovered .gallery-image img,
.gallery-card:focus-within .gallery-image img,
.gallery-image:hover img {
  transform: scale(1.045) translate3d(0, 0, 0);
}

.gallery-copy {
  padding: 1.45rem 1.25rem 1.55rem;
}

.gallery-copy h3 {
  font-size: 1.9rem;
}

.gallery-copy p:last-child {
  margin: 0.65rem 0 0;
  color: var(--text-soft);
}

.section-support {
  max-width: 24rem;
  color: var(--text-soft);
  margin: 0;
  font-size: 0.84rem;
}

/* Testimonials */
.quote-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.75rem;
  background: var(--bone);
  border: 1px solid rgba(17, 17, 17, 0.1);
  transition: border-color 220ms ease;
}

.quote-card:hover {
  border-color: rgba(17, 17, 17, 0.22);
}

.quote-mark {
  font-family: "Inter Tight", sans-serif;
  font-size: 2.2rem;
  line-height: 0.9;
  color: var(--moss);
}

.quote-card blockquote {
  flex: 1;
  max-width: 100%;
  margin: 0.55rem 0 0;
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 500;
}

.quote-card figcaption {
  display: flex;
  align-items: flex-start;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.quote-card figcaption strong {
  display: block;
  font-size: 0.82rem;
}

.quote-card figcaption span {
  font-size: 0.55rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* FAQ */
.faq-list {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.faq-item {
  padding: 1.55rem 0;
  border-bottom: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item summary {
  list-style: none;
  display: grid;
  grid-template-columns: 2rem 1fr auto;
  gap: 1rem;
  align-items: start;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  font-family: "Inter Tight", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--text-soft);
}

.faq-item summary strong {
  font-family: "Inter Tight", sans-serif;
  font-size: 0.96rem;
  line-height: 1.12;
}

.faq-item summary::after {
  content: "+";
  font-family: "Inter Tight", sans-serif;
  font-size: 1.5rem;
  color: var(--text-soft);
  transition: transform 220ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-body {
  display: grid;
  gap: 1rem;
  padding: 1rem 0 0 2.5rem;
  max-width: 42rem;
}

/* Final CTA */
.final-cta {
  text-align: center;
}

.narrow {
  max-width: 64rem;
}

.final-cta p {
  width: min(39rem, 100%);
  margin: 1.8rem auto 0;
  color: var(--text-soft);
  font-size: 0.84rem;
}

.centered-actions {
  justify-content: center;
}

/* Footer */
.site-footer {
  background: var(--bone);
  border-top: 1px solid var(--line);
  padding: 3.9rem 0 1.8rem;
}

/* Floating WhatsApp button */
.floating-wa {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  padding: 0;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(17, 17, 17, 0.18);
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.floating-wa:hover,
.floating-wa:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(17, 17, 17, 0.22);
  background: #1fbe5d;
}

.floating-wa-icon {
  width: 1.55rem;
  height: 1.55rem;
  fill: currentColor;
}

.footer-grid {
  align-items: start;
}

.footer-brand h3 {
  margin: 0;
  font-size: 1.95rem;
  font-weight: 800;
}

.footer-brand p {
  font-size: 0.84rem;
}

.site-footer a {
  display: block;
  margin-top: 0.85rem;
  color: var(--text-soft);
  font-size: 0.84rem;
  transition: color 220ms ease, transform 220ms ease;
}

.footer-title {
  margin: 0 0 0.9rem;
  color: var(--text-soft);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  color: var(--text-soft);
}

body.js .reveal {
  /* Elementos .reveal aparecem suavemente quando entram na tela via IntersectionObserver. */
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@media (min-width: 720px) {
  /* A partir daqui o layout deixa de ser mobile-first e ganha colunas/menus horizontais. */
  :root {
    --container: min(1400px, calc(100vw - 6rem));
  }

  .nav-shell {
    display: flex;
    justify-content: space-between;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    transform: none;
  }

  .site-nav a {
    padding: 0;
    border-radius: 0;
    white-space: nowrap;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: transparent;
  }

  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 3.5rem;
  }

  .hero-footer {
    padding-inline: 2rem;
  }

  .hero-footer span:nth-child(2) {
    display: inline;
  }

  .section-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
  }

  .feature-card {
    grid-template-columns: minmax(0, 1.55fr) minmax(21rem, 0.95fr);
    align-items: stretch;
  }

  .feature-media {
    aspect-ratio: auto;
    position: relative;
    align-self: stretch;
    min-height: clamp(28rem, 38vw, 34rem);
  }

  .feature-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  .feature-content {
    padding: 2.6rem 2.7rem;
  }

  .split-layout {
    grid-template-columns: minmax(19rem, 1fr) minmax(0, 1fr);
    gap: 4.8rem;
  }

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

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

  .gallery-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: start;
  }

  .gallery-card {
    grid-column: span 5;
  }

  .gallery-large {
    grid-column: span 7;
    grid-row: span 2;
  }

  .gallery-large .gallery-image {
    min-height: 44rem;
  }

  .gallery-grid .gallery-card:nth-child(2) {
    grid-column: 8 / span 5;
    grid-row: 1;
  }

  .gallery-grid .gallery-card:nth-child(3) {
    grid-column: 8 / span 5;
    grid-row: 2;
  }

  .gallery-card:not(.gallery-large) .gallery-copy {
    min-height: 10rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .faq-layout {
    grid-template-columns: minmax(18rem, 0.42fr) minmax(0, 1fr);
    gap: 4.3rem;
  }

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

@media (min-width: 980px) {
  .hero-content {
    padding-top: 8rem;
    padding-bottom: 6.9rem;
  }

  h1 {
    font-size: 3.5rem;
  }

  .feature-content {
    padding: 2.6rem 3rem;
  }

  .quote-card blockquote {
    font-size: 1.05rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

@media (min-width: 1200px) {
  h1 {
    font-size: 4.2rem;
  }

  .quote-card {
    padding: 2rem;
  }

  .quote-card blockquote {
    max-width: 100%;
  }
}

.section.section-how {
  padding-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .marquee-track,
  .status-pill span,
  body.js .reveal,
  body.js .reveal.is-visible {
    animation: none !important;
    transition: none !important;
  }

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