@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --bg: #f7e8ef;
  --bg-elev: #fff6fa;
  --bg-soft: #efd8e4;
  --text: #311c52;
  --text-on-accent: #fff6fa;
  --muted: #633160;
  --line: #ca8e97;
  --accent: #7f437c;
  --accent-strong: #955779;
  --shadow: 0 10px 24px rgba(99, 49, 96, 0.16);
  --radius: 10px;
  --container: 1100px;
}

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

html,
body {
  margin: 0;
  padding: 0;
  background-color: var(--bg);
  background-image:
    linear-gradient(180deg, rgba(202, 142, 151, 0.16), rgba(247, 232, 239, 0)),
    radial-gradient(rgba(149, 87, 121, 0.14) 1px, transparent 1px);
  background-size: auto, 18px 18px;
  color: var(--text);
  font-family: "DM Sans", monospace, sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  padding-top: 73px;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
}

section {
  padding: 80px 24px;
  margin: 0 auto;
  text-align: center;
}

.about-section {
  margin-top: 180px;
  position: relative;
  z-index: 2;
}

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

[data-include] {
  display: block;
}

[data-include="header"] {
  min-height: 73px;
}

[data-include="footer"] {
  min-height: 280px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 320;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 0;
  padding-top: 8px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 16px;
  position: relative;
  background: transparent;
  border: 2px solid transparent;
  border-radius: 0;
  box-shadow: none;
  transition: background-color 0.25s ease, border-color 0.25s ease, border-radius 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.is-scrolled .container {
  padding: 12px 20px;
  background: rgba(255, 246, 250, 0.96);
  border-color: var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(99, 49, 96, 0.16);
}

.brand {
  font-family: "DM Sans", sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: transform 0.18s ease;
}

.brand:hover {
  transform: scale(1.08);
}

.site-nav {
  font-size: 14px;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-item {
  position: relative;
}

.nav-item-head {
  display: flex;
  align-items: center;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.site-header.is-scrolled .nav-link {
  border-color: var(--line);
  background: var(--bg-elev);
}

.nav-link:hover,
.nav-link:focus-visible {
  background: var(--accent);
  color: var(--text-on-accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.nav-item:hover > .nav-item-head > .nav-link,
.nav-item:focus-within > .nav-item-head > .nav-link {
  background: var(--accent);
  color: var(--text-on-accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.nav-item:hover > .nav-link,
.nav-item:focus-within > .nav-link {
  background: var(--accent);
  color: var(--text-on-accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.submenu-toggle {
  display: none;
}

.dropdown-menu,
.mega-menu {
  position: absolute;
  top: calc(100% + 10px);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  border-radius: 10px;
  box-shadow: var(--shadow);
  z-index: 220;
}

.dropdown-menu {
  min-width: 220px;
  left: 50%;
  padding: 8px;
  transform: translate(-50%, 8px);
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: var(--accent-strong);
  color: var(--text-on-accent);
}

.dropdown-menu::after {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  transform: translateX(-50%) rotate(45deg);
}

.mega-menu {
  left: 50%;
  width: min(740px, calc(100vw - 48px));
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 10px;
  transform: translate(-50%, 8px);
}

.mega-menu::after {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  transform: translateX(-50%) rotate(45deg);
}

.dropdown-menu::before,
.mega-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}

.mega-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  text-decoration: none;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: 0.2s ease;
}

.mega-card:hover,
.mega-card:focus-visible {
  background: var(--accent);
  color: var(--text-on-accent);
  border-color: var(--accent);
}

.mega-title {
  font-size: 14px;
  font-weight: 700;
}

.mega-copy {
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0.2px;
  color: var(--muted);
}

.mega-card:hover .mega-copy,
.mega-card:focus-visible .mega-copy {
  color: rgba(255, 246, 250, 0.88);
}

.nav-item:hover > .dropdown-menu,
.nav-item:focus-within > .dropdown-menu {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.nav-item:hover > .mega-menu,
.nav-item:focus-within > .mega-menu {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  border-radius: 0;
  width: 44px;
  height: 40px;
  padding: 8px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-backdrop {
  display: none;
}

.hero-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-align: left;
  padding: 60px 24px 90px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(240px, 420px);
  align-items: center;
  gap: 40px;
}

.hero-copy {
  max-width: 620px;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 16px;
}

.hero-section.top-hero {
  min-height: 28vh;
  padding: 10px 24px;
}

.hero-content.top-hero-content {
  font-size: 0.9em;
}

.hero-content h1 {
  font-size: clamp(40px, 5.6vw, 68px);
  margin: 0 0 16px;
  letter-spacing: 0.6px;
}

.hero-content.top-hero-content h1 {
  font-size: clamp(28px, 4vw, 44px);
  position: relative;
}

.hero-content.top-hero-content h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  min-width: 60px;
  height: 2px;
  background-color: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  animation: underline-reveal 0.8s ease forwards;
}

@keyframes underline-reveal {
  to {
    transform: scaleX(1);
  }
}

.hero-center {
  text-align: center;
  margin: 0 auto;
}

.hero-center h1::after {
  left: 50%;
  transform-origin: center;
  transform: scaleX(0) translateX(-50%);
}

.hero-content p {
  font-size: clamp(16px, 2.2vw, 22px);
  margin: 0 0 28px;
  color: var(--muted);
}

.hero-section a {
  text-decoration: none;
  color: var(--text);
}

.button-container {
  display: flex;
  gap: 16px;
  width: 100%;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero-button {
  text-decoration: none;
  color: var(--text);
  display: inline-block;
  font-size: 16px;
  letter-spacing: 0.4px;
  padding: 12px 22px;
  border-radius: 8px;
  border: 1px solid var(--line);
  transition: 0.25s ease;
  box-shadow: 0 4px 10px rgba(99, 49, 96, 0.16);
  user-select: none;
  background: var(--bg-elev);
}

.hero-button:hover {
  background-color: var(--accent);
  color: var(--text-on-accent);
  transform: translateY(-2px);
}

.hero-button.primary {
  background: var(--accent);
  color: var(--text-on-accent);
  border-color: var(--accent);
  transition: 0.5s ease;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  width: min(420px, 75vw);
  max-width: 100%;
  height: auto;
  display: block;
  animation: float-gentle 4.5s ease-in-out infinite;
}

@keyframes float-gentle {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

.works-hero-image {
  margin: 0 auto 4px;
}

.mascot-fall {
  position: relative;
  height: 200px;
  display: flex;
  justify-content: center;
  pointer-events: none;
  margin: 10px 0 -40px;
  z-index: 0;
  transform: translateZ(0);
}

.mascot-fall img {
  width: 160px;
  height: 160px;
  display: block;
  transform-origin: center;
  filter: drop-shadow(0 8px 16px rgba(127, 67, 124, 0.22));
}

.section-content {
  display: none;
  margin: 0 auto;
  padding: 60px 24px;
  text-align: center;
  transition: 0.3s ease;
}

.section-content h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 18px;
}

.section-content p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}

.button {
  background-color: var(--accent);
  color: var(--text-on-accent);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 18px;
  width: 200px;
  box-shadow: 0 4px 10px rgba(99, 49, 96, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.2s ease, color 0.2s ease;
  font-size: 16px;
  text-align: center;
  overflow: hidden;
  z-index: 10;
  text-decoration: none;
}

.button:hover {
  transform: translateY(-2px);
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(127, 67, 124, 0.24);
  opacity: 0.9;
}

.button:disabled {
  background-color: #ca8e97;
  color: #fff6fa;
  cursor: not-allowed;
  box-shadow: none;
}


.site-footer {
  position: relative;
  border-top: 0;
  background: linear-gradient(180deg, rgba(255, 246, 250, 0.5) 0%, rgba(247, 232, 239, 0.85) 100%);
  padding: 44px 24px 28px;
  text-align: left;
  overflow: visible;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
  z-index: 3;
  pointer-events: none;
}

.site-footer .container {
  position: relative;
  z-index: 2;
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) repeat(3, minmax(140px, 1fr));
  gap: 22px 20px;
}

.footer-section {
  min-width: 0;
  text-align: left;
  margin: 0;
  padding: 0;
}

.footer-section-brand {
  max-width: 340px;
}

.footer-section-brand .footer-copy {
  white-space: nowrap;
}

.footer-title {
  font-family: "Prompt", "DM Sans", sans-serif;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.1px;
  color: var(--text);
  margin: 0 0 12px;
}

.footer-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 15px;
}

.footer-links {
  display: grid;
  gap: 4px;
}

.footer-link {
  display: block;
  text-decoration: none;
  color: var(--muted);
  margin: 4px 0;
  position: relative;
  width: fit-content;
  padding-bottom: 3px;
  font-size: 15px;
  transition: color 0.2s ease;
}

.footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width 0.25s ease;
}

.footer-link:hover {
  color: var(--text);
}

.footer-link:hover::after {
  width: 100%;
}

.footer-peek-link {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, calc(-101% + 2px));
  z-index: 4;
  display: inline-block;
  border-radius: 999px;
  transition: transform 0.2s ease;
}

/* .footer-peek-link:hover,
.footer-peek-link:focus-visible {
  transform: translate(-50%, calc(-101% - 2px));
} */

.footer-peek-link img {
  display: block;
  width: 128px;
  height: 128px;
  object-fit: contain;
}


.footer-meta {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(202, 142, 151, 0.55);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-meta .footer-copy {
  font-size: 14px;
  letter-spacing: 0.2px;
}


html.includes-ready .site-header,
html.includes-ready .site-footer {
  opacity: 1;
  transform: none;
}

html.includes-ready main {
  animation: pageMainIn 0.3s ease both;
}

html.includes-ready main > section {
  animation: pageSectionIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

html.includes-ready main > section:nth-of-type(1) {
  animation-delay: 0.06s;
}

html.includes-ready main > section:nth-of-type(2) {
  animation-delay: 0.12s;
}

html.includes-ready main > section:nth-of-type(3) {
  animation-delay: 0.18s;
}

html.includes-ready main > section:nth-of-type(4) {
  animation-delay: 0.24s;
}

html.includes-ready main > section:nth-of-type(5) {
  animation-delay: 0.3s;
}

html.page-transitioning main {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

html.page-transitioning .site-header,
html.page-transitioning .site-footer {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  transition: opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1), transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes pageMainIn {
  from {
    opacity: 0.98;
  }

  to {
    opacity: 1;
  }
}

@keyframes pageSectionIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 68px;
  }

  [data-include="header"] {
    min-height: 68px;
  }

  [data-include="footer"] {
    min-height: 240px;
  }

  .site-footer {
    padding: 34px 16px 20px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-section-brand {
    max-width: none;
  }

  .footer-section + .footer-section {
    border-top: 1px dashed rgba(202, 142, 151, 0.45);
    padding-top: 10px;
  }

  .footer-links {
    gap: 2px;
  }

  .footer-link {
    margin: 2px 0;
  }

  .footer-meta {
    margin-top: 14px;
    padding-top: 10px;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-meta .footer-copy {
    font-size: 13px;
  }

  .footer-payments {
    justify-content: flex-start;
  }

  .footer-copy {
    font-size: 14px;
  }

  .footer-section-brand .footer-copy {
    white-space: normal;
  }

  .footer-peek-link img {
    width: 128px;
    height: 128px;
  }

  .site-header {
    padding-top: 0;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: background-color 0.24s ease, backdrop-filter 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
  }

  .site-header.is-scrolled,
  .site-header.menu-open {
    background: rgba(255, 246, 250, 0.92);
    backdrop-filter: blur(8px);
    border-bottom-color: var(--line);
  }

  .site-header.is-hidden-mobile:not(.menu-open) {
    transform: translateY(calc(-100% - 6px));
  }

  .site-header .container {
    padding: 12px 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-header.is-scrolled .container,
  .site-header.menu-open .container {
    padding: 12px 14px;
    border: 0;
    border-color: transparent;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 360;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(86vw, 360px);
    background: var(--bg-elev);
    border-left: 1px solid var(--line);
    box-shadow: -10px 0 24px rgba(99, 49, 96, 0.2);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 350;
    overflow-y: auto;
    padding: 78px 18px 24px;
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;
  }

  .site-header.menu-open .site-nav {
    transform: translateX(0);
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(49, 28, 82, 0.16);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 300;
  }

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

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .nav-item {
    border-bottom: 1px solid var(--line);
    padding-bottom: 8px;
  }

  .nav-item-head {
    justify-content: space-between;
    gap: 10px;
  }

  .nav-link {
    width: 100%;
    padding: 12px 12px;
    border-radius: 10px;
  }

  .nav-item:hover > .nav-item-head > .nav-link,
  .nav-item:focus-within > .nav-item-head > .nav-link {
    background: var(--bg-soft);
    color: var(--text);
    border-color: var(--line);
  }

  .nav-item:hover > .nav-link,
  .nav-item:focus-within > .nav-link {
    background: var(--bg-soft);
    color: var(--text);
    border-color: var(--line);
  }

  .nav-item.mobile-open > .nav-item-head > .nav-link {
    background: var(--accent);
    color: var(--text-on-accent);
    border-color: var(--accent);
  }

  .nav-item.mobile-open > .nav-link {
    background: var(--accent);
    color: var(--text-on-accent);
    border-color: var(--accent);
  }

  .submenu-toggle {
    display: inline-flex;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: transparent;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .submenu-toggle::before {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--text);
    border-bottom: 2px solid var(--text);
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.2s ease;
  }

  .nav-item.mobile-open .submenu-toggle::before {
    transform: rotate(-135deg) translate(-2px, -1px);
  }

  .dropdown-menu,
  .mega-menu {
    position: static;
    left: auto;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    width: 100%;
  }

  .mega-menu {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .nav-item.mobile-open > .dropdown-menu,
  .nav-item.mobile-open > .mega-menu {
    max-height: 900px;
    margin: 4px 0 8px;
  }

  .nav-item:hover > .dropdown-menu,
  .nav-item:focus-within > .dropdown-menu,
  .nav-item:hover > .mega-menu,
  .nav-item:focus-within > .mega-menu,
  .nav-item.mobile-open > .dropdown-menu,
  .nav-item.mobile-open > .mega-menu {
    transform: none;
  }

  .dropdown-menu a,
  .mega-card {
    border: 1px solid var(--line);
    margin-top: 6px;
    background: var(--bg-soft);
    color: var(--text);
  }

  .dropdown-menu {
    display: grid;
    gap: 6px;
  }

  .dropdown-menu a {
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0.2px;
    line-height: 1.35;
  }

  .mega-card {
    gap: 6px;
    text-transform: none;
    letter-spacing: 0.2px;
  }

  .mega-title {
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0.2px;
    color: var(--text);
  }

  .mega-copy {
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0.2px;
    color: var(--muted);
    line-height: 1.35;
  }

  .dropdown-menu a:hover,
  .dropdown-menu a:focus-visible {
    background: var(--accent-strong);
    color: var(--text-on-accent);
  }

  .mega-card:hover,
  .mega-card:focus-visible {
    background: var(--accent-strong);
    border-color: var(--accent);
    color: var(--text-on-accent);
  }

  .mega-card:hover .mega-copy,
  .mega-card:focus-visible .mega-copy {
    color: var(--muted);
  }

  .dropdown-menu::after,
  .mega-menu::after,
  .dropdown-menu::before,
  .mega-menu::before {
    display: none;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content p {
    font-size: 20px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero-visual {
    order: -1;
  }

  .hero-button {
    font-size: 15px;
    padding: 10px 20px;
  }

  .mascot-fall {
    position: static;
    height: auto;
    margin: 20px auto 60px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .brand {
    transition: none;
  }

  html.page-transitioning main,
  html.page-transitioning .site-header,
  html.page-transitioning .site-footer {
    transition: none;
    transform: none;
  }

  .reveal-on-scroll,
  .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-image {
    animation: none;
  }

  .mascot-fall img {
    animation: none;
  }

  .nav-link:hover,
  .nav-link:focus-visible,
  .nav-item:hover > .nav-item-head > .nav-link,
  .nav-item:focus-within > .nav-item-head > .nav-link,
  .nav-item:hover > .nav-link,
  .nav-item:focus-within > .nav-link,
  .button:hover {
    transform: none;
  }

  html.includes-ready main,
  html.includes-ready main > section {
    animation: none;
  }
}

.site-header.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 480px) {
  .footer-title {
    margin-bottom: 10px;
  }

  .footer-link {
    font-size: 14px;
  }

  .footer-peek-link img {
    width: 104px;
    height: 104px;
  }

  .hero-button {
    font-size: 14px;
    padding: 8px 16px;
  }

  .button {
    width: 100%;
    max-width: 280px;
    font-size: 14px;
    padding: 10px 14px;
  }
}
.button.outline {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.button.outline:hover {
  background: var(--accent);
  color: var(--text-on-accent);
  border-color: var(--accent);
  opacity: 1;
}

.contact-actions {
  gap: 14px;
}

.contact-actions .button {
  width: auto;
  min-width: 180px;
  padding: 12px 22px;
  font-size: 16px;
}

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