/* Example Arc global layer: site-wide tokens, reset, accessibility and shell rules. */

@charset "UTF-8";

/* --- ARTTINA AWWWARDS-GRADE DESIGN SYSTEM --- */
:root {
  --bg-color: #f6f3ee;
  --bg-secondary: #ece7df;
  --text-main: #41454a;
  --text-muted: #6b727c;
  --border-color: rgba(53, 61, 73, 0.1);
  --glass-bg: rgba(255, 255, 255, 0.84);
  --accent-color: #1f7fe5;
  --accent-glow: rgba(31, 127, 229, 0.16);
  --surface-elevated: rgba(255, 255, 255, 0.94);
  --surface-soft: rgba(255, 255, 255, 0.56);
  --header-shadow: 0 20px 44px rgba(91, 100, 114, 0.12);
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-ui-accent: 'Oswald', sans-serif;
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --site-max-width: 2300px;
  --content-max-width: 1600px;
}

/* Base Reset & Lenis Setup */
html {
  scrollbar-gutter: stable;
  /* Anchors, scroll snap and focus account for the floating header. */
  scroll-padding-top: calc(var(--floating-header-clearance, 108px) + 16px);
  scroll-padding-bottom: env(safe-area-inset-bottom, 0px);
}

html.lenis {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-scroll-container] {
  will-change: transform;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}
body {
  margin: 0;
  padding: 0;
  min-height: max(550px, 100svh);
  display: flex;
  flex-direction: column;
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.5s ease, color 0.5s ease;
}
body.site-scroll-locked {
  overflow: hidden;
}
body.menu-open {
  overflow: hidden;
}
body.modal-open {
  overflow: hidden;
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 4000;
  padding: 12px 16px;
  background: #fff;
  color: #000;
  border-radius: 12px;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 16px;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--font-headings);
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: var(--content-max-width);
  width: 90%;
  margin: 0 auto;
}

#main-content {
  width: min(100%, var(--site-max-width));
  margin: 0 auto;
  flex: 1 0 auto;
}

body > .epilogue-section {
  flex-shrink: 0;
}

body[data-page-key] {
  --bg-color: #f3f3f3;
  background-color: #f3f3f3;
}

#smooth-content {
  padding-bottom: 0;
}

@media (max-width: 950px) {
  body,
  #main-content {
    min-width: 0;
  }
}

