@font-face {
  font-family: 'Geist';
  src: url('https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-sans/Geist-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geist';
  src: url('https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-sans/Geist-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geist';
  src: url('https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-sans/Geist-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Canela';
  src: local('Instrument Serif'), local('Georgia');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Founders Grotesk';
  src: local('Cabinet Grotesk'), local('Arial');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Montreal';
  src: local('Satoshi'), local('Helvetica Neue');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'IBM Plex Mono';
  src: url('https://fonts.gstatic.com/s/ibmplexmono/v19/-F63fjptAgt5VM-kVkqdy1BA.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --glacier-granite: #55646B;
  --pine-canopy: #617D70;
  --mountain-moss: #8FA38A;
  --copper-sunset: #B97B52;
  --limestone-beige: #C7B697;
  --alpine-fog: #F1F5F3;
  --stone-mist: #DFE5E2;
  --midnight-forest: #2D3938;
  --slate-ink: #2B3132;
  --overlay: rgba(45, 57, 56, 0.30);
  --shadow-soft: 0 4px 24px rgba(45, 57, 56, 0.08);
  --shadow-lift: 0 12px 40px rgba(45, 57, 56, 0.14);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --container: 1240px;
  --container-narrow: 920px;
  --font-hero: 'Instrument Serif', 'Canela', Georgia, serif;
  --font-section: 'Cabinet Grotesk', 'Founders Grotesk', sans-serif;
  --font-body: 'Satoshi', 'Neue Montreal', sans-serif;
  --font-ui: 'Geist', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --transition: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 80px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: var(--slate-ink);
  background: var(--alpine-fog);
  position: relative;
  overflow-x: hidden;
  max-width: 100vw;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.label-mono {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pine-canopy);
}

.hero-title {
  font-family: var(--font-hero);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-title {
  font-family: var(--font-section);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.body-text {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: -0.008em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  cursor: pointer;
  border: none;
  min-height: 52px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--copper-sunset), #D39A72);
  color: #fff;
  box-shadow: 0 4px 16px rgba(185, 123, 82, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(185, 123, 82, 0.4);
}

.btn--secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn--dark {
  background: linear-gradient(135deg, var(--copper-sunset), #D39A72);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--slate-ink);
  border: 1px solid var(--stone-mist);
}

.btn--outline:hover {
  border-color: var(--pine-canopy);
  color: var(--pine-canopy);
}

.link-underline {
  position: relative;
  display: inline-block;
}

.link-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--copper-sunset);
  transition: width var(--transition);
}

.link-underline:hover::after {
  width: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

php, body {
  overflow-x: hidden !important;
  max-width: 100vw;
}
