* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html{
  scroll-padding-top: var(--navigationBarHeight);
  scroll-behavior: smooth;
}

:root {
  /* ── Brand colours ─────────────────────────────── */
  --primary: #ff6a3e;
  --primaryLight: #ffba43;
  --primaryDark: #d94e22;
  --secondary: #ffba43;
  --secondaryLight: #ffba43;

  /* ── Backgrounds ───────────────────────────────── */
  --light-background: #ffffff;
  --dark-background: #000000;
  --dark-background-transparent: #0000009c;
  --color-bg: #ffffff;
  --color-bg-light: #f8fafc;

  /* ── Text colours ──────────────────────────────── */
  --headerColor: #1a1a1a;
  --bodyTextColor: #4e4b66;
  --bodyTextColorWhite: #fafbfc;
  --bodyTextColorDark: #2e1003;
  --color-text: #1e293b;
  --color-text-light: #64748b;

  /* ── Borders ───────────────────────────────────── */
  --color-border: #e2e8f0;
  --borderRadius0: 0.5rem;
  --border-radius: 8px;

  /* ── Shadows ───────────────────────────────────── */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);

  /* ── Typography ────────────────────────────────── */
  --font-family: 'Exo 2', sans-serif;
  --font-size-small: 14px;
  --font-size-large: 18px;
  --topperFontSize: 1rem;
  --bodyFontSize: 1rem;
  --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
  --header2FontSize: clamp(2.0em, 5.4vw, 3.2rem);

  /* ── Spacing ───────────────────────────────────── */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-2xl: 64px;
  --margin0: 1.5rem;
  --padding0: 1rem;

  /* ── Layout ────────────────────────────────────── */
  --width0: 80vw;
  --maxWidth0: clamp(29rem, 60vw, 35.125rem);
  --sectionContentWidth: clamp(29rem, 70vw, 44rem);
  --container-max-width: 1200px;
  --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
  --navigationBarHeight: 5.5rem;
}

*, *:before, *:after {
  box-sizing: border-box;
}

/* ── Shared section heading ─────────────────────────
   Single source of truth for all section titles.
   Add this class to any <h2> section heading.       */
.cs-section-heading {
  /* Typography */
  font-family: var(--font-family);
  font-size: var(--header2FontSize);
  font-weight: 800;
  line-height: 1.2em;
  letter-spacing: 0.02em;
  /* Visual container */
  display: block;
  width: 100%;
  max-width: var(--sectionContentWidth);
  padding: var(--padding0);
  margin: 0 auto var(--margin0);
  background-color: var(--primaryLight);
  color: var(--headerColor);
  border-radius: var(--borderRadius0);
  text-align: center;
  box-sizing: border-box;
}

.cs-title {
  font-family: var(--font-family);
  font-size: var(--headerFontSize);
  font-weight: 900;
  line-height: 1.15em;
  letter-spacing: -0.02em;
  text-align: inherit;
  max-width: 43.75rem;
  margin: 0 0 1rem 0;
  color: var(--headerColor);
  position: relative;
}

.cs-text {
  font-family: var(--font-family);
  font-size: var(--bodyFontSize);
  font-weight: 400;
  line-height: 1.65em;
  letter-spacing: 0.01em;
  text-align: inherit;
  width: 100%;
  max-width: 40.625rem;
  margin: 0;
  color: var(--bodyTextColor);
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
}
