/* Center align how section content */
.how .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
/* Center the steps grid horizontally */
.how-steps {
  justify-content: center;
}
/* Ensure how section fills the screen */
.how {
  min-height: 100vh;
  display: flex;
  align-items: center;
}
/* Ensure hero and statement sections fill the screen */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.statement {
  min-height: 100vh;
  display: flex;
  align-items: center;
}
/* Scroll reveal animation */
.scroll-reveal {
  opacity: 0;
  transform: translateY(120px);
  transition: opacity 2.2s cubic-bezier(.5,0,.2,1), transform 2.2s cubic-bezier(.5,0,.2,1);
  will-change: opacity, transform;
}
.scroll-reveal.visible,
.scroll-reveal.revealed {
  opacity: 1;
  transform: none;
}
:root {
  /* Colours */
  --bg-page: #FEFEFE;
  --bg-section: #FDFBF7;
  --border-soft: #E4D8CC;
  --text-primary: #432405;
  --text-secondary: #82624D;
  --text-secondary-strong: #442A1D;
  --accent-brown: #955420;
  --accent-cta: #BC774C;
  --accent-orange: #E5803B;
  --text-on-accent: #F3FBF7;
  --text-warm-muted: #BF977C;

  /* Opacity tokens */
  --muted-57: 0.57;
  --muted-55: 0.55;
  --muted-65: 0.65;
  --muted-60: 0.60;
  --muted-18: 0.18;
  --muted-58: 0.58;

  /* Typography */
  --h1-size: clamp(2.2rem, 5vw, 2.813rem); /* 45px */
  --h2-size: clamp(2.5rem, 6vw, 3.038rem); /* 48.6px */
  --hero-sub-size: clamp(1.1rem, 3vw, 1.438rem); /* 23px */
  --hero-italic-size: clamp(1.05rem, 2.5vw, 1.313rem); /* 21px */
  --body-lg: clamp(1.1rem, 2vw, 1.375rem); /* 22px */
  --label-size: 16px;
  --step-title: clamp(1.2rem, 3vw, 1.65rem); /* 26.4px */
  --step-body: clamp(1rem, 2vw, 1.281rem); /* 20.5px */
  --form-label: clamp(1rem, 2vw, 1.169rem); /* 18.7px */
  --link-size: clamp(1rem, 2vw, 1.369rem); /* 21.9px */
  --footer-heading: 21.8px;
  --footer-desc: 15.8px;
  --footer-address: 12px;
  --footer-legal: 11.4px;

  /* Font */
  --font-main: 'Poppins', Arial, sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  height: auto;
  box-sizing: border-box;
  font-size: 16px;
  background: var(--bg-page);
  color: var(--text-primary);
  font-family: var(--font-main);
}

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

body {
  display: block;
}

a {
  color: var(--accent-brown);
  text-decoration: underline;
  font-size: var(--link-size);
}

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

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

input, textarea {
  font-family: var(--font-main);
  font-size: var(--form-label);
  color: var(--text-primary);
  background: var(--bg-page);
  border: 1px solid var(--border-soft);
  padding: 0.75em 1em;
  border-radius: 6px;
  margin-bottom: 1em;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

label {
  font-size: var(--form-label);
  color: var(--text-primary);
  opacity: var(--muted-60);
  display: block;
  margin-bottom: 0.5em;
}

::placeholder {
  color: var(--text-primary);
  opacity: var(--muted-18);
}
