/* Sargasso Capital Management — 2026
   Atlantic navy, cream type, sargassum gold. */

:root {
  --navy: #070c12;
  --cream: #f3ede2;
  --muted: #9aa3ab;
  --gold: #c4a35a;
  --gold-deep: #a8883e;
  --body: #cfc8bb;
  --line: rgba(243, 237, 226, 0.16);
  --gold-line: rgba(196, 163, 90, 0.55);
  --serif: "Fraunces", "Iowan Old Style", Palatino, "Palatino Linotype", serif;
  --sans: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --pad: clamp(1.35rem, 5.2vw, 5.25rem);
  --header-h: 6.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html,
body {
  background: var(--navy);
  color: var(--cream);
}

body {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 400;
  line-height: 1.55;
  min-height: 100vh;
  position: relative;
  color-scheme: dark;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
}

button {
  cursor: pointer;
}

ul {
  list-style: none;
}

/* ---------- Atmosphere ---------- */

.flecks {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.11;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 240px 240px;
}

.wrap {
  position: relative;
  z-index: 2;
}

.skip {
  position: absolute;
  left: var(--pad);
  top: -4rem;
  z-index: 20;
  background: var(--navy);
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.55rem 0.9rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.skip:focus {
  top: 0.75rem;
}

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

:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- Header ---------- */

.site-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.85rem var(--pad) 0;
  position: relative;
}

.wordmark {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  color: var(--cream);
}

.wordmark-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.45rem, 1.7vw, 1.72rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1;
  font-variation-settings: "SOFT" 0, "WONK" 0.42;
}

.wordmark-sub {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1;
}

.nav-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle {
  display: none;
  width: 2.1rem;
  height: 1.35rem;
  position: relative;
  z-index: 12;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.nav-toggle-bars,
.nav-toggle-bars i {
  display: block;
}

.nav-toggle-bars i {
  height: 1px;
  background: var(--gold);
  margin: 0.38rem 0;
  width: 1.55rem;
  margin-left: auto;
}

.nav-toggle-bars i:nth-child(2) {
  width: 1.55rem;
}

.site-nav ul {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(1.4rem, 2.4vw, 2.35rem);
  padding-top: 0.55rem;
}

.site-nav li {
  flex-shrink: 0;
}

.site-nav a {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 0.28rem;
  border-bottom: 1px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--cream);
}

.site-nav a.is-current {
  color: var(--cream);
  border-bottom-color: var(--gold);
}

.site-nav a[target="_blank"]::after {
  content: none;
}

/* ---------- Buttons & links ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1;
  padding: 0.92rem 1.4rem;
  border-radius: 0;
  background: transparent;
  transition: background 0.22s var(--ease), color 0.22s var(--ease);
}

.btn:hover,
.btn:focus-visible {
  background: var(--gold);
  color: var(--navy);
  outline: none;
}

.text-link {
  font-family: var(--serif);
  font-size: 1.08rem;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s var(--ease);
}

.text-link .arrow {
  transition: transform 0.22s var(--ease);
  display: inline-block;
}

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

.text-link:hover .arrow {
  transform: translateX(4px);
}

.cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.75rem 2.4rem;
  margin-top: 3.1rem;
}

/* ---------- Home ---------- */

.hero {
  padding: clamp(4.2rem, 11vh, 7.2rem) var(--pad) 0;
}

.page-home .hero {
  min-height: calc(100svh - 6.4rem);
  padding-bottom: 3.5rem;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.55rem, 5.6vw, 4.35rem);
  line-height: 1.06;
  letter-spacing: -0.028em;
  color: var(--cream);
  font-variation-settings: "SOFT" 0, "WONK" 0.7;
  max-width: 14ch;
}

br.m-br {
  display: none;
}

.lede {
  margin-top: 1.35rem;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.12rem, 1.55vw, 1.38rem);
  color: var(--cream);
  letter-spacing: -0.01em;
}

.rule {
  display: none;
  height: 1px;
  border: 0;
  background: var(--gold);
  opacity: 0.85;
}

.thesis {
  margin-top: 2.65rem;
  max-width: 38rem;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  color: var(--cream);
  line-height: 1.5;
  font-weight: 400;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, max-content));
  margin-top: 2.85rem;
  align-items: start;
}

.stats-two {
  grid-template-columns: repeat(2, minmax(0, max-content));
}

.stat {
  padding: 0.15rem 2.85rem 0.15rem 0;
  margin-right: 2.85rem;
  border-right: 1px solid rgba(196, 163, 90, 0.28);
}

.stat:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}

.stat-value {
  font-family: var(--serif);
  font-size: clamp(2rem, 2.8vw, 2.55rem);
  color: var(--gold);
  line-height: 1;
  font-weight: 400;
  font-variation-settings: "SOFT" 0, "WONK" 0.3;
  letter-spacing: -0.02em;
}

.stat-label {
  display: block;
  margin-top: 0.7rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  max-width: 16ch;
  line-height: 1.45;
}



.home-quote {
  padding: clamp(5rem, 12vh, 8.5rem) var(--pad);
}

.home-quote blockquote {
  margin: 0;
  padding: 0 0 0 1.75rem;
  border: 0;
  border-left: 1px solid var(--gold);
  max-width: 42rem;
}

.home-quote blockquote p {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.35rem, 2.35vw, 1.85rem);
  line-height: 1.4;
  letter-spacing: -0.018em;
  color: var(--body);
  font-variation-settings: "SOFT" 0, "WONK" 0.4;
  margin: 0 0 0.9em;
}

.home-quote blockquote p:last-of-type {
  margin-bottom: 0;
}

.home-quote .q-lead {
  font-size: clamp(2.15rem, 4.6vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 1.15rem;
  font-variation-settings: "SOFT" 0, "WONK" 0.7;
}


.home-quote em {
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  font-variation-settings: "SOFT" 0, "WONK" 0.8;
}

.home-quote .q-edge {
  color: var(--cream);
}

.home-quote cite {
  display: block;
  margin-top: 1.75rem;
  padding-left: 1.75rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.what {
  padding: clamp(4.5rem, 10vh, 7.5rem) var(--pad) 1rem;
}

.what .eyebrow {
  margin-bottom: 2.4rem;
}

.what-list {
  list-style: none;
  max-width: 48rem;
}

.what-list li {
  padding: 1.85rem 0 2rem;
  border-top: 1px solid rgba(196, 163, 90, 0.35);
}

.what-list li:last-child {
  border-bottom: 1px solid rgba(196, 163, 90, 0.35);
}

.what-list h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-variation-settings: "SOFT" 0, "WONK" 0.45;
}

.what-list p {
  margin-top: 0.7rem;
  max-width: 36rem;
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--body);
}

.what-list a {
  color: var(--gold);
  border-bottom: 1px solid transparent;
}

.what-list a:hover {
  border-bottom-color: var(--gold);
}

.quiet {
  padding: clamp(5.5rem, 12vh, 8rem) var(--pad) 2rem;
  max-width: calc(36rem + var(--pad) * 2);
}

.quiet .eyebrow {
  margin-bottom: 1.1rem;
  color: var(--gold);
}

.quiet p {
  font-family: var(--serif);
  font-size: 1.12rem;
  color: var(--body);
  line-height: 1.65;
  max-width: 34rem;
}

.quiet .text-link {
  margin-top: 1.4rem;
}

/* ---------- Inner pages ---------- */

.page {
  padding: clamp(3.6rem, 8vh, 5.5rem) var(--pad) 0;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.page-title {
  margin-top: 1.35rem;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 0, "WONK" 0.5;
}

.page-title .role,
.role {
  display: block;
  margin-top: 0.85rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.dek {
  margin-top: 1.85rem;
  max-width: 36rem;
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.7vw, 1.4rem);
  line-height: 1.5;
  color: var(--cream);
  font-weight: 400;
}

.firm-layout {
  display: grid;
  grid-template-columns: minmax(0, 40rem) minmax(14rem, 22rem);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
  padding: 3.4rem var(--pad) 5rem;
}

.editorial {
  min-width: 0;
}

.pullquote {
  position: sticky;
  top: 3.5rem;
  padding-top: 2.35rem;
}

.pullquote blockquote {
  margin: 0;
  padding: 0;
  border: 0;
}

.pullquote blockquote p {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  line-height: 1.45;
  color: var(--cream);
  font-weight: 400;
  font-variation-settings: "SOFT" 0, "WONK" 0.45;
}

.pullquote blockquote p::before {
  content: "“";
  display: block;
  font-size: 2.6rem;
  line-height: 0.8;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.pullquote cite {
  display: block;
  margin-top: 1.35rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.editorial {
  padding: 0;
  max-width: none;
}

.editorial section {
  padding: 2.35rem 0 2.5rem;
  border-top: 1px solid var(--gold);
}

.editorial h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.55rem;
  color: var(--gold);
  margin-bottom: 1.05rem;
  font-variation-settings: "SOFT" 0, "WONK" 0.4;
}

.editorial p {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.72;
  color: var(--body);
  margin-bottom: 1rem;
}

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

.editorial a {
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease);
}

.editorial a:hover {
  border-bottom-color: var(--gold);
}

/* ---------- Leadership ---------- */

.leader {
  display: grid;
  grid-template-columns: minmax(15rem, 22rem) minmax(0, 36rem);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding: 3rem var(--pad) 5.5rem;
}

.portrait {
  background: transparent;
  position: relative;
  max-width: 22rem;
}

.portrait img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.bio p {
  font-family: var(--serif);
  font-size: 1.06rem;
  line-height: 1.72;
  color: var(--body);
  margin-bottom: 1.05rem;
}

.bio .text-link {
  margin-top: 0.6rem;
  font-size: 1.02rem;
}

.bio-links {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.15rem 0;
  margin-top: 1.6rem;
}

.bio-links a {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.15rem 0;
  border-bottom: 1px solid transparent;
}

.bio-links a:not(:last-child)::after {
  content: "·";
  display: inline-block;
  margin: 0 0.95rem;
  color: rgba(196, 163, 90, 0.45);
  letter-spacing: 0;
  pointer-events: none;
}

.bio-links a:hover {
  color: var(--cream);
  border-bottom-color: var(--gold);
}

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 28rem) minmax(0, 22rem);
  gap: clamp(2.5rem, 6vw, 6rem);
  padding: 2.6rem var(--pad) 5.5rem;
  align-items: start;
}

.contact-copy p {
  font-family: var(--serif);
  font-size: 1.12rem;
  color: var(--body);
  line-height: 1.6;
  max-width: 28rem;
}

.contact-copy .mailto {
  display: inline-block;
  margin-top: 1.3rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--cream);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.12rem;
  transition: color 0.2s var(--ease);
}

.contact-copy .mailto:hover {
  color: var(--gold);
}

.address-block {
  margin-top: 2.1rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.7;
}

.socials {
  display: flex;
  gap: 1.6rem;
  margin-top: 1.5rem;
}

.socials a {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid transparent;
}

.socials a:hover {
  border-bottom-color: var(--gold);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.field label {
  font-family: var(--sans);
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--gold-line);
  border-radius: 0;
  padding: 0.55rem 0 0.7rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--cream);
  outline: none;
  resize: vertical;
  transition: border-color 0.2s var(--ease);
}

.field input:focus,
.field textarea:focus {
  border-bottom-color: var(--gold);
}

.field textarea {
  min-height: 7.5rem;
}

.contact-form .btn {
  align-self: flex-start;
  margin-top: 0.6rem;
}

.form-note {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.4rem;
}

/* ---------- Footer ---------- */

.site-footer {
  padding: 3.5rem var(--pad) 2.1rem;
  margin-top: auto;
  text-align: left;
}

.page-home .site-footer {
  padding-top: 5.5rem;
}

.footer-meta {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.15rem;
  align-items: center;
}

.footer-meta a {
  color: var(--muted);
  transition: color 0.2s var(--ease);
}

.footer-meta a:hover {
  color: var(--gold);
}

.footer-meta .dot {
  margin: 0 0.7rem;
  opacity: 0.7;
}

.footer-legal {
  margin-top: 1.15rem;
  max-width: 46rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  line-height: 1.6;
  color: #6f777e;
}

/* ---------- Mobile ---------- */

@media (max-width: 860px) {
  .site-header {
    padding-top: 1.35rem;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid var(--gold);
    align-items: center;
  }

  .wordmark-name {
    font-size: 1.55rem;
    letter-spacing: 0.2em;
  }

  .wordmark-sub {
    color: var(--gold);
    letter-spacing: 0.32em;
    font-size: 0.52rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 11;
    background: var(--navy);
    display: flex;
    align-items: center;
    padding: 5.5rem var(--pad) 2rem;
    transform: translateX(100%);
    transition: transform 0.38s var(--ease);
    border: 0;
  }

  .nav-checkbox:checked ~ .site-nav {
    transform: none;
  }

  .nav-checkbox:checked ~ .nav-toggle .nav-toggle-bars i:nth-child(1) {
    transform: translateY(0.39rem) rotate(45deg);
  }

  .nav-checkbox:checked ~ .nav-toggle .nav-toggle-bars i:nth-child(2) {
    opacity: 0;
  }

  .nav-checkbox:checked ~ .nav-toggle .nav-toggle-bars i:nth-child(3) {
    transform: translateY(-0.39rem) rotate(-45deg);
  }

  .nav-toggle-bars i {
    transition: transform 0.25s var(--ease), opacity 0.2s;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
    padding-top: 0;
  }

  .site-nav a {
    font-family: var(--sans);
    font-size: 0.92rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--cream);
    border-bottom: 0;
    white-space: nowrap;
  }

  .site-nav a.is-current {
    color: var(--gold);
    border-bottom: 0;
  }

  .page-home .hero,
  .hero {
    min-height: 0;
    padding-top: 2.6rem;
    padding-bottom: 0;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 10vw, 2.9rem);
    line-height: 1.1;
    max-width: none;
  }

  .what-list h2 {
    font-size: 1.55rem;
  }

  .home-quote {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }

  .home-quote blockquote {
    max-width: none;
  }

  br.m-br {
    display: inline;
  }

  .lede {
    margin-top: 1.15rem;
    font-size: 1.05rem;
  }

  .rule {
    display: block;
    margin: 1.35rem 0 1.4rem;
    max-width: 100%;
  }

  .thesis {
    margin-top: 0;
    font-size: 1.08rem;
  }

  .stats {
    display: flex;
    flex-direction: column;
    margin-top: 1.8rem;
    width: 100%;
  }

  .stat {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1.25rem;
    padding: 1.05rem 0;
    margin: 0;
    border-right: 0;
    border-top: 1px solid var(--gold);
  }

  .stat:last-child {
    border-bottom: 1px solid var(--gold);
  }

  .stat-value {
    font-size: 1.85rem;
  }

  .stat-label {
    color: var(--gold);
    text-align: right;
    margin-top: 0;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    max-width: 12ch;
  }

  .cta-row {
    margin-top: 1.8rem;
  }

  .btn {
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.95rem 1.15rem;
  }

  .page-home .footer-meta,
  .page-home .footer-meta a {
    color: var(--gold);
  }

  .leader,
  .contact-grid,
  .firm-layout {
    grid-template-columns: 1fr;
  }

  .pullquote {
    position: static;
    padding-top: 0;
    order: -1;
    padding-bottom: 0.5rem;
  }

  .portrait {
    max-width: 18rem;
  }

  .page-title {
    font-size: clamp(2.2rem, 11vw, 3.1rem);
  }

  .editorial {
    padding-top: 2.4rem;
  }
}

@media (min-width: 1440px) {
  :root {
    --pad: 5.75rem;
  }

  .hero h1 {
    font-size: 3.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .text-link:hover .arrow {
    transform: none;
  }
}

body:has(.nav-checkbox:checked) {
  overflow: hidden;
}

.nav-toggle:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}

.nav-toggle {
  cursor: pointer;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
  opacity: 0.7;
}
