/* McGregor Pickleball Club — design system
   Flat cream ground, navy ink, hard offset shadows, no blur, no gradients. */

:root {
  --cream:      #F8F1E2;
  --card:       #FFFDF7;
  --navy:       #1F4266;
  --blue:       #2E5C86;
  --blue-light: #A8D3EE;
  --blue-pale:  #DCEAF6;
  --orange:     #E8714A;
  --yellow:     #F3C63F;

  --border: 3px solid var(--navy);
  --radius-lg: 28px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --pill: 999px;

  --display: Anton, 'Arial Narrow', system-ui, sans-serif;
  --body: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --shell: 1240px;
  --gutter: 28px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--blue); }
::selection { background: var(--yellow); }

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

h1, h2, h3 {
  font-family: var(--display);
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin: 0;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--yellow); color: var(--navy); padding: 12px 20px;
  border: var(--border); border-radius: 0 0 var(--radius-sm) 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

.eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--blue);
}
.eyebrow--spaced { margin-top: 26px; }
.label-optional { font-weight: 400; text-transform: none; letter-spacing: 0; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--body); font-weight: 700; font-size: 17px; line-height: 1;
  padding: 15px 26px; border: var(--border); border-radius: var(--pill);
  background: var(--card); color: var(--navy); cursor: pointer;
  text-align: center; transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:hover { color: var(--navy); }
.btn--primary { background: var(--orange); color: var(--cream); box-shadow: 5px 5px 0 var(--navy); }
.btn--primary:hover { color: var(--cream); }
.btn--yellow { background: var(--yellow); box-shadow: 3px 3px 0 var(--navy); }
.btn--ghost { background: transparent; }
.btn--sm { padding: 11px 16px; font-size: 14px; }
.btn--block { width: 100%; padding: 16px; }
.btn--spaced { margin-top: 12px; }
.btn--done { background: var(--yellow); color: var(--navy); }

.btn:not(:disabled):active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--navy); }
.btn[aria-disabled="true"], .btn:disabled { opacity: .55; cursor: not-allowed; }
.btn.is-busy { opacity: .7; cursor: progress; }

/* ---------- Header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px var(--gutter);
  background: rgba(248, 241, 226, .92);
  backdrop-filter: blur(8px);
  border-bottom: var(--border);
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--navy); }
.brand:hover { color: var(--navy); }
.brand img { height: 46px; width: auto; }
.brand__word {
  font-family: var(--display); font-size: 19px; letter-spacing: 0.06em;
  text-transform: uppercase; line-height: 1;
}
.brand__word span { color: var(--orange); }

.site-nav { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.site-nav a {
  padding: 9px 14px; border-radius: var(--pill);
  font-weight: 700; font-size: 15px; color: var(--navy);
}
.site-nav a:hover { background: var(--blue-pale); color: var(--navy); }
.cart-toggle { padding: 11px 18px; font-size: 15px; }

@media (max-width: 900px) {
  /* Links wrap to their own scrollable row; the cart stays put beside the logo. */
  .site-header { flex-wrap: wrap; row-gap: 10px; }
  .site-nav {
    order: 3; width: 100%; margin-left: 0;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; padding-bottom: 2px;
  }
  .site-nav::-webkit-scrollbar { display: none; }
  .site-nav a { flex: none; white-space: nowrap; }
  .cart-toggle { order: 2; }
}

@media (max-width: 720px) {
  :root { --gutter: 18px; }
  .brand__word { font-size: 16px; }
  .brand img { height: 38px; }
}

/* ---------- Hero ---------- */

.hero {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px; align-items: center; padding-block: 64px 48px;
}
.hero > * { min-width: 0; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: var(--pill);
  background: var(--blue-light); border: 2px solid var(--blue);
  font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
}
.badge__dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--orange);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

.hero h1 {
  font-size: clamp(48px, 7.5vw, 96px); line-height: .92;
  margin-top: 18px; text-wrap: balance;
}
.hero h1 span { color: var(--orange); }
.hero__lede {
  font-size: 19px; line-height: 1.5; max-width: 46ch;
  margin: 18px 0 0; color: var(--blue); text-wrap: pretty;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 36px; }
.stat__num { font-family: var(--display); font-size: 34px; line-height: 1; }
.stat__label {
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--blue);
}
.hero__art { display: flex; justify-content: center; }
.hero__art img {
  width: 100%; max-width: 620px; height: auto;
  border: var(--border); border-radius: var(--radius-lg);
  box-shadow: 10px 10px 0 var(--blue-light);
}

/* ---------- Marquee ---------- */

.marquee {
  background: var(--blue); color: var(--cream);
  padding: 14px 0; border-top: var(--border); border-bottom: var(--border);
  overflow: hidden; white-space: nowrap;
  font-family: var(--display); font-size: 22px;
  letter-spacing: 0.12em; text-transform: uppercase;
  display: flex;
}
.marquee__track {
  display: inline-block; padding-right: 40px; flex: none;
  animation: scroll 28s linear infinite;
}
@keyframes scroll { to { transform: translateX(-100%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---------- Sections ---------- */

.section { padding-block: 72px 24px; }
.section--last { padding-bottom: 90px; }
.section__title { font-size: clamp(34px, 5vw, 60px); line-height: 1; }
.section__lede { font-size: 18px; color: var(--blue); margin: 12px 0 0; max-width: 52ch; }
.section__head {
  display: flex; flex-wrap: wrap; align-items: end;
  justify-content: space-between; gap: 16px;
}
.section__note {
  font-size: 14px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--orange);
}

.card { background: var(--card); border: var(--border); border-radius: var(--radius-md); }

/* ---------- Booking ---------- */

.coach-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px; margin-top: 32px;
}
.coach {
  text-align: left; cursor: pointer; padding: 22px; font-family: var(--body);
  background: var(--card); border: var(--border); border-radius: var(--radius-md);
  box-shadow: 4px 4px 0 var(--blue-light);
  transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease;
  color: var(--navy);
}
.coach:hover { transform: translate(-1px, -1px); box-shadow: 6px 6px 0 var(--blue-light); }
.coach[aria-pressed="true"] { border-color: var(--orange); box-shadow: 6px 6px 0 var(--orange); }
.coach__top { display: flex; align-items: center; gap: 14px; }
.coach__avatar {
  width: 54px; height: 54px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  font-family: var(--display); font-size: 22px; color: var(--navy); border: var(--border);
}
.coach__name { display: block; font-family: var(--display); font-size: 22px; text-transform: uppercase; line-height: 1.05; }
.coach__tag { display: block; font-size: 14px; font-weight: 700; color: var(--blue); }
.coach__bio { display: block; font-size: 14px; color: var(--blue); margin-top: 12px; line-height: 1.45; }
.coach__foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 18px; font-size: 15px; font-weight: 700; color: var(--blue);
}

.booking-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin-top: 26px; align-items: start;
}
.picker { padding: 24px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }

.chip {
  cursor: pointer; font-family: var(--body); font-weight: 700; font-size: 15px;
  line-height: 1.2; text-align: center; border: var(--border);
  background: var(--cream); color: var(--navy);
  padding: 12px 16px; border-radius: var(--radius-sm);
  transition: background .12s ease, color .12s ease;
}
.chip:hover:not([aria-pressed="true"]):not(:disabled) { background: var(--blue-pale); }
.chip[aria-pressed="true"] { background: var(--blue); color: var(--cream); }
.chip__num { display: block; font-family: var(--display); font-size: 19px; }

.chip--time { border-radius: var(--pill); padding: 11px 16px; }
.chip--time[aria-pressed="true"] { background: var(--yellow); color: var(--navy); }
.chip:disabled {
  opacity: .4; cursor: not-allowed;
  text-decoration: line-through; text-decoration-thickness: 2px;
}

.summary {
  background: var(--blue); color: var(--cream); border: var(--border);
  border-radius: var(--radius-md); padding: 24px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 18px;
}
.summary .eyebrow { color: var(--blue-light); }
.summary__line1 {
  font-family: var(--display); font-size: clamp(26px, 3.4vw, 38px);
  text-transform: uppercase; line-height: 1.05; margin-top: 12px;
}
.summary__line2 { font-size: 18px; font-weight: 700; margin-top: 8px; color: var(--yellow); }
.summary__note { font-size: 15px; line-height: 1.5; margin-top: 14px; color: var(--blue-pale); }

/* ---------- Forms ---------- */

.field { display: flex; flex-direction: column; gap: 6px; }
.field > label { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.input, .textarea {
  padding: 15px 18px; border-radius: var(--radius-sm); border: var(--border);
  background: var(--cream); font-family: var(--body); font-size: 16px;
  color: var(--navy); width: 100%;
}
.summary .input, .summary .textarea { background: var(--cream); }
.input::placeholder, .textarea::placeholder { color: #7d92ab; }
.textarea { resize: vertical; min-height: 96px; }
.input[aria-invalid="true"], .textarea[aria-invalid="true"] { border-color: var(--orange); }

.field__error { font-size: 13px; font-weight: 700; color: var(--orange); min-height: 0; }
.summary .field__error { color: var(--yellow); }
.summary .field > label { color: var(--blue-pale); }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status { font-size: 15px; font-weight: 700; line-height: 1.45; }
.form-status:empty { display: none; }
.form-status--error { color: var(--orange); }

/* ---------- Shop ---------- */

.product-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px; margin-top: 32px;
}
.product {
  background: var(--card); border: var(--border); border-radius: var(--radius-md);
  overflow: hidden; display: flex; flex-direction: column;
}
.product__art {
  aspect-ratio: 1 / 1; display: grid; place-items: center;
  border-bottom: var(--border);
  font-family: var(--display); font-size: clamp(28px, 4vw, 44px);
  text-transform: uppercase; color: var(--navy);
  text-align: center; line-height: .95; padding: 16px;
  letter-spacing: 0.02em; white-space: pre-line; position: relative;
}
.product__body { padding: 18px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.product__name { font-family: var(--display); font-size: 20px; text-transform: uppercase; line-height: 1.1; }
.product__blurb { font-size: 14px; color: var(--blue); font-weight: 500; margin-top: 4px; }
.product__foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; margin-top: auto;
}
.product__price { font-family: var(--display); font-size: 22px; }
.product__stock { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--orange); }

.tag-soldout {
  position: absolute; top: 12px; right: 12px;
  background: var(--navy); color: var(--cream);
  font-family: var(--body); font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--pill);
}

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

.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px;
}
.contact-card {
  background: var(--yellow); border: var(--border);
  border-radius: var(--radius-lg); padding: 32px;
}
.contact-card p { font-size: 17px; line-height: 1.5; margin: 14px 0 0; max-width: 40ch; }
.contact-details {
  margin-top: 26px; display: flex; flex-direction: column; gap: 10px;
  font-weight: 700; font-size: 16px;
}
.contact-details a { color: var(--blue); }
.contact-details a:hover { color: var(--orange); }
.contact-form {
  background: var(--card); border: var(--border); border-radius: var(--radius-lg);
  padding: 32px; display: flex; flex-direction: column; gap: 14px;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--blue); color: var(--cream); border-top: var(--border);
  padding: 40px var(--gutter);
  display: flex; flex-wrap: wrap; gap: 20px;
  align-items: center; justify-content: space-between;
}
.site-footer__word {
  font-family: var(--display); font-size: 22px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.site-footer__tag { font-size: 15px; color: var(--blue-pale); }

/* ---------- Cart drawer ---------- */

.shade {
  position: fixed; inset: 0; z-index: 50; background: rgba(31, 66, 102, .45);
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
body.cart-open .shade { opacity: 1; pointer-events: auto; }
body.cart-open { overflow: hidden; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 60;
  width: min(400px, 92vw); background: var(--cream);
  border-left: var(--border);
  display: flex; flex-direction: column;
  transform: translateX(105%);
  transition: transform .3s cubic-bezier(.22, 1, .36, 1);
  visibility: hidden;
}
body.cart-open .drawer { transform: translateX(0); visibility: visible; }

.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px; border-bottom: var(--border);
}
.drawer__title { font-family: var(--display); font-size: 24px; text-transform: uppercase; }
.drawer__close {
  width: 38px; height: 38px; border-radius: 50%; border: var(--border);
  background: var(--card); color: var(--navy);
  font-family: var(--body); font-size: 17px; font-weight: 700; cursor: pointer;
  display: grid; place-items: center; flex: none;
}
.drawer__body {
  flex: 1; overflow-y: auto; padding: 18px 22px;
  display: flex; flex-direction: column; gap: 14px;
}
.drawer__foot {
  border-top: var(--border); padding: 20px 22px;
  display: flex; flex-direction: column; gap: 12px;
}
.drawer__empty {
  padding: 40px 0; text-align: center; color: var(--blue);
  font-weight: 700; font-size: 16px;
}

.line { display: flex; gap: 14px; align-items: center; }
.line__art {
  width: 58px; height: 58px; border-radius: 14px; border: var(--border);
  display: grid; place-items: center; flex: none;
  font-family: var(--display); font-size: 14px; color: var(--navy);
}
.line__meta { flex: 1; min-width: 0; }
.line__name { font-weight: 700; font-size: 15px; }
.line__price { font-size: 14px; color: var(--blue); }
.qty { display: flex; align-items: center; gap: 8px; }
.qty button {
  width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--navy);
  background: var(--card); color: var(--navy); font-weight: 700; cursor: pointer;
  font-family: var(--body); display: grid; place-items: center; flex: none;
}
.qty button:hover { background: var(--blue-pale); }
.qty__n { font-weight: 700; min-width: 16px; text-align: center; }

.totals { display: flex; flex-direction: column; gap: 6px; font-size: 15px; font-weight: 700; }
.totals__row { display: flex; justify-content: space-between; color: var(--blue); }
.totals__row--grand {
  font-family: var(--display); font-size: 24px;
  text-transform: uppercase; color: var(--navy);
}

.checkout-fields { display: flex; flex-direction: column; gap: 10px; }

/* ---------- Toast ---------- */

.toast-stack {
  position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%);
  z-index: 80; display: flex; flex-direction: column; gap: 10px;
  width: min(420px, calc(100vw - 32px)); pointer-events: none;
}
.toast {
  background: var(--navy); color: var(--cream);
  border: 3px solid var(--navy); border-radius: var(--radius-sm);
  padding: 14px 18px; font-weight: 700; font-size: 15px;
  box-shadow: 5px 5px 0 var(--blue-light);
  animation: rise .25s ease;
}
.toast--good { background: var(--yellow); color: var(--navy); }
.toast--leaving { opacity: 0; transition: opacity .3s ease; }
.toast--bad { background: var(--orange); color: var(--cream); }
@keyframes rise { from { opacity: 0; transform: translateY(10px); } }

/* ---------- Skeletons ---------- */

.skeleton {
  background: var(--blue-pale); border: var(--border);
  border-radius: var(--radius-md); min-height: 148px;
  animation: shimmer 1.4s ease-in-out infinite;
}
.skeleton--tall { min-height: 320px; }
@keyframes shimmer { 50% { opacity: .5; } }

/* ---------- 404 ---------- */

.notfound { min-height: 100vh; display: grid; place-items: center; text-align: center; padding-block: 80px; }
.notfound__mark { width: 160px; height: auto; margin: 0 auto 28px; }
.notfound__title { font-size: clamp(48px, 9vw, 96px); line-height: .92; }
.notfound__title span { color: var(--orange); }
.notfound__lede {
  font-size: 19px; line-height: 1.5; max-width: 46ch;
  margin: 18px auto 0; color: var(--blue);
}
.notfound__action { margin-top: 28px; }

.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;
}


/* ---------- What's on ---------- */

.event-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px; margin-top: 32px;
}
.event {
  background: var(--card); border: var(--border); border-radius: var(--radius-md);
  padding: 20px; display: flex; flex-direction: column; gap: 10px;
  box-shadow: 4px 4px 0 var(--blue-light);
}
.event--today { box-shadow: 6px 6px 0 var(--orange); border-color: var(--orange); }
.event__head { display: flex; align-items: start; justify-content: space-between; gap: 10px; }
.event__day {
  font-family: var(--display); font-size: 13px; letter-spacing: .1em;
  text-transform: uppercase; padding: 6px 12px; border-radius: var(--pill);
  border: 2px solid var(--navy); flex: none;
}
.event__flag {
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--pill); flex: none;
  background: var(--navy); color: var(--cream);
}
.event__flag--live { background: var(--orange); color: var(--cream); }
.event__title { font-family: var(--display); font-size: 24px; text-transform: uppercase; line-height: 1.05; }
.event__time { font-size: 16px; font-weight: 700; color: var(--blue); }
.event__blurb { font-size: 14px; color: var(--blue); line-height: 1.45; flex: 1; }
.event__foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; font-size: 13px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--blue);
  border-top: 2px solid var(--blue-pale); padding-top: 12px;
}

/* ---------- Ladder ---------- */

.ladder-card { padding: 8px 8px 4px; margin-top: 32px; overflow-x: auto; }
.ladder-table { width: 100%; border-collapse: collapse; min-width: 480px; }
.ladder-table th, .ladder-table td { padding: 14px 12px; text-align: left; }
.ladder-table thead th {
  font-size: 12px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--blue);
  border-bottom: 3px solid var(--navy);
}
.ladder-table tbody tr + tr td { border-top: 2px solid var(--blue-pale); }
.ladder-table__pos, .ladder-table__num { text-align: right; width: 1%; white-space: nowrap; }
.ladder-table thead .ladder-table__pos, .ladder-table thead .ladder-table__num { text-align: right; }
.ladder-table__empty { text-align: center; color: var(--blue); font-weight: 700; padding: 32px 0; }
.ladder__pos { font-family: var(--display); font-size: 22px; }
.ladder__player { font-weight: 700; font-size: 16px; display: flex; align-items: center; gap: 10px; }
.ladder__points { font-family: var(--display); font-size: 20px; }
.ladder-table tbody tr:first-child .ladder__pos,
.ladder-table tbody tr:first-child .ladder__points { color: var(--orange); }

.trend {
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 9px; border-radius: var(--pill); border: 2px solid var(--navy);
}
.trend--up { background: var(--yellow); }
.trend--down { background: var(--blue-pale); }
.trend--same { background: transparent; color: var(--blue); }
.trend--new { background: var(--blue-light); }

/* ---------- News ---------- */

.news-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px; margin-top: 32px;
}
.post {
  background: var(--card); border: var(--border); border-radius: var(--radius-md);
  padding: 24px; display: flex; flex-direction: column; gap: 10px;
}
.post__meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.post__tag {
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  background: var(--yellow); border: 2px solid var(--navy);
  padding: 4px 10px; border-radius: var(--pill);
}
.post__date { font-size: 13px; font-weight: 700; color: var(--blue); }
.post__title { font-family: var(--display); font-size: 22px; text-transform: uppercase; line-height: 1.1; }
.post__body { font-size: 15px; line-height: 1.5; color: var(--blue); }

/* ---------- Extras divider ---------- */

.extras-divider {
  margin-top: 64px; padding-top: 40px;
  border-top: 3px dashed var(--blue);
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 18px;
}
.extras-divider__label {
  font-family: var(--display); font-size: 22px;
  text-transform: uppercase; letter-spacing: .06em;
}
.extras-divider__note { margin: 0; font-size: 16px; color: var(--blue); max-width: 56ch; }
