@font-face {
  font-family: "Mg12";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/Mg-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Mg12";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/Mg-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Mg12";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/Mg-Bold.woff2") format("woff2");
}
:root {
  --ink: #1a1422;
  --muted: #6e6a7e;
  --bg: #f6f5fc;
  --rule: #e6e2ee;
  --brand-pink: #fd7edb;
  --brand-purple: #b04dff;
  --font-display: "Mg12", -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
}

body.home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.home .hero-section {
  flex: 1;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.home .hero-section .content {
  display: flex;
  justify-content: center;
}
body.home .hero-logo {
  display: block;
  width: min(70vw, 45vh, 480px);
  height: auto;
}

section {
  width: 100%;
  margin: 60px 0;
}

.content {
  max-width: 700px;
  padding: 0 25px;
  margin: 0 auto;
}

.single-admin-item {
  margin-bottom: 40px;
}
.single-admin-item:last-child {
  margin-bottom: 0;
}

nav {
  position: relative;
  z-index: 90;
  background: #fff;
}
nav .content {
  padding: 10px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav .logo-area {
  display: flex;
  align-items: center;
}
nav .logo-area svg {
  display: block;
  height: 28px;
  width: auto;
}
nav .menu-toggle {
  position: relative;
  top: auto;
  right: auto;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--brand-pink);
  text-transform: uppercase;
  margin-bottom: 12px;
}

h1 {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.005em;
  margin-bottom: 20px;
  color: var(--ink);
}

h2 {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.005em;
  color: var(--ink);
  margin-bottom: 20px;
}

h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.005em;
  color: var(--ink);
  margin: 28px 0 8px;
}

p {
  margin-bottom: 12px;
}

a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
a:hover {
  opacity: 0.6;
}

.effective {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 48px;
}

.tagline {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 48px;
}

.contact {
  padding: 20px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  margin-bottom: 40px;
}
.contact a {
  font-size: 15px;
}

footer {
  margin-top: 60px;
  padding-top: 24px;
  font-size: 12px;
  color: var(--muted);
}

.menu-toggle {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 7px;
  z-index: 100;
}
.menu-toggle .line {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  transition: transform 0.32s ease, opacity 0.2s ease;
  transform-origin: center;
}

body.menu-open .menu-toggle .line-1 {
  transform: translateY(9px) rotate(45deg);
}

body.menu-open .menu-toggle .line-2 {
  opacity: 0;
}

body.menu-open .menu-toggle .line-3 {
  transform: translateY(-9px) rotate(-45deg);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: background 0.32s ease;
  z-index: 50;
}

body.menu-open .menu-backdrop {
  background: rgba(0, 0, 0, 0.14);
  pointer-events: auto;
}

.menu-shelf {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background: var(--bg);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.08);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.32, 0.72, 0, 1);
  z-index: 75;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 24px;
}
.menu-shelf a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 42px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.005em;
  transition: opacity 0.2s ease;
}
.menu-shelf a:hover {
  opacity: 0.55;
}

body.menu-open .menu-shelf {
  transform: translateX(0);
}

@media (max-width: 767px) {
  .menu-shelf {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .menu-shelf a {
    font-size: 34px;
  }
}
