@font-face {
  font-family: "Romie";
  src: url("/assets/romie-light.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "FGrotesk";
  src: url("/assets/fgrotesk-book.ttf") format("truetype");
  font-display: swap;
}

:root {
  --cream: #f6f5f4;
  --sand: #e7e3de;
  --blush: #f6ccc4;
  --rose: #c98f86;
  --rose-deep: #79534d;
  --taupe: #b99d8e;
  --mist: #e2e1df;
  --grey: #716d69;
  --ink: #211e1c;
  --white: #fff;
  --display: "Romie", Georgia, serif;
  --sans: "FGrotesk", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: var(--sans); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: .7rem;
  left: .7rem;
  padding: .8rem 1rem;
  background: white;
  color: var(--rose-deep);
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.concept-bar {
  position: relative;
  z-index: 80;
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: .55rem 1rem;
  background: #111;
  color: #fff;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.concept-bar a { opacity: .55; }
.concept-bar a[aria-current="page"], .concept-bar a:hover { opacity: 1; text-decoration: underline; text-underline-offset: .22rem; }

.eyebrow {
  margin: 0 0 1rem;
  font-size: .72rem;
  line-height: 1;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: .85rem 1.3rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .2s, color .2s, transform .2s;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid var(--rose); outline-offset: 3px; }

.menu-toggle {
  display: none;
  border: 0;
  padding: .75rem;
  color: inherit;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span { display: block; width: 1.5rem; height: 1px; margin: .32rem; background: currentColor; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .desktop-nav { display: none !important; }
  .desktop-nav.is-open {
    position: absolute;
    inset: 100% 0 auto;
    display: grid !important;
    gap: 0;
    padding: 1rem 5vw 1.5rem;
    background: inherit;
    border-top: 1px solid rgba(127,124,118,.25);
  }
  .desktop-nav.is-open a { padding: .75rem 0; }
}
