/* ============================================================
   FBLC — styles.css
   Visual Identity System Edition 1.0 · 2026
   ============================================================ */

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

/* --- Design tokens ------------------------------------------ */
:root {
  /* Palette — VIS p.07 */
  --navy:          #2F3486;
  --navy-hover:    #242969;
  --green:         #66A236;
  --green-hover:   #568A2D;
  --graphite:      #232838;
  --gold:          #E8A317;
  --gold-hover:    #D4940F;
  --chalk:         #F6F5F1;
  --white:         #FFFFFF;

  /* Neutrals — VIS p.07 */
  --border:        #E2E0D9;
  --caption:       #8A8778;
  --text-secondary:#3B4152;

  /* Semantic aliases */
  --color-bg:      var(--chalk);
  --color-text:    var(--graphite);
  --color-heading: var(--navy);
  --color-link:    var(--navy);
  --color-link-hover: var(--green);

  /* Typography — VIS p.09-10 */
  --font-display:  'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-body:     'IBM Plex Sans', 'Segoe UI', system-ui, sans-serif;
  --font-mono:     'IBM Plex Mono', 'Consolas', monospace;

  /* Type scale — 1.25 ratio, 16px base — VIS p.10 */
  --text-display:  clamp(2.5rem, 5vw + 1rem, 4rem);      /* ~64px */
  --text-h1:       clamp(2rem, 3vw + 0.75rem, 2.5rem);    /* ~40px */
  --text-h2:       clamp(1.5rem, 2vw + 0.5rem, 1.75rem);  /* ~28px */
  --text-h3:       clamp(1.15rem, 1.5vw + 0.25rem, 1.25rem); /* ~20px */
  --text-lead:     1.125rem;    /* 18px */
  --text-body:     1rem;        /* 16px */
  --text-caption:  0.8125rem;   /* 13px */
  --text-eyebrow:  0.75rem;     /* 12px */

  /* Spacing scale */
  --space-xs:  0.5rem;    /* 8px  */
  --space-sm:  0.75rem;   /* 12px */
  --space-md:  1rem;      /* 16px */
  --space-lg:  1.5rem;    /* 24px */
  --space-xl:  2rem;      /* 32px */
  --space-2xl: 3rem;      /* 48px */
  --space-3xl: 4rem;      /* 64px */
  --space-4xl: 6rem;      /* 96px */

  /* Layout */
  --content-width: 1120px;
  --container-pad: clamp(1.5rem, 5vw, 4rem);

  /* Surfaces */
  --radius-sm:  0.375rem;  /* 6px  */
  --radius-md:  0.5rem;    /* 8px  */
  --radius-lg:  0.75rem;   /* 12px */
  --radius-pill: 9999px;

  --shadow-sm:  0 1px 3px rgba(35, 40, 56, 0.08);
  --shadow-md:  0 4px 12px rgba(35, 40, 56, 0.10);
  --shadow-lg:  0 8px 24px rgba(35, 40, 56, 0.12);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration: 200ms;
}


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

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.625;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--navy);
  color: var(--chalk);
}

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

a {
  color: var(--color-link);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  transition: color var(--duration) var(--ease);
}

a:hover {
  color: var(--color-link-hover);
}


/* --- Typography --------------------------------------------- */

/* Headlines — Archivo Bold/Semibold, VIS p.09 */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-heading);
  line-height: 1.15;
  text-wrap: balance;
}

h1 {
  font-size: var(--text-h1);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--text-h2);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--text-h3);
  font-weight: 600;
}

h4 {
  font-size: var(--text-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.display {
  font-family: var(--font-display);
  font-size: var(--text-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.98;
  color: var(--color-heading);
}

/* Eyebrow — IBM Plex Mono, uppercase, tracked — VIS p.10 */
.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-eyebrow);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  line-height: 1.2;
}

/* Lead paragraph */
.lead {
  font-size: var(--text-lead);
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 65ch;
}

/* Caption / small text */
.caption {
  font-size: var(--text-caption);
  line-height: 1.5;
  color: var(--caption);
}

/* Mono data labels */
.mono {
  font-family: var(--font-mono);
  font-size: var(--text-eyebrow);
  letter-spacing: 0.06em;
}

/* Body text measure — VIS p.10: 55-75 chars */
.prose {
  max-width: 68ch;
}

.prose p + p {
  margin-top: var(--space-md);
}

.prose h2 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.prose h3 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}


/* --- Layout ------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: var(--space-3xl);
}

.section + .section {
  border-top: 1px solid var(--border);
}

/* Centered section titles */
.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-header .eyebrow {
  margin-bottom: var(--space-xs);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  color: var(--text-secondary);
  max-width: 55ch;
  margin-inline: auto;
}


/* --- Breadcrumb -------------------------------------------- */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: var(--space-xs) 0;
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.375rem;
  list-style: none;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.breadcrumb li + li::before {
  content: '\203A';
  color: var(--border);
  font-size: var(--text-body);
  line-height: 1;
}

.breadcrumb a {
  font-size: var(--text-caption);
  color: var(--caption);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

.breadcrumb a:hover {
  color: var(--navy);
}

.breadcrumb .breadcrumb-current {
  font-size: var(--text-caption);
  color: var(--text-secondary);
  font-weight: 500;
}


/* --- Header / Nav ------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  height: 72px;
  gap: var(--space-lg);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  flex-shrink: 0;
  margin-right: auto;
}

.logo img {
  height: 44px;
  width: auto;
}

.logo span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

/* Main nav */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  list-style: none;
}

.nav a {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--graphite);
  text-decoration: none;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: color var(--duration) var(--ease),
              background var(--duration) var(--ease);
}

.nav a:hover,
.nav a.active {
  color: var(--navy);
  background: rgba(47, 52, 134, 0.06);
}

/* Nav CTA button */
.nav-cta {
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  font-size: 0.8125rem !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white) !important;
  background: var(--navy) !important;
  padding: 0.625rem 1.25rem !important;
  border-radius: var(--radius-sm);
  transition: background var(--duration) var(--ease) !important;
}

.nav-cta:hover {
  background: var(--navy-hover) !important;
  color: var(--white) !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  color: var(--graphite);
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* Nav dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.dropdown-chevron {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  flex-shrink: 0;
  transition: transform var(--duration) var(--ease);
}
.nav-dropdown:hover .dropdown-chevron,
.nav-dropdown:focus-within .dropdown-chevron {
  transform: rotate(180deg);
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: var(--space-xs) 0;
  min-width: 240px;
  list-style: none;
  z-index: 200;
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-dropdown:hover > .dropdown-menu,
.nav-dropdown:focus-within > .dropdown-menu {
  display: block;
}
.dropdown-menu a {
  padding: var(--space-sm) var(--space-lg);
  font-size: 0.875rem;
  border-radius: 0;
}


/* --- Buttons ------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--duration) var(--ease),
              color var(--duration) var(--ease),
              border-color var(--duration) var(--ease);
  line-height: 1;
}

/* Primary — Navy fill */
.btn-primary {
  background: var(--navy);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--navy-hover);
  color: var(--white);
}

/* Secondary — Navy outline */
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
}

/* Gold CTA — Discovery Gold, used sparingly — VIS p.07 */
.btn-gold {
  background: var(--gold);
  color: var(--graphite);
}

.btn-gold:hover {
  background: var(--gold-hover);
  color: var(--graphite);
}

/* Ghost — for dark backgrounds */
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(246, 245, 241, 0.4);
}

.btn-ghost:hover {
  background: rgba(246, 245, 241, 0.12);
  color: var(--white);
  border-color: rgba(246, 245, 241, 0.7);
}

/* Small variant */
.btn-sm {
  font-size: 0.8125rem;
  padding: 0.5rem 1rem;
}


/* --- Cards -------------------------------------------------- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--duration) var(--ease);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card-body {
  padding: var(--space-lg);
}

.card-body > * + * {
  margin-top: var(--space-sm);
}


/* --- Bio cards (About page) --------------------------------- */
.bio-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: var(--space-lg);
  align-items: start;
  text-align: left;
}

.bio-card-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-md);
  background: var(--border);
}

.bio-card-info > * + * {
  margin-top: var(--space-xs);
}

.bio-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-h3);
  color: var(--navy);
}

.bio-card-title {
  font-family: var(--font-mono);
  font-size: var(--text-eyebrow);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}

.bio-card-text {
  font-size: var(--text-body);
  line-height: 1.625;
  color: var(--text-secondary);
  margin-top: var(--space-sm);
}


/* --- Profile header card (William Chan page) ---------------- */
.profile-header {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.profile-header-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  background: var(--border);
}

.profile-header-info > * + * {
  margin-top: var(--space-xs);
}

.profile-container {
  max-width: 900px;
  margin-inline: auto;
}


/* --- Timeline ---------------------------------------------- */
.timeline {
  list-style: none;
  border-left: 3px solid var(--border);
  padding-left: var(--space-lg);
}

.timeline li {
  position: relative;
  padding-bottom: var(--space-lg);
}

.timeline li::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-lg) - 7px);
  top: 4px;
  width: 11px;
  height: 11px;
  background: var(--navy);
  border: 2px solid var(--white);
  border-radius: 50%;
}

.timeline-year {
  font-family: var(--font-mono);
  font-size: var(--text-eyebrow);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 2px;
}

.timeline-title {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--graphite);
}

.timeline-detail {
  font-size: var(--text-caption);
  color: var(--text-secondary);
}


/* --- Announcement strip ------------------------------------ */
.announcement-bar {
  background: var(--green);
  color: var(--white);
  padding: var(--space-sm) var(--container-pad);
  text-align: center;
  font-size: var(--text-caption);
  font-weight: 500;
}

.announcement-bar a {
  color: var(--white);
  font-weight: 600;
  text-decoration: underline;
}

.announcement-bar a:hover {
  color: var(--chalk);
}


/* --- Hero --------------------------------------------------- */
.hero {
  background: var(--navy);
  color: var(--chalk);
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero .display {
  color: var(--white);
}

.hero .lead {
  color: rgba(246, 245, 241, 0.85);
  margin-top: var(--space-lg);
}

.hero .btn {
  margin-top: var(--space-xl);
}

/* Starfield pattern overlay for hero */
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-repeat: repeat;
  background-size: 480px;
  pointer-events: none;
}


/* --- Services grid ----------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}


/* --- Testimonial ------------------------------------------- */
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  position: relative;
}

.testimonial::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--green);
  line-height: 1;
  position: absolute;
  top: var(--space-md);
  left: var(--space-lg);
  opacity: 0.3;
}

.testimonial blockquote {
  font-size: var(--text-lead);
  font-style: italic;
  line-height: 1.7;
  color: var(--text-secondary);
  padding-left: var(--space-xl);
}

.testimonial cite {
  display: block;
  margin-top: var(--space-md);
  padding-left: var(--space-xl);
  font-style: normal;
  font-family: var(--font-mono);
  font-size: var(--text-eyebrow);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--caption);
}


/* --- Forms -------------------------------------------------- */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group + .form-group {
  margin-top: var(--space-md);
}

.form-label {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--graphite);
}

.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-body);
  font-size: var(--text-body);
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--graphite);
  transition: border-color var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(47, 52, 134, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--caption);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-helper {
  font-size: var(--text-caption);
  color: var(--caption);
}


/* --- CTA strip --------------------------------------------- */
.cta-strip {
  background: var(--navy);
  color: var(--chalk);
  padding: var(--space-2xl) 0;
  text-align: center;
}

.cta-strip h2 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.cta-strip p {
  color: rgba(246, 245, 241, 0.82);
  margin-bottom: var(--space-lg);
}


/* --- Footer ------------------------------------------------- */
.site-footer {
  background: var(--graphite);
  color: rgba(246, 245, 241, 0.82);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-xl);
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: var(--space-md);
}

.footer-brand p {
  font-size: var(--text-caption);
  line-height: 1.6;
  max-width: 32ch;
}

.footer-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.footer-links {
  list-style: none;
}

.footer-links li + li {
  margin-top: var(--space-xs);
}

.footer-links a {
  color: rgba(246, 245, 241, 0.7);
  text-decoration: none;
  font-size: var(--text-caption);
  transition: color var(--duration) var(--ease);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact {
  font-family: var(--font-mono);
  font-size: var(--text-eyebrow);
  letter-spacing: 0.06em;
  line-height: 1.8;
}

.footer-contact a {
  color: rgba(246, 245, 241, 0.82);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-bottom {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(246, 245, 241, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-caption);
  color: var(--caption);
}

.footer-bottom a {
  color: var(--caption);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--white);
}


/* --- Utility classes ---------------------------------------- */
.text-navy    { color: var(--navy); }
.text-green   { color: var(--green); }
.text-gold    { color: var(--gold); }
.text-white   { color: var(--white); }
.text-muted   { color: var(--text-secondary); }
.text-caption { color: var(--caption); }
.text-center  { text-align: center; }
.text-left    { text-align: left; }

.bg-navy      { background-color: var(--navy); }
.bg-chalk     { background-color: var(--chalk); }
.bg-white     { background-color: var(--white); }
.bg-graphite  { background-color: var(--graphite); }

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

.mx-auto { margin-inline: auto; }
.mt-sm   { margin-top: var(--space-sm); }
.mt-md   { margin-top: var(--space-md); }
.mt-lg   { margin-top: var(--space-lg); }
.mt-xl   { margin-top: var(--space-xl); }
.mt-2xl  { margin-top: var(--space-2xl); }
.mb-sm   { margin-bottom: var(--space-sm); }
.mb-md   { margin-bottom: var(--space-md); }
.mb-lg   { margin-bottom: var(--space-lg); }

/* Border accent — left stripe like VIS applications */
.border-accent-green {
  border-left: 4px solid var(--green);
}

.border-accent-gold {
  border-left: 4px solid var(--gold);
}

.border-accent-navy {
  border-left: 4px solid var(--navy);
}


/* --- Responsive --------------------------------------------- */

/* Tablet — 768px */
@media (max-width: 1080px) {
  .site-header .container {
    height: 64px;
  }

  .nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: var(--space-xs);
    padding: var(--space-md) var(--container-pad);
    box-shadow: var(--shadow-md);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: var(--space-sm);
  }

  .nav-toggle {
    display: block;
  }

  .dropdown-menu {
    position: static;
    display: block;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0;
    min-width: 0;
  }
  .dropdown-menu::before {
    display: none;
  }
  .dropdown-menu a {
    padding-left: calc(var(--space-sm) + 1rem);
    font-size: 0.8125rem;
    color: var(--text-secondary);
  }
  .dropdown-chevron {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl) var(--space-lg);
  }

  .hero {
    padding: var(--space-3xl) 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Bio cards stay side-by-side on mobile — photo just shrinks */
@media (max-width: 640px) {
  .bio-card {
    grid-template-columns: 100px 1fr;
    gap: var(--space-md);
  }

  .profile-header {
    grid-template-columns: 120px 1fr;
    gap: var(--space-md);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-xs);
    text-align: center;
  }

  .section {
    padding-block: var(--space-2xl);
  }
}

/* Large screens */
@media (min-width: 1200px) {
  .hero {
    padding: var(--space-4xl) 0 calc(var(--space-4xl) + 2rem);
  }
}
