/* ─── Fonts ─── */
@font-face { font-family:'Axiforma'; font-weight:400; src:url('fonts/axiforma/axiforma_book-webfont.woff2') format('woff2'); }
@font-face { font-family:'Axiforma'; font-weight:500; src:url('fonts/axiforma/axiforma_medium-webfont.woff2') format('woff2'); }
@font-face { font-family:'Axiforma'; font-weight:600; src:url('fonts/axiforma/axiforma_semibold-webfont.woff2') format('woff2'); }
@font-face { font-family:'Axiforma'; font-weight:700; src:url('fonts/axiforma/axiforma_bold-webfont.woff2') format('woff2'); }
@font-face { font-family:'Axiforma'; font-weight:800; src:url('fonts/axiforma/axiforma_heavy-webfont.woff2') format('woff2'); }
@font-face { font-family:'Axiforma'; font-weight:900; src:url('fonts/axiforma/axiforma_black-webfont.woff2') format('woff2'); }

/* ─── Tokens ─── */
:root {
  --bg:            #F5F3EE;
  --bg-warm:       #EFEBE2;
  --surface:       #FFFFFF;
  --ink:           #1C1C1E;
  --ink-2:         #4B4F56;
  --ink-3:         #6B6F76;
  --ink-4:         #9CA0A8;
  --line:          #E6E1D8;
  --line-2:        #D6CFC0;
  --orange:        #FF6A1A;
  --orange-dark:   #D85410;
  --orange-soft:   #FFE4D2;
  --teal:          #4FC3C8;
  --teal-soft:     #DFF4F5;
  --night:         #0F1B2E;
  --yellow:        #FFC857;
  --green:         #2A9D6F;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 32px;

  --font: 'Axiforma', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  --shadow-sm: 0 2px 6px rgba(15,27,46,.05), 0 0 0 1px rgba(15,27,46,.04);
  --shadow-md: 0 12px 32px -8px rgba(15,27,46,.12), 0 4px 10px -4px rgba(15,27,46,.06);
  --shadow-lg: 0 32px 80px -20px rgba(15,27,46,.25), 0 12px 28px -12px rgba(15,27,46,.12);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin:0; padding:0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font);
  font-weight: 400;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  font-size: 17px;
  text-rendering: optimizeLegibility;
}
img { max-width:100%; display:block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--orange); color: #fff; }

/* ─── Layout ─── */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 28px; }
section { padding: 92px 0; }
@media (max-width: 720px) {
  section { padding: 64px 0; }
  body { font-size: 16px; }
  .wrap, .wrap-narrow { padding: 0 20px; }
}

/* ─── Type ─── */
h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.02em; line-height: 1.08; margin: 0; color: var(--ink); }
h1 { font-size: clamp(40px, 6vw, 76px); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(30px, 4.2vw, 52px); letter-spacing: -0.028em; }
h3 { font-size: clamp(22px, 2.4vw, 28px); }
h4 { font-size: 18px; font-weight: 600; }
p  { margin: 0; color: var(--ink-2); }
.lead { font-size: clamp(18px, 1.6vw, 21px); color: var(--ink-2); line-height: 1.55; text-wrap: pretty; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--orange-dark); padding: 6px 12px; border-radius: 100px;
  background: var(--orange-soft);
}
.eyebrow.teal { color: #2D8488; background: var(--teal-soft); }
.eyebrow.ink  { color: var(--ink-2); background: var(--bg-warm); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 52px; padding: 0 26px;
  border-radius: 100px;
  font-weight: 600; font-size: 16px;
  border: 1.5px solid transparent;
  transition: transform .12s, background .15s, color .15s, border-color .15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-dark { background: var(--night); color: #fff; }
.btn-dark:hover { background: #1c2c47; }
.btn svg { width: 18px; height: 18px; }

/* ─── Nav ─── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245,243,238,.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.nav.scrolled { border-color: var(--line); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 22px; letter-spacing: -0.02em; }
.brand-mark {
  width: 32px; height: 32px; border-radius: 8px; object-fit: cover;
  box-shadow: 0 2px 8px rgba(216,84,16,.25);
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--ink-2); transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-cta .btn { height: 42px; padding: 0 18px; font-size: 14px; }
@media (max-width: 820px) {
  .nav-links { display: none; }
}
