:root {
  color-scheme: dark;
  --bg: #090806;
  --bg-2: #11100d;
  --panel: #17140f;
  --panel-2: #211c14;
  --ink: #fff7e8;
  --muted: #cfc4ad;
  --soft: #8e8575;
  --line: rgba(255, 247, 232, 0.14);
  --gold: #d8ad46;
  --gold-bright: #ffd66f;
  --teal: #6bdde2;
  --coral: #ff725c;
  --violet: #9b86ff;
  --shadow: rgba(0, 0, 0, 0.45);
  --max: 1180px;
  --radius: 8px;
  --header-h: 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.section,
.contact-section,
.hero,
.intro-strip {
  scroll-margin-top: calc(var(--header-h) + 1.5rem);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--gold-bright);
  color: #120f09;
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 15;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0 5vw;
  background: rgba(9, 8, 6, 0.78);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(9, 8, 6, 0.92);
  border-bottom-color: var(--line);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: clamp(122px, 12vw, 156px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 0.85rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  border-radius: var(--radius);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  padding: 0;
  place-items: center;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 3px auto;
}

.hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + clamp(2.8rem, 6vh, 5rem)) 5vw clamp(4.5rem, 7vh, 5.5rem);
  isolation: isolate;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 8, 6, 0.94) 0%, rgba(9, 8, 6, 0.72) 42%, rgba(9, 8, 6, 0.16) 100%),
    linear-gradient(0deg, rgba(9, 8, 6, 0.98) 0%, rgba(9, 8, 6, 0.04) 42%, rgba(9, 8, 6, 0.64) 100%);
  pointer-events: none;
}

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

.hero-frame {
  position: absolute;
  inset: 0;
  background-image: url("/assets/rift-hero-background-reel-poster.webp?v=1");
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  filter: brightness(0.46) saturate(0.82) contrast(1.06);
}

.hero-reel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  filter: brightness(0.5) saturate(0.85) contrast(1.08);
  transform: scale(1.035);
}

.hero-strip {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: 0.8rem;
  width: min(58vw, 780px);
  opacity: 0.2;
}

.hero-strip img {
  height: clamp(120px, 16vw, 220px);
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 80px var(--shadow);
}

.strip-a {
  right: -7vw;
  top: 21vh;
  transform: rotate(-3deg);
  animation: drift-left 15s ease-in-out infinite alternate;
}

.strip-b {
  right: 5vw;
  bottom: 11vh;
  transform: rotate(4deg);
  animation: drift-right 17s ease-in-out infinite alternate;
}

.timeline-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 214, 111, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 221, 226, 0.12) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, transparent, black 22%, black 78%, transparent);
  opacity: 0.34;
}

.hero-copy {
  width: min(900px, 100%);
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker,
.tag {
  margin: 0 0 1rem;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-lede {
  max-width: 660px;
  margin: 1.6rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  color: var(--ink);
  cursor: pointer;
}

.button-primary {
  background: var(--gold-bright);
  color: #140f05;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffe39b;
  outline: none;
}

.button-secondary {
  border-color: rgba(255, 247, 232, 0.32);
  background: rgba(255, 247, 232, 0.06);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--teal);
  outline: none;
}

.hero-status {
  position: absolute;
  right: 5vw;
  bottom: 2.2vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.4rem;
  max-width: min(520px, 90vw);
}

.hero-status span {
  border: 1px solid rgba(255, 247, 232, 0.2);
  background: rgba(9, 8, 6, 0.62);
  color: var(--muted);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}

.intro-strip > div {
  min-height: 128px;
  padding: 1.5rem 5vw;
  border-right: 1px solid var(--line);
}

.intro-strip > div:last-child {
  border-right: 0;
}

.metric {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--teal);
  font-size: clamp(1.4rem, 3vw, 2.15rem);
  line-height: 1;
  font-weight: 950;
}

.intro-strip span:last-child {
  color: var(--muted);
  font-size: 0.96rem;
}

.section {
  width: min(var(--max), calc(100% - 10vw));
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  font-size: clamp(2.1rem, 5vw, 4.7rem);
}

.section-heading p,
.about-copy p,
.contact-copy p,
.card-copy p,
.service-card p {
  color: var(--muted);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.video-card,
.service-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--panel) 88%, black);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

.video-card {
  overflow: hidden;
}

.video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-shell img,
.video-shell iframe,
.video-shell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.video-shell video {
  display: block;
  background: #000;
}

.reel-player video {
  padding-bottom: 54px;
  object-fit: contain;
}

.reel-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 40px auto minmax(120px, 1fr) 40px;
  align-items: center;
  gap: 0.7rem;
  min-height: 54px;
  padding: 0.55rem 0.7rem;
  background: linear-gradient(180deg, rgba(9, 8, 6, 0.55), rgba(9, 8, 6, 0.92));
  border-top: 1px solid rgba(255, 247, 232, 0.12);
}

.reel-control-button {
  display: grid;
  place-items: center;
  width: 36px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 247, 232, 0.2);
  border-radius: 999px;
  background: rgba(255, 247, 232, 0.08);
  color: var(--ink);
  cursor: pointer;
}

.reel-control-button:hover,
.reel-control-button:focus-visible {
  border-color: var(--gold-bright);
  background: rgba(214, 166, 72, 0.18);
  outline: none;
}

.play-icon {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid currentColor;
}

.reel-control-button.is-playing .play-icon {
  width: 13px;
  height: 14px;
  margin-left: 0;
  border: 0;
  background:
    linear-gradient(90deg, currentColor 0 35%, transparent 35% 65%, currentColor 65% 100%);
}

.sound-icon {
  position: relative;
  width: 17px;
  height: 14px;
  border-left: 6px solid currentColor;
}

.sound-icon::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 3px;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
}

.reel-control-button.is-muted .sound-icon::after {
  content: "";
  position: absolute;
  left: 7px;
  top: -2px;
  width: 2px;
  height: 18px;
  background: var(--gold-bright);
  transform: rotate(45deg);
}

.reel-time {
  min-width: 84px;
  color: rgba(255, 247, 232, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.reel-timeline {
  width: 100%;
  min-width: 0;
  accent-color: var(--gold-bright);
  cursor: pointer;
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: clamp(64px, 9vw, 92px);
  aspect-ratio: 1;
  border-radius: 999px;
  border: 1px solid rgba(255, 247, 232, 0.32);
  background: rgba(9, 8, 6, 0.7);
  color: var(--ink);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.play-button span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid var(--gold-bright);
}

.video-card:hover .play-button,
.video-card:focus-within .play-button {
  border-color: var(--gold-bright);
  transform: translate(-50%, -50%) scale(1.04);
}

.card-copy {
  padding: 1.35rem;
}

.card-copy h3,
.service-card h3 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.card-copy p:last-child,
.service-card p:last-child {
  margin-bottom: 0;
}

.work-tiles {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.work-tile {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
}

.work-tile img,
.work-tile video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  transition: transform 300ms ease, filter 300ms ease;
}

.work-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.68), transparent 58%);
}

.work-tile span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.work-tile:hover img,
.work-tile:hover video,
.work-tile:focus-visible img,
.work-tile:focus-visible video {
  transform: scale(1.05);
  filter: saturate(1.12);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  min-height: 310px;
  padding: 1.35rem;
}

.service-card:nth-child(1) {
  border-top-color: var(--gold-bright);
}

.service-card:nth-child(2) {
  border-top-color: var(--teal);
}

.service-card:nth-child(3) {
  border-top-color: var(--coral);
}

.service-card:nth-child(4) {
  border-top-color: var(--violet);
}

.service-index {
  display: block;
  margin-bottom: clamp(2.2rem, 6vw, 4.5rem);
  color: var(--soft);
  font-size: 0.82rem;
  font-weight: 900;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media::before {
  content: "";
  position: absolute;
  inset: 1rem -1rem -1rem 1rem;
  border: 1px solid rgba(255, 214, 111, 0.42);
  z-index: -1;
}

.about-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.production-section {
  border-top: 1px solid var(--line);
}

.production-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  align-items: stretch;
  gap: 1rem;
  margin-bottom: 1rem;
}

.production-feature video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #000;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
}

.production-feature-copy {
  display: grid;
  align-content: end;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--panel) 88%, black);
}

.production-feature-copy h3 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.45rem, 3vw, 2.45rem);
  line-height: 1.02;
  letter-spacing: 0;
}

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

.production-feature-copy p:last-child {
  margin-bottom: 0;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(220px, 20vw);
  gap: 1rem;
}

.instagram-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--ink);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
}

.instagram-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 38%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.08) 64%);
}

.instagram-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease, filter 320ms ease;
}

.instagram-card:hover img,
.instagram-card:focus-visible img {
  transform: scale(1.05);
  filter: saturate(1.1) contrast(1.04);
}

.instagram-card:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.instagram-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.instagram-card-wide {
  grid-column: span 2;
}

.instagram-card-tall {
  grid-row: span 2;
}

.ig-badge,
.ig-copy {
  position: absolute;
  z-index: 1;
}

.ig-badge {
  top: 0.9rem;
  left: 0.9rem;
  border: 1px solid rgba(255, 247, 232, 0.32);
  border-radius: 999px;
  background: rgba(9, 8, 6, 0.68);
  color: var(--gold-bright);
  padding: 0.28rem 0.62rem;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  backdrop-filter: blur(10px);
}

.ig-copy {
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.25rem;
}

.ig-copy strong {
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  line-height: 1;
  letter-spacing: 0;
}

.ig-copy span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.58fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
  width: min(var(--max), calc(100% - 10vw));
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 8rem) 0;
  border-top: 1px solid var(--line);
}

.email-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--gold-bright);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
}

.contact-form span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 247, 232, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--ink);
  padding: 0.86rem 0.9rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(107, 221, 226, 0.55);
  outline-offset: 2px;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 5vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #050504;
}

.footer-brand img {
  width: 132px;
}

.site-footer p {
  margin: 0;
}

.site-footer a:last-child {
  color: var(--gold-bright);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@keyframes drift-left {
  from {
    translate: 0 0;
  }
  to {
    translate: -4vw 1.2vh;
  }
}

@keyframes drift-right {
  from {
    translate: 0 0;
  }
  to {
    translate: 3vw -1.4vh;
  }
}

@media (max-width: 1040px) {
  .section-heading,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

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

  .service-card {
    min-height: 260px;
  }
}

@media (max-width: 800px) {
  :root {
    --header-h: 82px;
  }

  .site-header {
    padding-inline: 1rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 1rem auto 1rem;
    display: grid;
    gap: 0.35rem;
    padding: 0.6rem;
    background: rgba(9, 8, 6, 0.97);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    min-height: 48px;
  }

  .hero {
    min-height: 82svh;
    padding-inline: 1rem;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(9, 8, 6, 0.94) 0%, rgba(9, 8, 6, 0.68) 100%),
      linear-gradient(0deg, rgba(9, 8, 6, 0.98) 0%, rgba(9, 8, 6, 0.08) 56%, rgba(9, 8, 6, 0.7) 100%);
  }

  .hero-strip {
    width: 94vw;
    opacity: 0.56;
  }

  .strip-a {
    right: -45vw;
    top: 16vh;
  }

  .strip-b {
    right: -34vw;
    bottom: 12vh;
  }

  .hero-status {
    display: none;
  }

  .intro-strip {
    grid-template-columns: 1fr;
  }

  .intro-strip > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-strip > div:last-child {
    border-bottom: 0;
  }

  .section,
  .contact-section {
    width: calc(100% - 2rem);
  }

  .featured-grid,
  .work-tiles,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .instagram-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(260px, 68vw);
  }

  .production-feature video {
    min-height: 250px;
  }

  .instagram-card-large,
  .instagram-card-wide,
  .instagram-card-tall {
    grid-row: auto;
    grid-column: auto;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: clamp(2.45rem, 15vw, 4rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .contact-section {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
