:root {
  --cream: #fff8ed;
  --peach: #ffd7bf;
  --rose: #ff8fab;
  --berry: #7f3455;
  --mint: #bfe8dc;
  --sky: #b9ddff;
  --sun: #ffd36b;
  --ink: #3f3042;
  --muted: #5f4d5e;
  --card: rgba(255, 255, 255, 0.78);
  --line: rgba(127, 52, 85, 0.16);
  --shadow: 0 24px 70px rgba(89, 50, 80, 0.18);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Nunito', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 211, 107, 0.36), transparent 24rem),
    radial-gradient(circle at 88% 16%, rgba(185, 221, 255, 0.52), transparent 26rem),
    linear-gradient(135deg, #fff8ed 0%, #fff1f5 46%, #eef9f5 100%);
  min-height: 100vh;
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: auto;
  z-index: -1;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  filter: blur(0.5px);
  opacity: 0.5;
}

body::before {
  right: -6rem;
  bottom: 18%;
  background: repeating-radial-gradient(circle, rgba(255, 143, 171, 0.42) 0 0.6rem, transparent 0.65rem 1.4rem);
}

body::after {
  left: -8rem;
  bottom: -6rem;
  background: repeating-radial-gradient(circle, rgba(191, 232, 220, 0.56) 0 0.55rem, transparent 0.6rem 1.3rem);
}

.ambient-bubbles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient-dot,
.ambient-shape {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 999px;
  opacity: 0.68;
  filter: drop-shadow(0 12px 22px rgba(127, 52, 85, 0.16));
  animation: bubbleDrift var(--drift-duration, 13s) ease-in-out infinite, bubbleGlow 5s ease-in-out infinite;
}

.ambient-dot {
  width: var(--bubble-size, 1.5rem);
  height: var(--bubble-size, 1.5rem);
  border: 3px solid rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 0 0 1px rgba(127, 52, 85, 0.08);
  background: radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.95), var(--bubble-color, rgba(255, 143, 171, 0.62)) 58%, rgba(255, 255, 255, 0.24));
}

.ambient-shape {
  width: var(--bubble-size, 2.1rem);
  height: var(--bubble-size, 2.1rem);
  color: var(--shape-color, rgba(127, 52, 85, 0.72));
  background: rgba(255, 255, 255, 0.68);
  font-size: calc(var(--bubble-size, 2.1rem) * 0.55);
}

.dot-one {
  --bubble-size: 1.85rem;
  --bubble-color: rgba(255, 143, 171, 0.66);
  --drift-duration: 12s;
  left: 5%;
  top: 18%;
}

.dot-two {
  --bubble-size: 2.85rem;
  --bubble-color: rgba(185, 221, 255, 0.72);
  --drift-duration: 15s;
  right: 8%;
  top: 31%;
  animation-delay: -4s;
}

.dot-three {
  --bubble-size: 2.15rem;
  --bubble-color: rgba(191, 232, 220, 0.76);
  --drift-duration: 14s;
  left: 10%;
  bottom: 22%;
  animation-delay: -7s;
}

.dot-four {
  --bubble-size: 2.35rem;
  --bubble-color: rgba(255, 211, 107, 0.68);
  --drift-duration: 17s;
  right: 13%;
  bottom: 17%;
  animation-delay: -10s;
}

.shape-heart {
  --bubble-size: 2.65rem;
  --shape-color: rgba(229, 87, 120, 0.76);
  --drift-duration: 16s;
  left: 17%;
  top: 61%;
  animation-delay: -5s;
}

.shape-star {
  --bubble-size: 2.55rem;
  --shape-color: rgba(244, 166, 0, 0.78);
  --drift-duration: 18s;
  right: 19%;
  top: 12%;
  animation-delay: -9s;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: rgba(255, 248, 237, 0.82);
  border-bottom: 1px solid rgba(127, 52, 85, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 1rem 1rem 1.25rem 1rem;
  color: white;
  background: linear-gradient(135deg, var(--rose), #f97863);
  box-shadow: 0 12px 28px rgba(249, 120, 99, 0.26);
  font-family: 'Baloo 2', cursive;
  font-size: 1.55rem;
  font-weight: 800;
}

.brand strong,
h1,
h2,
h3 {
  font-family: 'Baloo 2', cursive;
  letter-spacing: -0.03em;
}

.brand strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.05;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 0.15rem;
}

nav {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 800;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
}

nav a:hover,
nav a:focus-visible,
nav a[aria-current='page'] {
  color: var(--berry);
  background: rgba(255, 143, 171, 0.14);
  outline: none;
}

.section-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(3rem, 8vw, 6.5rem) 0 3rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--berry);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 11ch;
  font-size: clamp(2.75rem, 6vw, 4.85rem);
  line-height: 0.95;
  margin-bottom: 1.15rem;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 0.96;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.05;
  margin-bottom: 0.55rem;
}

.hero-lede,
.section-shell p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.05rem;
}

.hero-lede {
  max-width: 42rem;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.6rem 0 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.82rem 1.15rem;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--berry), #e55778 52%, #ff8d69);
  box-shadow: 0 16px 34px rgba(127, 52, 85, 0.28);
}

.button.secondary {
  color: var(--berry);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

.micro-note,
.form-note,
.rate-box small,
.text-card small {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-card,
.soft-card,
.feature-card,
.rate-box,
.form-wrap,
.text-card {
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 29rem;
  padding: 2rem;
  border-radius: 2.4rem;
}

.hero-card::after,
.rate-box::after,
.form-wrap::after {
  content: '';
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.86) 0 28%, transparent 31%),
    radial-gradient(circle at 68% 62%, rgba(255, 143, 171, 0.42) 0 16%, transparent 18%),
    radial-gradient(circle at 35% 72%, rgba(185, 221, 255, 0.36) 0 13%, transparent 15%);
  opacity: 0.92;
  animation: softBob 7s ease-in-out infinite;
}

.hero-card::after {
  right: 2.1rem;
  bottom: 6.2rem;
  width: 4.6rem;
  height: 4.6rem;
}

.rate-box,
.form-wrap {
  position: relative;
  overflow: hidden;
}

.rate-box::after {
  left: 1rem;
  top: 1rem;
  width: 3.6rem;
  height: 3.6rem;
  animation-delay: -2.5s;
}

.form-wrap::after {
  right: -0.4rem;
  top: 1.2rem;
  width: 4rem;
  height: 4rem;
  animation-delay: -4s;
}

.rate-box > *,
.contact-form,
.form-success {
  position: relative;
  z-index: 1;
}

.sunburst {
  position: absolute;
  inset: 1.3rem 1.3rem auto auto;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sun) 0 35%, transparent 36%), conic-gradient(from 0deg, rgba(255, 211, 107, 0.8), transparent 12deg 28deg, rgba(255, 211, 107, 0.8) 30deg 42deg, transparent 44deg 62deg, rgba(255, 211, 107, 0.8) 64deg 76deg, transparent 78deg 360deg);
  opacity: 0.85;
}

.hero-illustration {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 16rem;
  margin-top: 1.2rem;
}

.storybook {
  position: relative;
  width: 12rem;
  height: 8.4rem;
  border-radius: 1.2rem 1.2rem 2.1rem 1.2rem;
  background: linear-gradient(135deg, #ffffff 0 48%, #fff1d6 49% 100%);
  border: 0.25rem solid rgba(127, 52, 85, 0.18);
  box-shadow: 0 20px 40px rgba(127, 52, 85, 0.16);
  transform: rotate(-4deg);
}

.storybook::before,
.storybook::after {
  content: '';
  position: absolute;
  top: 0.9rem;
  bottom: 0.9rem;
  width: 1px;
  background: rgba(127, 52, 85, 0.14);
  left: 50%;
}

.book-line {
  position: absolute;
  left: 1.1rem;
  top: 2rem;
  width: 3.8rem;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(255, 143, 171, 0.5);
}

.book-line.short {
  top: 3.3rem;
  width: 2.6rem;
  background: rgba(185, 221, 255, 0.8);
}

.book-heart {
  position: absolute;
  right: 2.1rem;
  top: 2.4rem;
  color: var(--rose);
  font-size: 2.1rem;
}

.bubble {
  position: absolute;
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--berry);
  background: white;
  box-shadow: 0 14px 30px rgba(127, 52, 85, 0.16);
  animation: floaty 4s ease-in-out infinite;
}

.bubble.heart {
  left: 1rem;
  top: 2rem;
  color: #e55778;
}

.bubble.star {
  right: 1rem;
  top: 4rem;
  color: #f4a600;
  animation-delay: 0.7s;
}

.bubble.smile {
  right: 4.5rem;
  bottom: 1.5rem;
  color: #36a690;
  animation-delay: 1.2s;
}

.quick-list {
  position: relative;
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.quick-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-weight: 800;
}

.quick-list span {
  display: inline-grid;
  place-items: center;
  min-width: 3.3rem;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  color: var(--berry);
  background: rgba(255, 211, 107, 0.45);
}

.split-section,
.rate-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.75fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: center;
  padding: 4rem 0;
}

.soft-card,
.feature-card,
.rate-box,
.form-wrap,
.testimonial-card,
.note-strip {
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.check-list {
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--muted);
  font-weight: 800;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -0.08rem;
  display: grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  color: white;
  background: #36a690;
  font-size: 0.85rem;
}

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

.feature-card {
  min-height: 100%;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 1.1rem;
  background: rgba(255, 211, 107, 0.42);
  font-size: 1.45rem;
}

.rate-section {
  align-items: stretch;
}

.rate-box {
  display: grid;
  align-content: center;
  gap: 0.35rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 215, 191, 0.62));
}

.rate-box span {
  color: var(--berry);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.rate-box strong {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.95;
  color: var(--berry);
}

.contact-section {
  align-items: start;
  padding-bottom: 5rem;
}

.text-card {
  display: grid;
  gap: 0.25rem;
  max-width: 23rem;
  margin-top: 1.2rem;
  padding: 1rem 1.1rem;
  border-radius: 1.3rem;
  text-decoration: none;
}

.text-card span {
  color: var(--berry);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.76rem;
}

.text-card strong {
  font-size: 1.55rem;
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

label {
  font-weight: 900;
  color: var(--berry);
}

label span {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.1rem 0.42rem;
  border-radius: 999px;
  color: #8a425f;
  background: rgba(255, 143, 171, 0.16);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(127, 52, 85, 0.18);
  border-radius: 1.1rem;
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: rgba(229, 87, 120, 0.72);
  box-shadow: 0 0 0 4px rgba(255, 143, 171, 0.16);
  background: white;
}

.honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-button {
  width: 100%;
}

.form-success {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 0.65rem;
  min-height: 24rem;
}

.form-success[hidden] {
  display: none;
}

.success-badge {
  display: grid;
  place-items: center;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, #36a690, #84d8c5);
  font-size: 3rem;
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(54, 166, 144, 0.26);
}

.page-hero {
  padding: clamp(2.6rem, 6vw, 4.8rem) 0 2.5rem;
}

.page-hero h1 {
  max-width: 13ch;
}

.page-hero .hero-lede {
  max-width: 48rem;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 0.5rem;
}

.step-card {
  position: relative;
  overflow: hidden;
}

.step-number {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--berry), #ff8d69);
  box-shadow: 0 12px 24px rgba(127, 52, 85, 0.18);
  font-family: 'Baloo 2', cursive;
  font-size: 1.35rem;
  font-weight: 900;
}

.feature-card h2,
.step-card h2 {
  font-size: 1.55rem;
  line-height: 1.05;
}

.detail-grid {
  align-items: stretch;
}

.plain-list {
  display: grid;
  gap: 0.72rem;
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 800;
}

.detail-section {
  padding-top: 2rem;
}

.payment-section .rate-box strong {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
}

.testimonials-section {
  padding: 4rem 0;
}

.section-heading {
  max-width: 45rem;
  margin-bottom: 1.3rem;
}

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

.testimonial-card,
.note-strip {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.testimonial-card p {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.1;
  color: var(--ink);
}

.testimonial-card strong {
  color: var(--berry);
}

.note-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 4rem;
}

.note-strip .button {
  flex: 0 0 auto;
  width: auto;
  min-width: max-content;
  white-space: nowrap;
}

.note-strip > div {
  max-width: 44rem;
}

.note-strip p:last-child {
  margin-bottom: 0;
}

.photo-story-section {
  align-items: center;
}

.photo-story-section.reverse {
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1fr);
}

.photo-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
}

.photo-card figcaption {
  padding: 0.85rem 1rem 1rem;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.93rem;
  line-height: 1.35;
}

.meet-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.78fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2.6rem, 6vw, 4.8rem) 0 3rem;
}

.meet-hero h1 {
  max-width: 13ch;
  font-size: clamp(2.7rem, 5.6vw, 4.7rem);
}

.feature-photo-card img {
  aspect-ratio: 4 / 4.9;
}

.life-grid {
  padding-top: 0.5rem;
}

.life-grid .feature-card h2 {
  font-size: 1.55rem;
  line-height: 1.05;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 2rem 1rem;
  color: var(--muted);
  border-top: 1px solid rgba(127, 52, 85, 0.1);
  background: rgba(255, 248, 237, 0.65);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--berry);
  font-weight: 900;
}

@keyframes floaty {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-0.55rem) rotate(4deg);
  }
}

@keyframes bubbleDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-2deg) scale(1);
  }

  33% {
    transform: translate3d(0.55rem, -0.9rem, 0) rotate(5deg) scale(1.04);
  }

  66% {
    transform: translate3d(-0.35rem, 0.55rem, 0) rotate(-4deg) scale(0.98);
  }
}

@keyframes bubbleGlow {
  0%,
  100% {
    opacity: 0.58;
  }

  50% {
    opacity: 0.82;
  }
}

@keyframes softBob {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-0.45rem) scale(1.04);
  }
}

@media (max-width: 820px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero,
  .meet-hero,
  .split-section,
  .photo-story-section.reverse,
  .rate-section,
  .contact-section,
  .cards-section,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .meet-hero {
    gap: 1.4rem;
    padding-top: 2.4rem;
  }

  .meet-copy,
  .meet-hero .hero-lede,
  .meet-hero .micro-note,
  .photo-story-section > div,
  .detail-section > div {
    min-width: 0;
  }

  .meet-hero h1 {
    max-width: 11ch;
    font-size: clamp(2.35rem, 13vw, 3.55rem);
  }

  .photo-story-section,
  .photo-story-section.reverse {
    gap: 1.25rem;
  }

  .photo-story-section.reverse .photo-card {
    order: -1;
  }

  .photo-card img,
  .feature-photo-card img {
    aspect-ratio: 4 / 3.9;
  }

  .note-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  h1 {
    max-width: 12ch;
  }
}

@media (max-width: 560px) {
  .section-shell {
    width: min(100% - 1.5rem, 1120px);
  }

  nav {
    gap: 0.2rem;
  }

  nav a {
    padding: 0.42rem 0.48rem;
    font-size: 0.92rem;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-card {
    min-height: 24rem;
    padding: 1.2rem;
  }

  .brand small {
    display: none;
  }

  nav a {
    padding: 0.45rem 0.55rem;
  }
}

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