/* ============================================================
   Breakpoints (used in @media rules, not as CSS variables):
   - Small (mobile):  max-width: 639px
   - Tablet:          min-width: 640px
   - Desktop:         min-width: 960px
   - Wide:            min-width: 1280px
   ============================================================ */

:root {
  /* Tonal palette */
  --background-10: #0d1822;
  --background-20: #111e2a;
  --background-80: #eef4f7;
  --background-90: #ffffff;

  /* Text tones */
  /* On light backgrounds (80/90), --text is used for headings (deliberately softer, */
  /* since bigger/heavier text can carry less contrast) and --text-muted is used for */
  /* body text (stronger contrast, since smaller/thinner text needs it for legibility). */
  --text-10: #e8ecef;
  --text-10-muted: #b0bcc6;
  --text-20: #ffffff;
  --text-20-muted: #c6cfd6;
  --text-80: #203241;
  --text-80-muted: #1c2833;
  --text-90: #203241;
  --text-90-muted: #1c2833;

  /* Primary accent (Nutropic pink) */
  --primary-10: #ac4f73;
  --primary-10-muted: #b03d69;
  --primary-20: #c7517f;
  --primary-20-muted: #b03d69;
  --primary-80: #cb336d;
  --primary-80-muted: #8f264e;
  --primary-90: #cb336d;
  --primary-90-muted: #8f264e;

  /* Secondary accent (Nutropic light blue) */
  --secondary-10: #b8dbe8;
  --secondary-10-muted: #8ab0c0;
  --secondary-20: #b8dbe8;
  --secondary-20-muted: #8ab0c0;
  --secondary-80: #4a7a92;
  --secondary-80-muted: #3a6078;
  --secondary-90: #4a7a92;
  --secondary-90-muted: #3a6078;

  /* Typography families */
  --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Weights */
  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;
  --weight-black: 900;

  /* Sizes — fluid from mobile floor to desktop ceiling (~2560px).
     The `+ Yrem` component preserves user font-size preferences for accessibility. */
  --size-hero: clamp(2.25rem, 2.5vw + 1rem, 5rem);
  --size-h2: clamp(1.8rem, 1.5vw + 1rem, 3.5rem);
  --size-h3: clamp(1.125rem, 0.5vw + 1rem, 1.5rem);
  --size-body: clamp(1rem, 0.25vw + 0.75rem, 1.25rem);
  --size-deck: clamp(1.1rem, 0.5vw + 0.75rem, 1.5rem);
  --size-kicker: clamp(0.9rem, 0.25vw + 0.8rem, 1.125rem);
  --size-small: clamp(0.875rem, 0.2vw + 0.8rem, 1rem);
  --size-button: clamp(0.85rem, 0.3vw + 0.6rem, 1rem);
  --size-menu: clamp(1rem, 0.25vw + 0.9rem, 1.125rem);
  --size-card-title: clamp(1.3rem, 0.75vw + 1.1rem, 1.75rem);

  /* Decorative line thicknesses */
  --kicker-line-thickness: 0.15rem;   /* underline beneath kicker labels */

  /* Icon sizes — fluid, rem-based */
  --icon-size-sm: clamp(1.25rem, 0.5vw + 1rem, 1.75rem);     /*  20px – 28px */
  --icon-size-md: clamp(1.5rem, 0.5vw + 1.25rem, 2rem);      /*  24px – 32px */
  --icon-size-lg: clamp(1.75rem, 0.5vw + 1.5rem, 2.25rem);   /*  28px – 36px */

  /* Logo height — scales gently with viewport */
  --logo-height: clamp(1.75rem, 0.5vw + 1.5rem, 2.5rem);     /*  28px – 40px */

  /* Line heights */
  --leading-none: 1;           /* standalone visual UI text (labels, copyright, buttons) */
  --leading-tight: 1.2;        /* headings that may wrap to 2+ lines */
  --leading-normal: 1.5;       /* body text, decks */
  --leading-relaxed: 1.7;      /* prose paragraphs */
  --leading-loose: 2;          /* elements needing extra breathing room */

  /* Letter spacing */
  --tracking-tight: -0.01em;
  --tracking-normal: 0;
  --tracking-wide: 0.05em;
  --tracking-wider: 0.1em;

  /* Spacing scale — small tokens fixed, larger tokens fluid */
  --space-1: clamp(0.25rem, 0.2vw + 0.2.5rem, 0.5rem);
  --space-2: clamp(0.5rem, 0.4vw + 0.5rem, 1rem);
  --space-3: clamp(0.75rem, 0.5vw + 0.7rem, 1.5rem);
  --space-4: clamp(1rem, 0.7vw + 0.8rem, 2rem);
  --space-5: clamp(1.5rem, 1vw + 1.1rem, 3rem);
  --space-6: clamp(2rem, 1.5vw + 1.5rem, 4rem);
  --space-7: clamp(3rem, 2.2vw + 2.2rem, 6rem);
  --space-8: clamp(4rem, 3vw + 3rem, 8rem);
  --space-9: clamp(6rem, 5vw + 4rem, 12rem);
  --space-10: clamp(8rem, 6vw + 5rem, 16rem);

  /* Padding tokens — chrome (header/footer) is tighter than content sections.
     Content padding grows non-linearly: base 5% of viewport, plus an additional
     0.15 * (viewport - 1280px) once viewport exceeds 1280px. This means the
     percentage of viewport used for padding increases as the screen grows larger
     (5% at 1280px → ~12% at 2560px → 15% at 3840px). Two tunable numbers:
     the threshold (1280px) and the boost multiplier (0.15). */
  --padding-content-x: clamp(
    1.25rem,
    calc(6vw +
      max(0px, (100vw - 900px) * 0.04) +
      max(0px, (100vw - 1200px) * 0.06) +
      max(0px, (100vw - 1500px) * 0.08) +
      max(0px, (100vw - 1800px) * 0.1)
    ),
    40rem
  );
  --padding-chrome-x: clamp(1rem, 1.5vw + 0.4rem, 5rem);
  --padding-section-y: clamp(3.5rem, 6vw + 1.5rem, 8rem);
  --padding-footer-top: clamp(2.5rem, 3vw + 1rem, 4rem);
  --padding-footer-bottom: clamp(2rem, 2vw + 1rem, 3rem);

  /* Header height — fluid from 4rem on mobile to 5rem at wide viewports */
  --header-height: clamp(4rem, 1vw + 3.25rem, 5rem);

  /* Radii */
  --radius-sm: 0.1875rem;   /* ~3px */
  --radius-md: 0.375rem;    /* ~6px */
  --radius-lg: 0.75rem;     /* ~12px */
  --radius-pill: 62.5rem;   /* ~1000px, effectively fully rounded */

  /* Shadows */
  --shadow-sm: 0 0.0625rem 0.125rem rgba(7, 27, 40, 0.05);
  --shadow-md: 0 0.25rem 1rem rgba(7, 27, 40, 0.08);
  --shadow-lg: 0 0.5rem 2rem rgba(7, 27, 40, 0.12);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-default: 0.25s ease;
  --transition-slow: 0.4s ease;

  /* Animation */
  --anim-duration: 0.6s;
  --anim-offset: 1.25rem;
  --anim-easing: cubic-bezier(0.22, 1, 0.36, 1);
  --anim-stagger: 80ms;

  --anim-delay-1: 0s;
  --anim-delay-2: 0.1s;
  --anim-delay-3: 0.2s;
  --anim-delay-4: 0.3s;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  font-size: var(--size-body);
  line-height: var(--leading-normal);
  background-color: var(--background-90);
  color: var(--text-90);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  max-width: 100%;
  display: block;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

p {
  margin: 0;
}

/* --- Section theming (semantic cascading) --- */

.section--darker {
  background-color: var(--background-10);
  --text: var(--text-10);
  --text-muted: var(--text-10-muted);
  --primary: var(--primary-10);
  --primary-muted: var(--primary-10-muted);
  --secondary: var(--secondary-10);
  --secondary-muted: var(--secondary-10-muted);
}

.section--dark {
  background-color: var(--background-20);
  --text: var(--text-20);
  --text-muted: var(--text-20-muted);
  --primary: var(--primary-20);
  --primary-muted: var(--primary-20-muted);
  --secondary: var(--secondary-20);
  --secondary-muted: var(--secondary-20-muted);
}

.section--light {
  background-color: var(--background-80);
  --text: var(--text-80);
  --text-muted: var(--text-80-muted);
  --primary: var(--primary-80);
  --primary-muted: var(--primary-80-muted);
  --secondary: var(--secondary-80);
  --secondary-muted: var(--secondary-80-muted);
}

.section--lighter {
  background-color: var(--background-90);
  --text: var(--text-90);
  --text-muted: var(--text-90-muted);
  --primary: var(--primary-90);
  --primary-muted: var(--primary-90-muted);
  --secondary: var(--secondary-90);
  --secondary-muted: var(--secondary-90-muted);
}

/* --- Typography --- */

/* Bare heading elements are styled as neutral safe defaults. Visible heading
   appearance is driven by the .kicker (h1/h2/h3) and .headline (p) classes,
   which separates semantic level from visual role. */
h1, h2, h3 {
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

h1 { font-size: var(--size-hero); }
h2 { font-size: var(--size-h2); }
h3 { font-size: var(--size-h3); font-weight: var(--weight-regular); }

/* Kicker — small uppercase label with primary-colour underline.
   Applied to h1/h2/h3 so the visually "small" label is the semantic heading,
   while the visually prominent descriptive text becomes a <p class="headline">. */
.kicker {
  display: inline-block;
  align-self: start;  /* prevents flex containers (e.g. hero) from stretching the kicker's box to full width */
  font-family: var(--font-heading);
  font-weight: var(--weight-extrabold);
  font-size: var(--size-kicker);
  line-height: var(--leading-relaxed);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--text);
  box-shadow: inset 0 calc(-1 * var(--kicker-line-thickness)) 0 0 var(--primary);
  margin-bottom: var(--space-5);
}

/* Hidden keyword span inside a kicker heading. Lets the heading include
   SEO-relevant keywords (e.g. "AI Consultancy Australia") that remain in the
   DOM and accessibility tree but do not render visibly. Collapsed to zero
   width with overflow hidden — preferred over display:none because search
   engines discount content that is visually removed. */
.kicker .label {
  display: inline-block;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  vertical-align: bottom;
}

/* Headline — the visually prominent descriptive statement paired with a kicker.
   Uses the same typographic treatment as a former <h2>, but lives in a <p>
   so the semantic heading level stays with the short kicker label above. */
.headline {
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--size-h2);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-5);
}

/* Hero variant — larger size, wider max-width for the opening statement. */
.headline--hero {
  font-size: var(--size-hero);
  max-width: 56.25rem;
}

.deck {
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  font-size: var(--size-deck);
  line-height: var(--leading-normal);
  color: var(--text-muted);
  max-width: 45rem;
  margin-bottom: var(--space-5);
}

/* --- Section layout --- */

.section {
  padding: var(--padding-section-y) var(--padding-content-x);
  position: relative;
  width: 100%;
}

/* --- Header --- */

/* Suppress transitions on the mobile menu and scrim during viewport resize.
   Prevents a spurious slide-out animation when the breakpoint flips from
   desktop to mobile (where transform changes from none to translateX(100%)).
   The .is-resizing class is added and removed by scripts.js on resize. */
.is-resizing .header__menu,
.is-resizing .header::before {
  transition: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--background-20);
  padding: 0 var(--padding-chrome-x);
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Semantic variable cascade — header is a dark context (matches hero) */
  --text: var(--text-20);
  --text-muted: var(--text-20-muted);
  --primary: var(--primary-20);
  --primary-muted: var(--primary-20-muted);
  --secondary: var(--secondary-20);
  --secondary-muted: var(--secondary-20-muted);
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__logo-img {
  max-height: var(--logo-height);
  width: auto;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.header__menu a:not(.button) {
  font-family: var(--font-body);
  font-size: var(--size-menu);
  font-weight: var(--weight-semibold);
  color: var(--text-muted);
  transition: color var(--transition-default);
  white-space: nowrap;
}

.header__menu a:not(.button):hover {
  color: var(--text);
}

/* Hamburger */
.header__toggle-input {
  display: none;
}

.header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.3125rem;
  cursor: pointer;
  padding: var(--space-2);
  z-index: 1003;
  position: relative;
}

.header__toggle span {
  display: block;
  width: 1.375rem;
  height: 0.125rem;
  background-color: var(--text);
  border-radius: 0.0625rem;
  transition: transform var(--transition-slow), opacity var(--transition-slow);
}

/* --- Hero --- */

.section--hero {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--header-height) + var(--space-8));
  padding-bottom: var(--space-8);
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.hero__social {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.hero__social a {
  color: var(--text-muted);
  transition: color var(--transition-default);
  display: flex;
  align-items: center;
}

.hero__social a:hover {
  color: var(--secondary);
}

/* Hero social icons render 15% larger than the default token sizes.
   Scoped to .hero__social so footer icons remain at their default size. */
.hero__social .icon--sm {
  width: calc(var(--icon-size-sm) * 1.15);
  height: calc(var(--icon-size-sm) * 1.15);
}

.hero__social .icon--md {
  width: calc(var(--icon-size-md) * 1.15);
  height: calc(var(--icon-size-md) * 1.15);
}

.hero__social .icon--lg {
  width: calc(var(--icon-size-lg) * 1.15);
  height: calc(var(--icon-size-lg) * 1.15);
}

/* --- Buttons --- */

.button {
  display: inline-block;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--size-button);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-none);
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  transition: background-color var(--transition-default), transform var(--transition-default);
  text-align: center;
}

.button--primary {
  background-color: var(--primary-muted);
  color: var(--text-10);
}

.button--primary:hover {
  background-color: var(--primary);
}

.button--small {
  padding: var(--space-2) var(--space-3);
}

/* --- Prose grid (ul of li text items) --- */

.prose-grid {
  list-style: none;
  padding: 0;
  margin: var(--space-6) 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.prose-grid li {
  font-family: var(--font-body);
  font-size: var(--size-body);
  line-height: var(--leading-relaxed);
  color: var(--text-muted);
}

/* --- Card grid (ul of li cards) --- */

.card-grid {
  list-style: none;
  padding: 0;
  margin: var(--space-7) 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

.card {
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
}

/* Card treatment on light (tinted) background */
.section--light .card {
  background-color: var(--background-90);
}

/* Card treatment on lighter (near-white) background */
.section--lighter .card {
  background-color: var(--background-80);
}

.card__title {
  display: block;
  font-family: var(--font-heading);
  font-weight: var(--weight-semibold);
  font-size: var(--size-card-title);
  color: var(--text);
  margin-bottom: var(--space-2);
}

.card__desc {
  font-size: var(--size-body);
  line-height: var(--leading-relaxed);
  color: var(--text-muted);
  margin: 0;
}

/* --- Contact section --- */

.section--contact {
  text-align: center;
}

.section--contact .headline,
.section--contact .deck,
.section--contact .kicker {
  margin-left: auto;
  margin-right: auto;
}

.section--contact .headline {
  max-width: 43.75rem;
}

.section--contact .deck {
  max-width: 40rem;
}

.contact__email {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: var(--weight-medium);
  color: var(--text);
  transition: color var(--transition-default), border-color var(--transition-default);
  border-bottom: 0.0625rem solid rgba(184, 219, 232, 0.3);
  padding-bottom: var(--space-1);
}

.contact__email:hover {
  color: var(--secondary);
  border-bottom-color: var(--secondary);
}

/* --- Footer --- */

.footer {
  background-color: var(--background-10);
  color: var(--text-10-muted);
  padding: var(--padding-footer-top) var(--padding-chrome-x) var(--padding-footer-bottom);
  text-align: center;
  /* Semantic variable cascade — footer is the "darker" context (deepest dark), in contrast to the header and hero which use the "dark" context */
  --text: var(--text-10);
  --text-muted: var(--text-10-muted);
  --primary: var(--primary-10);
  --primary-muted: var(--primary-10-muted);
  --secondary: var(--secondary-10);
  --secondary-muted: var(--secondary-10-muted);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}

.footer__links a {
  display: flex;
  align-items: center;
  color: var(--text-10-muted);
  transition: color var(--transition-default);
}

.footer__links a:hover {
  color: var(--secondary-10);
}

.footer__links a svg {
  display: block;
}

/* --- Icons (SVG sprite references) --- */

.icon {
  display: block;
  fill: currentColor;
}

.icon--sm { width: var(--icon-size-sm); height: var(--icon-size-sm); }
.icon--md { width: var(--icon-size-md); height: var(--icon-size-md); }
.icon--lg { width: var(--icon-size-lg); height: var(--icon-size-lg); }

.footer__copy {
  font-size: var(--size-small);
  line-height: var(--leading-none);
  color: #5a6e80;
}

/* ============================================================
   Animation system
   ============================================================ */

.animate .section .kicker,
.animate .section .headline,
.animate .section .deck,
.animate .section .card,
.animate .section .prose-grid li {
  opacity: 0;
  transform: translateY(var(--anim-offset));
  transition:
    opacity var(--anim-duration) var(--anim-easing) var(--_delay, 0s),
    transform var(--anim-duration) var(--anim-easing) var(--_delay, 0s);
}

.animate .section .kicker   { --_delay: var(--anim-delay-1); }
.animate .section .headline { --_delay: var(--anim-delay-2); }
.animate .section .deck     { --_delay: var(--anim-delay-3); }

/* Cards and prose-grid items both stagger in by --anim-stagger (80ms) per index */
.animate .section .card,
.animate .section .prose-grid li {
  --_delay: calc(
    var(--anim-delay-4) + (var(--_stagger-index, 0) * var(--anim-stagger))
  );
}

.animate .section.visible * {
  opacity: 1;
  transform: none;
}

/* Specific reveal rules matching the initial-hidden specificity for element-selector-based rules.
   Without these, the element selector in the initial-hidden rule beats the universal reveal. */
.animate .section.visible .prose-grid li {
  opacity: 1;
  transform: none;
}

/* ============================================================
   Responsive -- Tablet +
   ============================================================ */
@media (min-width: 640px) {
  .prose-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-7);
  }

  .card-grid--services {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid--industries {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid--methodology {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__links {
    flex-direction: row;
    justify-content: center;
    gap: var(--space-7);
  }
}

/* ============================================================
   Responsive -- Tablet compact chrome (640–959px)
   Makes nav items and header slightly smaller in portrait tablets.
   ============================================================ */
@media (min-width: 640px) and (max-width: 959px) {
  :root {
    --size-menu: 0.9375rem;
    --header-height: 3.75rem;
  }
}

/* ============================================================
   Responsive -- Desktop
   ============================================================ */
@media (min-width: 960px) {
  .card-grid--services {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-grid--industries {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-grid--methodology {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ============================================================
   Responsive -- Hamburger menu (mobile + tablet portrait, up to 959px)
   Inline menu has too little room below this width, so the header
   collapses into a hamburger + slide-out menu at both tablet-portrait
   and phone widths.
   ============================================================ */
@media (max-width: 959px) {
  .header__toggle {
    display: flex;
  }

  .header__menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 16.25rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 5rem 2rem 2rem;
    background-color: var(--background-20);
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    z-index: 1002;
  }

  .header__menu a:not(.button) {
    font-size: var(--size-body);
    padding: var(--space-3) 0;
    color: var(--text-muted);
    width: 100%;
    border-bottom: 0.0625rem solid rgba(184, 219, 232, 0.12);
  }

  .header__menu .button {
    margin-top: var(--space-4);
    align-self: flex-start;
  }

  .header__toggle-input:checked ~ .header__menu {
    transform: translateX(0);
  }

  /* Animate hamburger to X */
  .header__toggle-input:checked ~ .header__toggle span:nth-child(1) {
    transform: rotate(45deg) translate(0.3125rem, 0.3125rem);
  }

  .header__toggle-input:checked ~ .header__toggle span:nth-child(2) {
    opacity: 0;
  }

  .header__toggle-input:checked ~ .header__toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(0.3125rem, -0.3125rem);
  }

  /* Scrim behind the slide-out menu.
     Always rendered as a pseudo-element on the header so it stays put during
     menu transitions. Opacity is toggled based on the checkbox state via :has(),
     transitioning in and out alongside the menu itself. */
  .header::before {
    content: '';
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-slow);
    z-index: 1001;  /* above page content, below slide-out menu (1002) */
  }

  .header:has(.header__toggle-input:checked)::before {
    opacity: 1;
  }
}

/* ============================================================
   Responsive -- Mobile-specific (phone-only, up to 639px)
   Mobile-only adjustments: tighter edge padding, full-size touch
   targets for compact buttons, hero CTA gap.
   ============================================================ */
@media (max-width: 639px) {
  :root {
    /* On phone screens, use a fixed horizontal padding for all containers.
       Header, footer and content sections all share the same edge distance. */
    --padding-content-x: 1.25rem;
    --padding-chrome-x: 1.25rem;
  }

  /* Compact buttons (.button--small) are a desktop density modifier.
     On phone screens, touch targets need to be larger (44–48px minimum),
     so the small modifier is nullified — small buttons render at full size. */
  .button--small {
    padding: var(--space-3) var(--space-5);
    font-size: var(--size-button);
  }

  .hero__cta {
    gap: var(--space-5);
  }
}
