/* ==========================================================================
   Marked Buyers Agency — Site Clone
   Pixel-perfect HTML/CSS clone of markedbuyersagency.com.au
   ========================================================================== */

/* ---------- Amberes Grotesk (local) ---------- */
@font-face {
  font-family: "AmberesGrotesk";
  src: url("assets/fonts/AmberesGrotesk-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AmberesGrotesk";
  src: url("assets/fonts/AmberesGrotesk-LightItalic.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "AmberesGrotesk";
  src: url("assets/fonts/AmberesGrotesk-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AmberesGrotesk";
  src: url("assets/fonts/AmberesGrotesk-RegularItalic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "AmberesGrotesk";
  src: url("assets/fonts/AmberesGrotesk-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AmberesGrotesk";
  src: url("assets/fonts/AmberesGrotesk-BoldItalic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ---------- Design Tokens ---------- */
:root {
  /* Color palette (extracted from live site) */
  --c-brown:       #634628;            /* rgb(99, 70, 40)  — primary dark / footer / body text */
  --c-brown-50:    rgba(99, 70, 40, 0.5);
  --c-coral:       #FF755C;            /* rgb(255, 117, 92) — CTAs, accents, "as seen on" band */
  --c-cream:       #ECE5E3;            /* rgb(236, 229, 227) — section backgrounds */
  --c-tan:         #A39482;            /* rgb(163, 148, 130) — muted text / form bg */
  --c-tan-form:    #A99A86;            /* form section bg (close to tan) */
  --c-white:       #FFFFFF;
  --c-black:       #000000;
  --c-text-body:   #4a3520;            /* darker brown for body copy */

  /* Typography stacks
     Live site uses "AmberesGrotesk" (custom Adobe Typekit "adonis-web") for display
     and Space Grotesk for body. Substituting Fraunces (similar transitional serif feel)
     for the display where Adonis isn't available. */
  --font-display: "AmberesGrotesk", "Fraunces", Georgia, serif;
  --font-body:    "Space Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Type scale (exact px from per-section getComputedStyle extraction) */
  --fs-xs:    10px;
  --fs-sm:    15.272px;     /* nav links */
  --fs-base:  17px;         /* pillar body, footer fine */
  --fs-md:    20.456px;
  --fs-body:  25.64px;      /* HERO subhead, INTRO sub, LEAD body, MEET bio */
  --fs-pillar: 27.368px;    /* pillar title, AS SEEN ON, footer tagline */
  --fs-eyebrow: 34px;       /* TESTIMONIALS, RECENT PURCHASES (display, not small-caps) */
  --fs-quote:  34.28px;     /* testimonial quotes */
  --fs-h3:    44.648px;     /* "The marked difference", "Meet Mark" */
  --fs-hero:  60.2px;       /* hero H1 */

  /* Layout */
  --container-max: 1440px;
  --container-narrow: 1080px;
  --container-text: 880px;
  --gutter: 58px;           /* live site uses ~58px outer gutter */
  --section-py-xl: 140px;
  --section-py-lg: 110px;
  --section-py-md: 80px;
  --section-py-sm: 60px;

  /* Effects */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --transition-fast: 0.2s ease;
  --transition-med:  0.35s ease;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--c-text-body);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.17;
  color: var(--c-brown);
  margin: 0;
  letter-spacing: -0.005em;
}

p { margin: 0 0 1em; }

.muted { color: var(--c-tan); }

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container-text {
  max-width: var(--container-text);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  position: relative;
  padding-top: var(--section-py-lg);
  padding-bottom: var(--section-py-lg);
}

.section--cream { background: var(--c-cream); }
.section--white { background: var(--c-white); }
.section--brown { background: var(--c-brown); color: var(--c-white); }

/* ---------- Buttons (extracted: padding 0 39.7px, radius 6.8px, height = line-height) ---------- */
.btn {
  display: inline-block;
  padding: 0 39.7px;
  height: 70px;
  line-height: 70px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0;
  border-radius: 6.8px;
  border: none;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
}

/* Live site: button hover is opacity-only, no bg/color/transform change */
.btn { transition: opacity 0.1s linear; }
.btn:hover { opacity: 0.85; }

.btn--coral {
  background: var(--c-coral);
  color: var(--c-white);
}

/* Brown outline = transparent bg, brown text, no border on live site */
.btn--brown-outline {
  background: transparent;
  color: var(--c-brown);
  padding: 0 43.8px;
}

.btn--coral-text {
  background: transparent;
  color: var(--c-coral);
  padding: 0 43.8px;
}

/* ==========================================================================
   HEADER / NAV  (extracted: brown bg, white nav 15.272px, height 88px)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-brown);
  height: 88px;
  display: flex;
  align-items: center;
}

.site-header__inner {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 24px 58px;
  gap: 32px;
}

.site-header__logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1); /* white-tone the logo on brown bg */
}

.site-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav__link {
  font-size: var(--fs-sm);
  color: var(--c-white);
  font-weight: 400;
  transition: opacity 0.4s ease;
}

.site-nav__link:hover {
  opacity: 0.7;
}

.site-nav__link--cta {
  /* CTA in nav row, slightly emphasized */
  font-weight: 500;
}

/* Live site has no boxed CTA in header — "Contact" is just the last nav link.
   We keep .site-header__cta as a hidden hook in case Dean wants a CTA back. */
.site-header__cta { display: none; }

/* Mobile nav toggle (hidden on desktop) */
.site-nav__toggle {
  display: none;
}

/* ==========================================================================
   HERO  (extracted: height 979px, full-bleed image, brown wash overlay)
   ========================================================================== */
.hero {
  position: relative;
  height: 979px;
  overflow: hidden;
  background: var(--c-brown);
  color: var(--c-white);
  display: flex;
  align-items: center;
  margin-top: -88px;            /* slip under the fixed header */
  padding-top: 88px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Brown wash — uniform mid-strength tint across the whole image,
   slightly darker on the left where the headline sits. */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(99, 70, 40, 0.55) 0%, rgba(99, 70, 40, 0.42) 60%, rgba(99, 70, 40, 0.30) 100%);
  z-index: 1;
}

/* Coral V tick — large, sits to the right behind the image area */
.hero__tick {
  position: absolute;
  right: 0;
  top: 88px;
  height: calc(100% - 88px);
  width: auto;
  z-index: 2;
  opacity: 0.92;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero__inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 58px;
}

.hero__heading {
  font-family: var(--font-display);
  font-size: var(--fs-hero);     /* 60.2px exact */
  line-height: 70.434px;
  color: var(--c-white);
  letter-spacing: -0.01em;
  max-width: 720px;
  margin-bottom: 60px;
  font-weight: 400;
}

.hero__sub {
  font-size: var(--fs-body);     /* 25.64px exact */
  color: var(--c-white);
  margin-bottom: 28px;
  font-weight: 400;
}

.hero__cta {
  margin-top: 0;
}

/* ==========================================================================
   INTRO ("The marked difference")
   ========================================================================== */
.intro {
  text-align: center;
  padding: 120px 58px 60px;
  background: var(--c-white);
}

.intro__heading {
  font-size: var(--fs-h3);              /* 44.648px */
  line-height: 54.33px;
  color: var(--c-tan);                  /* tan — extracted */
  margin-bottom: 34px;
  font-weight: 400;
}

.intro__sub {
  font-size: var(--fs-body);            /* 25.64px */
  color: var(--c-black);                /* black — extracted */
  max-width: 880px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ==========================================================================
   BODY PARAGRAPH (inline reading section)
   ========================================================================== */
.lead {
  padding: 40px 58px 80px;
  background: var(--c-white);
  text-align: center;
}

.lead__body {
  font-size: var(--fs-body);            /* 25.64px */
  color: var(--c-black);
  max-width: 1040px;
  margin: 0 auto 24px;
  line-height: 1.45;
}

.lead__body--bold {
  font-weight: 500;
}

/* ==========================================================================
   THREE PILLARS (Precision / Professionalism / Partnership)
   ========================================================================== */
.pillars {
  background: var(--c-cream);
  padding: 100px 58px;
  text-align: center;
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto 56px;
}

.pillar {
  text-align: center;
}

.pillar__icon {
  width: 132px;                          /* extracted: 132x133 */
  height: 132px;
  margin: 0 auto 32px;
  object-fit: contain;
}

.pillar__title {
  font-size: var(--fs-pillar);           /* 27.368px */
  line-height: 32.02px;
  color: var(--c-brown);
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-weight: 400;
}

.pillar__desc {
  font-size: 17px;
  color: var(--c-black);
  line-height: 1.5;
  max-width: 340px;
  margin: 0 auto;
}

.pillars__cta {
  margin-top: 16px;
}

/* ==========================================================================
   MEET MARK
   ========================================================================== */
.meet {
  background: var(--c-white);
  padding: 100px 58px;
}

.meet__grid {
  display: grid;
  grid-template-columns: 546px 1fr;       /* photo extracted at 546px wide */
  gap: 80px;
  align-items: center;
  max-width: 1340px;
  margin: 0 auto;
}

.meet__photo {
  width: 100%;
  aspect-ratio: 546 / 818;                /* portrait — extracted */
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
}

.meet__heading {
  font-size: var(--fs-h3);                /* 44.648px */
  line-height: 54.33px;
  color: var(--c-tan);                    /* tan — extracted */
  margin-bottom: 34px;
  font-weight: 400;
}

.meet__body {
  font-size: var(--fs-body);              /* 25.64px */
  color: var(--c-black);
  line-height: 1.45;
  margin-bottom: 24px;
}

.meet__cta {
  margin-top: 24px;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials {
  background: var(--c-cream);
  padding: 100px 58px 80px;
}

.testimonials__inner {
  max-width: 1340px;
  margin: 0 auto;
}

.testimonials__eyebrow {
  font-family: var(--font-display);
  font-size: var(--fs-eyebrow);          /* 34px display, NOT small-caps */
  font-weight: 700;
  color: var(--c-brown);
  margin-bottom: 56px;
  letter-spacing: 0;
  text-transform: none;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 48px;
}

.testimonial__quote {
  font-family: var(--font-display);
  font-size: var(--fs-quote);            /* 34.28px exact */
  line-height: 40.11px;
  color: var(--c-tan);                   /* tan — extracted */
  margin-bottom: 32px;
  font-weight: 400;
}

.testimonial__attribution {
  font-size: 17px;
  color: var(--c-black);
  line-height: 1.5;
}

.testimonial__attribution strong { display: block; font-weight: 500; }
.testimonial__attribution em { font-style: normal; color: var(--c-tan); }

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.testimonials__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--c-coral);
  opacity: 0.4;
  transition: opacity var(--transition-fast);
  cursor: pointer;
}

.testimonials__dot--active { opacity: 1; }

/* ==========================================================================
   AS SEEN ON
   ========================================================================== */
.as-seen-on {
  background: var(--c-coral);
  padding: 40px 58px;
}

.as-seen-on__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 56px;
  max-width: 1340px;
  margin: 0 auto;
}

.as-seen-on__label {
  font-family: var(--font-display);
  font-size: var(--fs-pillar);           /* 27.368px display white */
  font-weight: 400;
  color: var(--c-white);
  letter-spacing: 0;
  text-transform: none;
}

.as-seen-on__logos {
  display: flex;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
  justify-content: center;
}

.as-seen-on__logo {
  height: 30px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1); /* keep white if source isn't already */
}

/* ==========================================================================
   RECENT PURCHASES
   ========================================================================== */
.recent {
  background: var(--c-white);
  padding: 60px 58px;
}

.recent__inner {
  max-width: 1340px;
  margin: 0 auto;
}

.recent__eyebrow {
  font-family: var(--font-display);
  font-size: var(--fs-eyebrow);          /* 34px display brown */
  font-weight: 700;
  color: var(--c-brown);
  margin-bottom: 40px;
  letter-spacing: 0;
  text-transform: none;
}

.recent__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.recent__card {
  display: block;
}

.recent__media {
  width: 100%;
  aspect-ratio: 428 / 287;               /* extracted */
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 16px;
}

.recent__suburb {
  font-size: 17px;
  font-weight: 400;
  color: var(--c-black);
}

.recent__cta-row {
  display: flex;
  justify-content: flex-end;
}

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */
.contact {
  background: var(--c-tan-form);
  color: var(--c-white);
  padding: var(--section-py-md) 0;
}

.contact__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.contact__form {
  display: grid;
  gap: 24px;
}

.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field__label {
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-white);
  font-weight: 500;
}

.field__input {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: var(--fs-base);
  background: var(--c-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0;
  color: var(--c-black);
}

.field__input:focus { outline: 2px solid var(--c-coral); outline-offset: -2px; }

.field--checkbox {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.field--checkbox input { width: 16px; height: 16px; accent-color: var(--c-coral); }
.field--checkbox label { font-size: var(--fs-sm); color: var(--c-white); letter-spacing: normal; text-transform: none; }

.contact__submit {
  justify-self: start;
  background: var(--c-coral);
  color: var(--c-white);
  padding: 12px 28px;
  font-size: var(--fs-base);
  font-weight: 500;
  border-radius: 2px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--c-brown);
  color: var(--c-tan);
  padding: 80px 58px 32px;
  font-size: 17px;
}

.site-footer__inner {
  max-width: 1340px;
  margin: 0 auto;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 56px;
  align-items: start;
}

.site-footer__brand img.logo {
  height: 94px;                          /* extracted: 323x94 */
  width: auto;
  margin-bottom: 24px;
}

.site-footer__tagline {
  font-family: var(--font-display);
  font-size: var(--fs-pillar);           /* 27.368px display, not small-caps */
  letter-spacing: 0;
  text-transform: none;
  color: var(--c-white);
  font-weight: 400;
  margin: 0;
}

.site-footer__contact { color: var(--c-white); line-height: 1.8; }
.site-footer__contact a { color: var(--c-white); }
.site-footer__contact a:hover { color: var(--c-coral); }

.site-footer__badges img { max-width: 130px; opacity: 0.95; }

.site-footer__acknowledgement {
  font-size: var(--fs-xs);
  line-height: 1.6;
  color: var(--c-tan);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
}

.site-footer__legal {
  display: flex;
  gap: 24px;
  margin-top: 16px;
  font-size: var(--fs-xs);
}

.site-footer__legal a { color: var(--c-tan); }
.site-footer__legal a:hover { color: var(--c-coral); }

/* ==========================================================================
   RESPONSIVE — tablet
   ========================================================================== */
@media (max-width: 1024px) {
  .pillars__grid { grid-template-columns: 1fr; gap: 48px; max-width: 480px; padding: 0; }
  .meet__grid { grid-template-columns: 1fr; gap: 40px; }
  .meet__photo { aspect-ratio: 4 / 3; }
  .testimonials__grid { grid-template-columns: 1fr; gap: 36px; }
  .recent__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__top { grid-template-columns: 1fr; gap: 36px; }

  .hero { height: 720px; }

  /* Reduce section padding */
  .intro, .lead, .pillars, .meet, .testimonials, .recent, .contact { padding-left: 32px; padding-right: 32px; }
  .pillars, .meet, .testimonials { padding-top: 80px; padding-bottom: 80px; }
  .as-seen-on { padding-left: 32px; padding-right: 32px; }
  .site-footer { padding-left: 32px; padding-right: 32px; }
  .site-header__inner { padding-left: 32px; padding-right: 32px; }
}

/* ==========================================================================
   RESPONSIVE — mobile (<= 768px)
   ========================================================================== */
@media (max-width: 768px) {
  /* Mobile type scale — reduce display sizes proportionally */
  :root {
    --fs-hero:   38px;
    --fs-h3:     32px;
    --fs-quote:  24px;
    --fs-eyebrow: 26px;
    --fs-pillar:  22px;
    --fs-body:    18px;
  }

  /* Header */
  .site-nav__list { display: none; }
  .site-nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    color: var(--c-white);
    margin-left: auto;
  }
  .site-header { height: 64px; }
  .site-header__logo img { height: 28px; }
  .site-header__inner { padding: 12px 20px; }

  /* Hero */
  .hero { height: 560px; padding-top: 64px; margin-top: -64px; }
  .hero__inner { padding: 0 20px; }
  .hero__heading { font-size: var(--fs-hero); line-height: 1.1; margin-bottom: 28px; max-width: 100%; }
  .hero__sub { font-size: 18px; margin-bottom: 20px; }
  .hero__tick { right: -30%; height: 80%; opacity: 0.7; }
  .hero__overlay { background: linear-gradient(180deg, rgba(99,70,40,0.55) 0%, rgba(99,70,40,0.45) 100%); }

  /* Buttons — smaller on mobile */
  .btn { height: 56px; line-height: 56px; padding: 0 28px; font-size: 16px; }

  /* Section padding */
  .intro { padding: 60px 20px 32px; }
  .intro__heading { font-size: var(--fs-h3); line-height: 1.15; margin-bottom: 20px; }
  .intro__sub { font-size: var(--fs-body); }

  .lead { padding: 32px 20px 60px; }
  .lead__body { font-size: var(--fs-body); }

  .pillars { padding: 60px 20px; }
  .pillars__grid { gap: 48px; }
  .pillar__icon { width: 96px; height: 96px; margin-bottom: 20px; }
  .pillar__title { font-size: var(--fs-pillar); }

  .meet { padding: 60px 20px; }
  .meet__grid { grid-template-columns: 1fr; gap: 28px; max-width: 480px; }
  .meet__photo { aspect-ratio: 4 / 3; }
  .meet__heading { font-size: var(--fs-h3); margin-bottom: 20px; }
  .meet__body { font-size: var(--fs-body); margin-bottom: 18px; }

  .testimonials { padding: 60px 20px; }
  .testimonials__eyebrow { font-size: var(--fs-eyebrow); margin-bottom: 32px; }
  .testimonials__grid { grid-template-columns: 1fr; gap: 32px; }
  .testimonial__quote { font-size: var(--fs-quote); margin-bottom: 18px; line-height: 1.25; }

  .as-seen-on { padding: 24px 20px; }
  .as-seen-on__inner { flex-direction: column; gap: 16px; }
  .as-seen-on__label { font-size: 18px; }
  .as-seen-on__logos { gap: 24px; }
  .as-seen-on__logo { height: 20px; }

  .recent { padding: 40px 20px; }
  .recent__eyebrow { font-size: var(--fs-eyebrow); margin-bottom: 24px; }
  .recent__grid { grid-template-columns: 1fr; gap: 24px; }
  .recent__cta-row { justify-content: flex-start; }

  .contact { padding: 48px 20px; }
  .contact__row { grid-template-columns: 1fr; gap: 18px; }

  .site-footer { padding: 48px 20px 24px; }
  .site-footer__brand img.logo { height: 72px; }
  .site-footer__tagline { font-size: 18px; }
  .site-footer__top { gap: 28px; margin-bottom: 36px; }
}

/* Smallest devices */
@media (max-width: 380px) {
  :root { --fs-hero: 32px; --fs-h3: 26px; }
  .hero { height: 480px; }
  .hero__heading { margin-bottom: 20px; }
  .pillar__icon { width: 80px; height: 80px; }
}
