:root {
  --bg: #f5f5f5;
  --surface: #ffffff;
  --text: #222222;
  --muted: #556270;
  --accent: #1c3d5a;
  --accent-hover: #163249;
  --border: #d7dde3;
  --error: #b00020;
  --success: #1e7a3b;
  --shadow: 0 1rem 2rem rgba(28, 61, 90, 0.08);
  --radius: 1rem;
  --max-width: 56rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img,
iframe {
  max-width: 100%;
}

.page {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.section {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.hero {
  padding-top: clamp(3rem, 8vw, 6rem);
}

.hero-layout {
  display: block;
}

.hero-copy {
  min-width: 0;
}

.hero img,
.hero-image {
  display: block;
  height: auto;
  border-radius: calc(var(--radius) - 0.125rem);
  object-fit: cover;
  object-position: center top;
}

.hero-image--wrapped {
  float: right;
  width: clamp(10rem, 28vw, 18rem);
  max-height: clamp(15rem, 34vw, 22rem);
  margin: 0 0 1rem 1.5rem;
  padding: clamp(0.3rem, 0.8vw, 0.45rem);
  background: var(--surface);
  border: 0.0625rem solid var(--border);
  border-radius: calc(var(--radius) + 0.25rem);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}
```

styles.css
```css
<<<<<<< SEARCH
.hero-copy {
  min-width: 0;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.25rem, 6vw, 4rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}

p {
  margin: 0 0 1rem;
}

.lead,
.supporting-copy,
.section-intro {
  max-width: 46rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--muted);
}

.support-cta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  max-width: 100%;
}

.supporter-inline-text {
  margin: 0;
  flex: 1 1 16rem;
  min-width: 0;
  font-size: clamp(1rem, 3.5vw, 1.125rem);
  font-weight: 700;
  color: var(--text);
  white-space: normal;
  overflow-wrap: break-word;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.875rem 1.5rem;
  border: 0;
  flex-shrink: 0;
```

styles.css
```css
<<<<<<< SEARCH
@media (max-width: 48rem) {
  .hero-image--wrapped {
    width: clamp(10rem, 24vw, 12rem);
    margin-left: 1rem;
  }
}

@media (max-width: 40rem) {
  .page,
  .site-footer {
    width: min(100% - 1.5rem, var(--max-width));
  }

  .hero-image--wrapped {
    width: clamp(10rem, 42vw, 11rem);
    margin-left: 0.875rem;
  }
}
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.button:hover,
.button:focus-visible {
  background: var(--accent-hover);
  transform: translateY(-0.0625rem);
}

.button:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.card {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--surface);
  border: 0.0625rem solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.counter-section,
.form-card,
.media-card {
  margin-top: 1.5rem;
}

.supporter-count {
  margin-bottom: 0.5rem;
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 800;
  color: var(--accent);
}

.supporter-count--inline {
  margin-bottom: 0;
  font-size: clamp(1.2em, 1.15em + 0.4vw, 1.45em);
  font-weight: 800;
  color: var(--error);
  line-height: 1;
}

.section-note,
.helper-text,
.footer-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 0.0625rem solid var(--border);
  border-radius: 0.75rem;
  background: #ffffff;
  color: var(--text);
  font: inherit;
}

textarea {
  resize: vertical;
}

.checkbox-group {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.75rem;
  align-items: start;
}

.checkbox-group input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.1875rem;
}

.checkbox-group label {
  margin: 0;
}

input:focus-visible,
textarea:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 0.1875rem solid rgba(28, 61, 90, 0.25);
  outline-offset: 0.125rem;
}

.form-status {
  min-height: 1.5rem;
  margin-top: 1rem;
  font-weight: 600;
}

.form-status.is-error {
  color: var(--error);
}

.form-status.is-success {
  color: var(--success);
}

.is-hidden {
  display: none;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.text-link {
  color: var(--accent);
  font-weight: 700;
}

.site-footer {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  padding: 0 0 3rem;
  color: var(--muted);
}

@media (max-width: 48rem) {
  .hero-image--wrapped {
    width: clamp(10rem, 24vw, 12rem);
    margin-left: 1rem;
  }
}

@media (max-width: 40rem) {
  .page,
  .site-footer {
    width: min(100% - 1.5rem, var(--max-width));
  }

  .hero-image--wrapped {
    width: clamp(10rem, 42vw, 11rem);
    margin-left: 0.875rem;
  }
}
