:root {
  --bg: #f4f3ef;
  --surface: #ffffff;
  --ink: #121417;
  --ink-soft: #3d434c;
  --muted: #6b7280;
  --line: rgba(18, 20, 23, 0.08);
  --teal: #0c6c6d;
  --teal-deep: #0a3f40;
  --teal-ink: #082c2d;
  --gold: #e3b31a;
  --sun: #f0a202;
  --green: #2e8a46;
  --dark: #101614;
  --dark-2: #171e1c;
  --glass: rgba(255, 255, 255, 0.62);
  --shadow: 0 18px 50px rgba(16, 22, 20, 0.08);
  --shadow-lg: 0 30px 80px rgba(16, 22, 20, 0.16);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --container: 1180px;
  --header: 78px;
  --font-display: "Outfit", sans-serif;
  --font-body: "Manrope", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

address {
  font-style: normal;
}

h1,
h2,
h3,
.brand strong {
  font-family: var(--font-display);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background: #f7f6f2;
  transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}

.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  position: relative;
  display: grid;
  place-items: center;
  gap: 18px;
}

.preloader__orbit {
  position: absolute;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  border: 1px solid rgba(12, 108, 109, 0.18);
  border-top-color: var(--gold);
  border-right-color: var(--teal);
  animation: spin 1.1s linear infinite;
}

.preloader__logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
  animation: pulse 1.4s var(--ease) infinite;
}

.preloader__name {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 12px 16px 0;
}

.header__bar {
  width: min(100%, 1280px);
  margin: 0 auto;
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 18px 10px 12px;
  border-radius: 22px;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 40px rgba(16, 22, 20, 0.06);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.header.is-scrolled .header__bar {
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand__text strong {
  font-size: 14px;
  font-weight: 650;
}

.brand__text small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav a {
  font-size: 13.5px;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--teal);
  transition: width 0.35s var(--ease);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero {
  padding: 10px 16px 0;
}

.hero__frame {
  position: relative;
  min-height: min(92vh, 860px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  will-change: transform;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(244, 243, 239, 0.88) 0%, rgba(244, 243, 239, 0.62) 34%, rgba(244, 243, 239, 0.08) 62%),
    linear-gradient(180deg, rgba(16, 22, 20, 0.08) 0%, rgba(16, 22, 20, 0.18) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(680px, calc(100% - 48px));
  padding: 120px 28px 72px;
}

.hero__title {
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  color: var(--ink);
  max-width: 11ch;
  margin: 14px 0 18px;
}

.hero__lead {
  max-width: 42ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.audience {
  padding: 28px 0 8px;
}

.audience__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  font-family: var(--font-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
}

.audience__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.section {
  padding: 92px 0;
}

.section--tight {
  padding-top: 48px;
}

.section__head {
  margin-bottom: 36px;
}

.section__head h2,
.about-panel h2,
.cta-panel h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section__head--split {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.section__lead {
  margin-top: 12px;
  max-width: 52ch;
  color: var(--ink-soft);
}

.footer {
  padding: 28px 0 110px;
  border-top: 1px solid var(--line);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: center;
  gap: 24px;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
}

.footer__meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

body.is-locked {
  overflow: hidden;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  50% {
    transform: scale(1.05);
  }
}

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

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