*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img, video { max-width: 100%; height: auto; display: block; }
input, button, textarea, select { font: inherit; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; }
p:last-child { margin-bottom: 0; }

:root {
  --color-primary:    #1B5E2A;
  --color-primary-lt: #2D7A42;
  --color-primary-dk: #124420;
  --color-accent-lt:  #EBF3EC;
  --color-ink:        #111111;
  --color-body:       #3B3B3B;
  --color-bg:         #F5F4F0;
  --color-surface:    #FFFFFF;
  --color-muted:      #8A857D;
  --color-border:     #DEDAD4;
  --color-error:      #B91C1C;

  --font-display: 'Cormorant Garant', 'Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --type-hero: clamp(3.5rem, 10vw, 8rem);
  --type-h1:   clamp(2rem, 4vw, 3.25rem);
  --type-h2:   clamp(1.5rem, 3vw, 2.25rem);
  --type-h3:   clamp(1.1rem, 2vw, 1.4rem);
  --type-body: 1rem;
  --type-sm:   0.875rem;
  --type-xs:   0.75rem;

  --sp-xs:  0.25rem;
  --sp-sm:  0.5rem;
  --sp-md:  1rem;
  --sp-lg:  2rem;
  --sp-xl:  4rem;
  --sp-2xl: 6rem;
  --sp-sec: clamp(3rem, 7vw, 4rem);

  --container: 1200px;
  --gap:       1.25rem;

  --r-sm:   4px;
  --r-md:   10px;
  --r-lg:   18px;
  --r-pill: 999px;

  --sh-card:  0 2px 12px rgba(0,0,0,0.07);
  --sh-hover: 0 8px 32px rgba(0,0,0,0.12);

  --tr-fast: 150ms ease;
  --tr-base: 280ms ease;
  --tr-slow: 550ms ease;

  --nav-h: 72px;
}

body {
  font-family: var(--font-body);
  font-size: var(--type-body);
  color: var(--color-body);
  background-color: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--color-ink);
  line-height: 1.15;
  font-weight: 500;
}

h1 { font-size: var(--type-h1); }
h2 { font-size: var(--type-h2); }
h3 { font-size: var(--type-h3); }

p { margin-bottom: 1em; }
strong { font-weight: 600; }

@view-transition { navigation: auto; }