


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
}


:root {
  
  --color-brand: #e2571e;
  --color-brand-deep: #b33e10;
  --color-brand-soft: #fdf0e8;
  --color-ink: #1e1512;
  --color-ink-soft: #43342c;
  --color-ink-muted: #6d5b51;
  --color-surface: #ffffff;
  --color-surface-alt: #fbf6f1;
  --color-line: #e9ded4;
  --color-line-dark: rgba(255, 255, 255, 0.12);
  --color-on-dark: #efe3da;
  --color-glow: rgba(226, 87, 30, 0.34);
  --color-glow-strong: rgba(226, 87, 30, 0.52);

  
  --shell-w: 76vw;
  --shell-max: 1180px;
  --gutter: 2.4vw;
  --hero-min: 74vh;

  
  --space-3xs: 0.25rem;
  --space-2xs: 0.4rem;
  --space-xs: 0.6rem;
  --space-sm: 0.9rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 2.75rem;
  --space-2xl: 3.5rem;

  
  --font-heading: 'Montserrat', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fs-hero: clamp(2.1rem, 4.4vw, 3.5rem);
  --fs-2xl: clamp(1.7rem, 2.6vw, 2.25rem);
  --fs-xl: clamp(1.25rem, 1.7vw, 1.5rem);
  --fs-lg: 1.125rem;
  --fs-md: 1rem;
  --fs-sm: 0.9rem;
  --fs-xs: 0.8rem;
  --fs-giant: clamp(2.6rem, 5vw, 4rem);

  
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 18px;
  --border-width: 2px;
  --shadow-soft: 0 4px 20px var(--color-glow);
  --shadow-lift: 0 8px 40px var(--color-glow-strong);
  --shadow-card: 0 10px 30px rgba(30, 21, 18, 0.08);
  --motion: 0.3s ease;
}


body {
  position: relative;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-md);
  line-height: 1.7;
  color: var(--color-ink);
  background: var(--color-surface);
  -webkit-font-smoothing: antialiased;
  padding-top: 100px; 
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--color-ink);
}
h1 { font-size: var(--fs-hero); font-weight: 800; }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); font-weight: 600; }
h4 { font-size: var(--fs-lg); font-weight: 600; }

p { font-size: var(--fs-md); line-height: 1.7; margin-bottom: var(--space-xs); }
a { color: var(--color-brand-deep); }
a:hover { color: var(--color-brand); }
ul, ol { list-style: none; }
strong { font-weight: 600; }
small { font-size: var(--fs-xs); }

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

@media (max-width: 768px) {
  body { padding-top: 118px; }
}
