

/* ── Font Faces ───────────────────────────────────────────── */
@font-face {
  font-family: 'Barlow';
  font-weight: 400;
  font-style: normal;
  src: url('../fonts/Barlow-Regular.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  font-weight: 500;
  font-style: normal;
  src: url('../fonts/Barlow-Medium.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  font-weight: 600;
  font-style: normal;
  src: url('../fonts/Barlow-SemiBold.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  font-weight: 700;
  font-style: normal;
  src: url('../fonts/Barlow-Bold.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Teodor TRIAL';
  font-weight: 400;
  font-style: normal;
  src: url('../fonts/Teodor-Regular.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Teodor TRIAL';
  font-weight: 400;
  font-style: italic;
  src: url('../fonts/Teodor-RegularItalic.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'La Belle Aurore';
  font-weight: 400;
  font-style: normal;
  src: url('../fonts/LaBelleAurore-Regular.woff2') format('woff2');
  font-display: swap;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-regular);
  line-height: var(--leading-relaxed);
  color: var(--color-body);
  background-color: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-width: 320px;
}

/* ── Typography Hierarchy ─────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--weight-regular);
  line-height: var(--leading-tight);
  color: var(--color-charcoal);
}

h1 { font-size: clamp(40px, 5vw, 80px); }
h2 { font-size: clamp(28px, 3.5vw, 56px); }
h3 { font-size: clamp(22px, 2vw, 36px); }
h4 { font-size: clamp(18px, 1.8vw, 28px); }

p {
  line-height: var(--leading-relaxed);
  color: var(--color-body);
}

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

a:hover { text-decoration: underline; }

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

input, textarea, select {
  font-family: var(--font-body);
  font-size: var(--text-base);
}

ul, ol { list-style: none; }

/* ── Focus Ring ───────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: 2px;
}

/* ── Layout Utilities ────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--space-15);
}

@media (max-width: 1200px) {
  .container { padding-inline: var(--space-8); }
}
@media (max-width: 1024px) {
  .container { padding-inline: var(--space-6); }
}
@media (max-width: 768px) {
  .container { padding-inline: var(--space-4); }
}
@media (max-width: 480px) {
  .container { padding-inline: var(--space-3); }
}

/* ── Page section spacing ─────────────────────────────────── */
.section {
  padding: var(--space-15) 0;
}
@media (max-width: 768px) {
  .section { padding: var(--space-10) 0; }
}
