:root {
  --bg-0: #05120c;
  --bg-1: #0c2418;
  --bg-2: #123727;
  --txt: #f2f8f5;
  --muted: #a8bdb2;
  --primary: #8bffb6;
  --primary-2: #3dd68c;
  --card: rgba(10, 32, 22, 0.72);
  --stroke: rgba(192, 255, 218, 0.2);
  --shadow: 0 24px 70px rgba(1, 20, 11, 0.5);
  --glow: 0 0 40px rgba(139, 255, 182, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: Inter, system-ui, sans-serif;
  color: var(--txt);
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(61, 214, 140, 0.12), transparent),
    radial-gradient(circle at 8% 14%, #1a5a3a 0, transparent 34%),
    radial-gradient(circle at 88% 18%, #2a6b4a 0, transparent 30%),
    linear-gradient(155deg, var(--bg-0), var(--bg-1) 45%, var(--bg-2));
  overflow-x: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 100;
  background: linear-gradient(90deg, var(--primary-2), var(--primary));
  box-shadow: 0 0 12px rgba(139, 255, 182, 0.6);
  transition: width 80ms linear;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: radial-gradient(#fff 0.45px, transparent 0.45px);
  background-size: 4px 4px;
  z-index: 2;
}

.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(55px);
  background: radial-gradient(circle, rgba(142, 255, 189, 0.22), transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 1;
}

.parallax-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 255, 182, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 255, 182, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

.layer {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  mix-blend-mode: screen;
  animation: float 16s ease-in-out infinite;
}

.layer-a {
  width: 42vw;
  height: 42vw;
  left: -12vw;
  top: 20vh;
  background: radial-gradient(circle, rgba(109, 255, 174, 0.28), transparent 70%);
}

.layer-b {
  width: 34vw;
  height: 34vw;
  right: -8vw;
  top: 10vh;
  background: radial-gradient(circle, rgba(109, 255, 231, 0.2), transparent 70%);
  animation-delay: -4s;
}

.layer-c {
  width: 52vw;
  height: 52vw;
  left: 22vw;
  bottom: -22vw;
  background: radial-gradient(circle, rgba(142, 255, 189, 0.2), transparent 70%);
  animation-delay: -8s;
}

.header {
  position: sticky;
  top: 1rem;
  margin: 1rem auto;
  width: min(1140px, calc(100% - 2rem));
  z-index: 50;
  padding: 0.7rem 1rem 0.7rem 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: top 300ms ease, box-shadow 300ms ease, background 300ms ease;
}

.header.is-scrolled {
  top: 0.5rem;
  box-shadow: var(--glow), var(--shadow);
  background: rgba(4, 18, 12, 0.82);
}

.glass {
  background: rgba(4, 20, 13, 0.55);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(14px);
  border-radius: 999px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--txt);
}

.brand-mark {
  border-radius: 10px;
  box-shadow: 0 0 0 1px var(--stroke), var(--glow);
}

.brand-text {
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
}

.brand-text em {
  display: block;
  font-style: normal;
  color: var(--primary);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.nav {
  display: flex;
  gap: 0.35rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  transition: color 200ms ease, background 200ms ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--txt);
  background: rgba(139, 255, 182, 0.1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  background: rgba(7, 24, 16, 0.6);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--txt);
  border-radius: 2px;
  transition: transform 250ms ease, opacity 250ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

main,
.footer {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
  position: relative;
  z-index: 4;
}

.hero {
  min-height: 96vh;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  padding-bottom: 3rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  font-size: 0.76rem;
  margin: 0;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 0 rgba(139, 255, 182, 0.6);
  animation: pulse-dot 2s ease infinite;
}

h1,
h2,
h3 {
  font-family: Syne, Inter, sans-serif;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.4rem, 5.2vw, 5.2rem);
  line-height: 0.95;
  margin: 0.6rem 0 1rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  letter-spacing: -0.02em;
}

.accent {
  background: linear-gradient(120deg, #d4ffe6 0%, var(--primary) 45%, var(--primary-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.swap-words {
  display: inline-grid;
  vertical-align: bottom;
}

.swap-words span {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(20px);
  animation: words 12s linear infinite;
}

.swap-words span:nth-child(2) {
  animation-delay: 4s;
}

.swap-words span:nth-child(3) {
  animation-delay: 8s;
}

.hero-copy {
  max-width: 58ch;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

.hero-metrics {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-metrics li {
  border: 1px solid var(--stroke);
  background: rgba(8, 28, 18, 0.55);
  border-radius: 0.9rem;
  padding: 0.65rem 0.9rem;
  min-width: 7rem;
}

.hero-metrics strong {
  display: block;
  font-family: Syne, sans-serif;
  font-size: 1.1rem;
  color: var(--primary);
}

.hero-metrics span {
  font-size: 0.78rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  margin-top: 1.7rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-icon {
  width: 1.1rem;
  height: 1.1rem;
}

.btn-primary {
  background: linear-gradient(130deg, var(--primary), var(--primary-2));
  color: #062314;
  box-shadow: var(--shadow), var(--glow);
}

.btn-ghost {
  color: var(--txt);
  background: rgba(7, 24, 16, 0.55);
}

.btn-ghost:hover {
  border-color: rgba(139, 255, 182, 0.45);
}

.hero-visual {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  position: relative;
  border: 1px solid var(--stroke);
  background:
    radial-gradient(circle at 35% 35%, rgba(144, 255, 198, 0.22), rgba(11, 30, 20, 0.55) 62%),
    conic-gradient(from 210deg at 50% 50%, rgba(61, 214, 140, 0.08), transparent 40%, rgba(139, 255, 182, 0.12));
  box-shadow: var(--glow), inset 0 0 80px rgba(139, 255, 182, 0.06);
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(182, 255, 214, 0.15);
  pointer-events: none;
}

.hero-ring-1 {
  inset: -0.5rem;
  animation: spin 30s linear infinite;
}

.hero-ring-2 {
  inset: -1.2rem;
  border-style: dashed;
  opacity: 0.5;
  animation: spin 40s linear infinite reverse;
}

.orbit {
  position: absolute;
  inset: 1rem;
  border: 1px dashed rgba(182, 255, 214, 0.38);
  border-radius: 50%;
}

.orbit-b {
  inset: 3.2rem;
  animation: spin 18s linear infinite reverse;
}

.orbit-a {
  animation: spin 22s linear infinite;
}

.planet {
  position: absolute;
  width: 34%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  left: 33%;
  top: 33%;
  background: radial-gradient(circle at 28% 22%, rgba(221, 255, 239, 0.9), rgba(87, 220, 141, 0.7) 42%, rgba(29, 91, 60, 0.75));
  box-shadow: 0 0 70px rgba(125, 255, 183, 0.35);
  animation: breathe 4.5s ease-in-out infinite;
}

.pulse-ring {
  position: absolute;
  inset: 28%;
  border: 1px solid rgba(169, 255, 211, 0.52);
  border-radius: 50%;
  animation: pulse 3.2s ease-out infinite;
}

.hero-chip {
  position: absolute;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid var(--stroke);
  background: rgba(6, 22, 14, 0.75);
  backdrop-filter: blur(8px);
  white-space: nowrap;
  animation: float-chip 5s ease-in-out infinite;
}

.hero-chip-a { top: 8%; right: -4%; animation-delay: 0s; }
.hero-chip-b { bottom: 18%; left: -8%; animation-delay: -1.5s; }
.hero-chip-c { top: 42%; right: -12%; animation-delay: -3s; }

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-hint svg {
  width: 1.2rem;
  height: 1.2rem;
  opacity: 0.7;
  animation: bounce 2s ease infinite;
}

.section {
  padding: 5.5rem 0;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-2);
  margin: 0 0 0.75rem;
  font-weight: 600;
}

.about p {
  color: var(--muted);
  line-height: 1.8;
  max-width: 72ch;
}

.section-copy {
  color: var(--muted);
  max-width: 70ch;
  line-height: 1.8;
}

.stat-grid,
.services-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}

.stat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: stretch;
}

.story-text p {
  color: var(--muted);
  line-height: 1.8;
}

.story-image {
  margin: 0;
  padding: 0.5rem;
  overflow: hidden;
  position: relative;
}

.story-image img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.8rem;
  display: block;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1), filter 400ms ease;
}

.story-image img {
  min-height: 100%;
}

.story-image:hover img,
.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.1) brightness(1.05);
}

.image-tag,
.gallery-item figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(5, 18, 12, 0.78);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(8px);
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 300ms ease, transform 300ms ease;
}

.story-image:hover .image-tag,
.gallery-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

.card {
  border: 1px solid var(--stroke);
  background: var(--card);
  border-radius: 1.1rem;
  padding: 1.2rem;
  box-shadow: var(--shadow);
  transition: border-color 300ms ease, box-shadow 300ms ease;
}

.card:hover {
  border-color: rgba(139, 255, 182, 0.35);
  box-shadow: var(--shadow), var(--glow);
}

.stat-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.65rem;
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: var(--primary);
  background: rgba(139, 255, 182, 0.1);
  border: 1px solid var(--stroke);
}

.service {
  min-height: 118px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 255, 182, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity 300ms ease;
}

.service:hover::before {
  opacity: 1;
}

.service span {
  position: absolute;
  top: 0.5rem;
  right: 0.8rem;
  font-size: 2.6rem;
  font-weight: 800;
  color: rgba(192, 255, 221, 0.12);
  font-family: Syne, sans-serif;
}

.gallery-grid {
  margin-top: 1.6rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.gallery-item {
  margin: 0;
  padding: 0.5rem;
  min-height: 220px;
  overflow: hidden;
  position: relative;
}

.gallery-item:nth-child(1) { grid-column: span 7; min-height: 340px; }
.gallery-item:nth-child(2) { grid-column: span 5; min-height: 340px; }
.gallery-item:nth-child(3) { grid-column: span 4; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 4; }
.gallery-item:nth-child(6) { grid-column: span 6; min-height: 300px; }
.gallery-item:nth-child(7) { grid-column: span 6; min-height: 300px; }

.approach-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 1.5rem;
  margin-top: 2.1rem;
  align-items: stretch;
}

.approach-intro h3 {
  margin-bottom: 0.5rem;
}

.approach-intro p {
  margin: 0 0 1.1rem;
  color: var(--muted);
  line-height: 1.8;
}

.approach-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.approach-bullets li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.approach-bullets span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: rgba(139, 255, 182, 0.14);
  color: var(--primary);
  font-size: 0.78rem;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 0.3rem;
  padding-inline: 0.2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  inset-inline: 1.35rem auto;
  top: 1.3rem;
  bottom: 1.5rem;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--primary-2), transparent);
  opacity: 0.4;
}

.step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  border: 1px solid var(--stroke);
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(10, 35, 22, 0.7);
  position: relative;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.step:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 255, 182, 0.5);
  background: rgba(10, 35, 22, 0.9);
  box-shadow: var(--glow);
}

.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  margin-top: 0.2rem;
}

.step-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary), var(--primary-2));
  box-shadow: 0 0 0 6px rgba(139, 255, 182, 0.2);
}

.step-dot-final {
  box-shadow: 0 0 0 8px rgba(139, 255, 182, 0.32);
}

.step-num {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
}

.step-body h3 {
  margin: 0 0 0.25rem;
}

.step-body p {
  color: var(--muted);
  margin: 0;
}

.commitment-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
}

.commitment-grid p {
  color: var(--muted);
  line-height: 1.8;
}

.cta-band {
  margin-bottom: 1rem;
}

.cta-inner {
  border: 1px solid var(--stroke);
  border-radius: 1.4rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  background:
    linear-gradient(135deg, rgba(61, 214, 140, 0.14), transparent 50%),
    rgba(8, 28, 18, 0.85);
  box-shadow: var(--shadow), var(--glow);
}

.cta-inner h2 {
  margin-bottom: 0.5rem;
}

.cta-inner p {
  color: var(--muted);
  margin: 0;
  max-width: 48ch;
  line-height: 1.7;
}

.footer {
  padding: 0 0 3rem;
}

.footer-card {
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(20, 56, 38, 0.75), rgba(8, 22, 15, 0.9));
  border-radius: 1.4rem;
  padding: clamp(1.4rem, 3vw, 2rem);
}

.footer-brand {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer-brand img {
  border-radius: 12px;
  flex-shrink: 0;
}

.footer-brand h2 {
  margin-bottom: 0.35rem;
}

.footer-brand p {
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.footer-address {
  color: var(--muted);
  margin: 0 0 1rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-copy {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(168, 189, 178, 0.7);
}

.back-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--stroke);
  background: rgba(6, 22, 14, 0.9);
  color: var(--primary);
  cursor: pointer;
  z-index: 60;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  transition: opacity 250ms ease, transform 250ms ease;
}

.back-top svg {
  width: 1.2rem;
  height: 1.2rem;
}

.back-top:hover {
  transform: translateY(-3px);
}

.back-top[hidden] {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes words {
  0%, 8% { opacity: 0; transform: translateY(20px); }
  10%, 28% { opacity: 1; transform: translateY(0); }
  32%, 100% { opacity: 0; transform: translateY(-12px); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  from { transform: scale(0.7); opacity: 0.75; }
  to { transform: scale(1.45); opacity: 0; }
}

@keyframes breathe {
  0%, 100% { transform: scale(0.95); }
  50% { transform: scale(1.05); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-20px) translateX(12px); }
}

@keyframes float-chip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(139, 255, 182, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(139, 255, 182, 0); }
  100% { box-shadow: 0 0 0 0 rgba(139, 255, 182, 0); }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 0.5rem;
    min-height: auto;
    padding-bottom: 4rem;
  }

  .hero-visual {
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-chip-a { right: 0; }
  .hero-chip-c { right: -2%; }

  .story-grid,
  .commitment-grid,
  .approach-layout {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item:nth-child(n) {
    grid-column: auto;
    min-height: 260px;
  }

  .stat-grid,
  .services-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    display: none;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .header {
    border-radius: 1.2rem;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    padding: 0.5rem 0 0.25rem;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    width: 100%;
  }

  .scroll-hint {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
