@font-face {
  font-family: "Cormorant Garamond Light Ask";
  src: url("../fonts/cormorant-garamond-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond Light Ask";
  src: url("../fonts/cormorant-garamond-semibold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --color-bg: oklch(98.5% 0.003 90);
  --color-surface: oklch(100% 0 0);
  --color-ink: oklch(20% 0.01 75);
  --color-muted: oklch(42% 0.012 75);
  --color-soft: oklch(96.8% 0.004 90);
  --color-line: oklch(82% 0.006 75);
  --color-accent: oklch(88% 0.18 96);
  --color-focus: oklch(56% 0.17 250);
  --color-overlay-surface: oklch(99% 0.003 90 / 0.6);
  --font-display: "Cormorant Garamond Light Ask", "Cormorant Garamond", Georgia, serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --container: 84rem;
  --gutter: clamp(1.25rem, 3.4vw, 3.25rem);
  --section-space: clamp(4.5rem, 8vw, 8rem);
  --section-space-tight: clamp(3rem, 5vw, 5rem);
  --radius-sm: 0.5rem;
  --radius-md: 0.875rem;
  --radius-hero: clamp(1.25rem, 3vw, 2.25rem);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --z-dropdown: 20;
  --z-sticky: 30;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.65;
  font-kerning: normal;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
summary {
  color: inherit;
  touch-action: manipulation;
}

a {
  touch-action: manipulation;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.2rem, 3.8vw, 3.95rem);
}

h2 {
  font-size: clamp(2.05rem, 3.2vw, 3.4rem);
}

h3 {
  font-size: clamp(1.35rem, 1.7vw, 1.75rem);
}

.title-signature::after {
  display: inline-block;
  width: 0.24em;
  height: 0.24em;
  margin-left: 0.14em;
  border-radius: 50%;
  background: var(--color-accent);
  content: "";
  vertical-align: 0.06em;
}

p {
  max-width: 72ch;
  text-wrap: pretty;
}

:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 4px;
}

::selection {
  background: var(--color-accent);
  color: var(--color-ink);
}

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--color-ink);
  color: white;
  transform: translateY(-150%);
  transition: transform 180ms var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
