/* ==========================================================
   SOTOL | Fort Davis Omnium — styles
   Palette: black + agave gold, taken from the logo.
   Edit the tokens below to adjust the look.
   ========================================================== */
:root {
  --paper: #f7f3ec;
  --paper-2: #efe8db;
  --card: #fffdf9;
  --ink: #121110;
  --ink-soft: #5b554c;
  --gold: #c99a3e;
  --gold-light: #e2bd6c;
  --gold-text: #8a6420;          /* gold that is readable on light backgrounds */
  --black: #0b0a09;
  --dark: #151412;
  --line: rgba(18, 17, 16, 0.12);
  --line-dark: rgba(247, 243, 236, 0.14);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;

  --radius: 14px;
  --max: 1160px;
  --nav-h: 68px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }
body {
  margin: 0; font-family: var(--sans); font-size: 17px; line-height: 1.6;
  color: var(--ink); background: var(--paper); -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-text); }
h1, h2, h3, h4, h5 { font-family: var(--serif); font-weight: 600; line-height: 1.1; margin: 0 0 .5em; }
h2 { font-size: clamp(2.2rem, 4.4vw, 3.2rem); letter-spacing: -0.01em; }
h3 { font-size: 1.9rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.2rem; margin-top: 1.4em; }
p { margin: 0 0 1em; }
table { border-collapse: collapse; width: 100%; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-size: .76rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-text); margin-bottom: 1em;
}
.muted { color: var(--ink-soft); }
.note { font-size: .9rem; color: var(--ink-soft); font-style: italic; }
.subhead { font-size: 1.6rem; margin: 56px 0 18px; }

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-block; padding: 14px 28px; border-radius: 999px;
  background: var(--gold); color: var(--black); text-decoration: none; font-weight: 600;
  letter-spacing: .02em; border: 1.5px solid var(--gold);
  transition: background .2s, transform .2s, color .2s, border-color .2s;
}
.btn:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--paper); border-color: rgba(247,243,236,.4); }
.btn--ghost:hover { background: rgba(247,243,236,.08); border-color: var(--paper); color: var(--paper); }
.btn--small { padding: 8px 18px; font-size: .9rem; }
.link-arrow { font-weight: 600; text-decoration: none; color: var(--gold-text); }
.link-arrow::after { content: " →"; transition: margin .2s; }
.link-arrow:hover::after { margin-left: 4px; }

/* ---------- Nav ---------- */
.nav { position: fixed; inset: 0 0 auto 0; height: var(--nav-h); z-index: 50; transition: background .3s, box-shadow .3s; }
.nav.is-scrolled { background: rgba(11,10,9,.9); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--line-dark); }
.nav__inner { max-width: var(--max); margin: 0 auto; padding: 0 24px; height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--paper); }
.brand__mark { width: 34px; height: auto; }
.brand__word { font-family: var(--serif); font-weight: 600; letter-spacing: .2em; font-size: 1.35rem; }
.nav__links { display: flex; align-items: center; gap: 22px; }
.nav__links a { white-space: nowrap; }
.nav__links a:not(.btn) { color: var(--paper); text-decoration: none; font-size: .93rem; font-weight: 500; position: relative; opacity: .85; transition: opacity .2s; }
.nav__links a:not(.btn):hover, .nav__links a.is-active { opacity: 1; }
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 1.5px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.nav__links a:not(.btn):hover::after, .nav__links a.is-active::after { transform: scaleX(1); }
.nav__toggle { display: none; background: none; border: 0; width: 40px; height: 40px; cursor: pointer; position: relative; }
.nav__toggle span { position: absolute; left: 9px; right: 9px; height: 2px; background: var(--paper); transition: transform .3s, top .3s; }
.nav__toggle span:first-child { top: 15px; }
.nav__toggle span:last-child { top: 23px; }
.nav.is-open .nav__toggle span:first-child { top: 19px; transform: rotate(45deg); }
.nav.is-open .nav__toggle span:last-child { top: 19px; transform: rotate(-45deg); }

/* ---------- Instagram links ---------- */
.social { display: inline-flex; align-items: center; gap: 10px; }
.social__link {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  color: var(--paper); border: 1px solid var(--line-dark);
  transition: color .2s, border-color .2s, background .2s;
}
.social__link svg { width: 18px; height: 18px; }
.social__link:hover { color: var(--black); background: var(--gold); border-color: var(--gold); }
.social--footer .social__link { color: var(--gold-light); }
.social--footer .social__link:hover { color: var(--black); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 32px) 24px 0; color: var(--paper); overflow: hidden; text-align: center;
  background:
    radial-gradient(ellipse 70% 45% at 50% 78%, rgba(201,154,62,.28), transparent 70%),
    linear-gradient(180deg, #060605 0%, #0f0d0b 55%, #1c160e 100%);
}
.hero__bg { position: absolute; inset: auto 0 0 0; height: 55%; }
.hero__bg svg { width: 100%; height: 100%; display: block; }
.ridge--3 { fill: #2a2215; opacity: .8; }
.ridge--2 { fill: #17130d; }
.ridge--1 { fill: var(--black); }
.hero__content { position: relative; max-width: var(--max); width: 100%; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.hero__logo { margin: 0 0 20px; }
.hero__logo img { width: clamp(220px, 32vw, 400px); animation: rise 1s ease both; }
@keyframes rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.presented { display: flex; flex-direction: column; align-items: center; gap: 8px; margin: 4px 0 22px; }
.presented span {
  font-size: .68rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(247,243,236,.55);
}
.presented img { width: clamp(120px, 14vw, 170px); transition: transform .2s; }
.presented a:hover img { transform: scale(1.04); }

.hero__date {
  font-size: .85rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-light);
  margin-bottom: .8em;
}
.hero__lede { font-family: var(--serif); font-size: clamp(1.35rem, 2.4vw, 1.8rem); max-width: 30ch; color: rgba(247,243,236,.9); line-height: 1.3; }
.hero__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 8px; }
.hero__stats {
  position: relative; max-width: 760px; width: 100%; margin: 56px auto 0; padding: 26px 0 40px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; border-top: 1px solid rgba(201,154,62,.3);
}
.hero__stats dt { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(247,243,236,.6); }
.hero__stats dd { margin: 2px 0 0; font-family: var(--serif); font-weight: 600; font-size: clamp(1.9rem, 4vw, 2.8rem); color: var(--gold-light); }

/* ---------- Sections ---------- */
.section { padding: clamp(72px, 10vw, 120px) 0; }
.section--tint { background: var(--paper-2); }
.section--dark { background: var(--dark); color: var(--paper); }
.section--dark .eyebrow { color: var(--gold-light); }
.section--dark p { color: rgba(247,243,236,.8); }
.section--dark .muted, .section--dark .note { color: rgba(247,243,236,.6); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: start; }

/* ---------- Weekend ---------- */
.days { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.day, .card, .award {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
}
.day { display: flex; flex-direction: column; border-top: 3px solid var(--gold); }
.day h3 { margin-bottom: .15em; }
.day__label { font-size: .74rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-text); margin-bottom: .6em; }
.day__tag { color: var(--ink-soft); font-style: italic; font-family: var(--serif); font-size: 1.15rem; }
.day__facts { list-style: none; padding: 0; margin: 0 0 20px; flex: 1; }
.day__facts li { padding: 10px 0; border-top: 1px solid var(--line); font-size: .95rem; color: var(--ink-soft); }
.day__facts b { display: block; color: var(--ink); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.day__times { list-style: none; padding: 0; margin: 6px 0 0; }
.day__times li { display: grid; grid-template-columns: 76px 1fr; gap: 10px; padding: 3px 0; border: 0; }
.day__times time { font-weight: 600; color: var(--ink); }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); }
.cats { min-width: 620px; font-size: .95rem; }
.cats th, .cats td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.cats thead th { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); background: var(--paper-2); }
.cats tbody th { font-weight: 600; white-space: nowrap; }
.cats tbody tr:last-child > * { border-bottom: 0; }
.cats tbody tr:hover { background: rgba(201,154,62,.07); }
.table-wrap + .note { margin-top: 10px; }

.includes { display: grid; grid-template-columns: 1.3fr 1fr; gap: 20px; margin-top: 40px; }
.includes > div { padding: 28px; border-radius: var(--radius); background: var(--black); color: var(--paper); }
.includes > div:last-child { background: transparent; color: var(--ink); border: 1px dashed rgba(18,17,16,.25); }
.includes ul { margin: 0 0 12px; padding-left: 1.1em; }
.includes li { margin-bottom: .3em; }
.includes li::marker { color: var(--gold); }
.includes > div:first-child .note { color: rgba(247,243,236,.65); margin: 0; }
.includes p:last-child { margin-bottom: 0; }

/* ---------- Courses ---------- */
.tabs { display: flex; gap: 6px; padding: 6px; background: var(--paper); border: 1px solid var(--line); border-radius: 999px; width: fit-content; margin: 24px 0 32px; max-width: 100%; overflow-x: auto; }
.tab {
  font: inherit; font-weight: 600; font-size: .9rem; border: 0; cursor: pointer;
  padding: 10px 20px; border-radius: 999px; background: transparent; color: var(--ink-soft);
  white-space: nowrap; transition: background .2s, color .2s;
}
.tab:hover { color: var(--ink); }
.tab[aria-selected="true"] { background: var(--black); color: var(--gold-light); }
.tab:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.route {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  background: var(--card); border-radius: var(--radius); padding: 32px;
  box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 16px 44px -20px rgba(40,30,10,.3);
  animation: fade .35s ease;
}
.route[hidden] { display: none; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.route__info p { color: var(--ink-soft); }
.route__stats { margin: 20px 0 24px; border-top: 1px solid var(--line); }
.route__stats div { display: flex; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.route__stats dt { color: var(--ink-soft); font-size: .95rem; }
.route__stats dd { margin: 0; font-weight: 600; text-align: right; }
.route__map { display: block; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); max-width: 460px; justify-self: center; transition: transform .25s, box-shadow .25s; }
.route__map:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -14px rgba(0,0,0,.35); }

.route__links { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.qr { margin: 0; text-align: center; }
.qr img { width: 86px; height: 86px; border-radius: 6px; border: 1px solid var(--line); }
.qr a { display: inline-block; transition: transform .2s; }
.qr a:hover { transform: scale(1.04); }
.qr figcaption { margin-top: 6px; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }

/* ---------- Race info ---------- */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.info-grid--two { grid-template-columns: 1fr 1fr; margin-top: 56px; }
.card h4 { font-family: var(--sans); font-size: .76rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-text); }
.card__big { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; line-height: 1.15; color: var(--ink); }
.card p { color: var(--ink-soft); }
.card p:last-child { margin-bottom: 0; }

.hq { margin-top: 20px; padding: 24px 28px; border-radius: var(--radius); background: var(--paper-2); }
.hq h4 { font-size: 1.2rem; }
.pills { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.pills li { padding: 6px 14px; border-radius: 999px; background: var(--card); border: 1px solid var(--line); font-size: .9rem; }

.feed { display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 20px; }
.feed__course { padding: 28px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--card); }
.feed__course h4 { margin-bottom: .2em; }
.feed__list { list-style: none; margin: 18px 0 0; padding: 0; position: relative; }
.feed__list li { display: grid; grid-template-columns: 82px 1fr; column-gap: 12px; padding: 12px 0; border-top: 1px solid var(--line); }
.feed__list span { grid-row: span 2; font-weight: 600; color: var(--gold-text); font-size: .95rem; }
.feed__list b { font-family: var(--serif); font-size: 1.3rem; line-height: 1.2; }
.feed__list em { font-style: normal; font-size: .85rem; color: var(--ink-soft); }
.feed__course--steps { background: var(--black); color: var(--paper); border-color: var(--black); }
.feed__course--steps .muted, .feed__course--steps .note { color: rgba(247,243,236,.65); }
.steps { counter-reset: step; list-style: none; padding: 0; margin: 16px 0; }
.steps li { counter-increment: step; position: relative; padding: 6px 0 6px 40px; }
.steps li::before {
  content: counter(step); position: absolute; left: 0; top: 5px; width: 26px; height: 26px; border-radius: 50%;
  background: var(--gold); color: var(--black); font-weight: 600; font-size: .85rem; display: grid; place-items: center;
}
.steps b { color: var(--gold-light); }
.feed__course--steps .note { margin: 0; }

.restrooms { margin: 0 0 12px; }
.restrooms div { display: grid; grid-template-columns: 90px 1fr; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.restrooms dt { font-weight: 600; }
.restrooms dd { margin: 0; color: var(--ink-soft); }

/* ---------- Accordions ---------- */
details { border-bottom: 1px solid var(--line); }
summary {
  cursor: pointer; list-style: none; padding: 18px 0; font-weight: 600; font-size: 1.02rem;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-size: 1.5rem; font-weight: 300; color: var(--gold); transition: transform .25s; flex-shrink: 0; }
details[open] summary::after { transform: rotate(45deg); }
details p { color: var(--ink-soft); padding-bottom: 8px; }
summary:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.weather { margin-top: 56px; border: 1px solid var(--line); border-radius: var(--radius); padding: 4px 28px; background: var(--card); }
.weather summary { font-family: var(--serif); font-size: 1.5rem; }
.weather__body { padding-bottom: 20px; max-width: 800px; }
.weather__body ul { color: var(--ink-soft); padding-left: 1.2em; margin: 0 0 1em; }
.weather__body li { margin-bottom: .3em; }
.weather__body li::marker { color: var(--gold); }
.weather { border-bottom: 1px solid var(--line); }

/* ---------- Femmes ---------- */
#femmes .btn { margin-top: 12px; }
.section--dark details { border-color: var(--line-dark); }
.section--dark details p { color: rgba(247,243,236,.72); }
.faq .subhead { margin-top: 0; }
.faq details:first-of-type { border-top: 1px solid var(--line-dark); }
.scoring { margin: 32px 0 16px; padding: 24px; border: 1px solid rgba(201,154,62,.35); border-radius: var(--radius); }
.scoring h4 { color: var(--gold-light); }
.scoring b { color: var(--paper); }
.scoring table { font-size: .92rem; margin-top: 8px; }
.scoring th, .scoring td { text-align: left; padding: 10px 8px; border-bottom: 1px solid var(--line-dark); }
.scoring thead th { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(247,243,236,.55); }
.scoring td:last-child { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; text-align: right; }
.scoring tbody th { white-space: nowrap; }
.scoring .win th, .scoring .win td:last-child { color: var(--gold-light); }
.scoring .note { margin: 10px 0 0; }

/* ---------- Awards ---------- */
.awards__head { display: flex; justify-content: space-between; align-items: end; gap: 24px; flex-wrap: wrap; }
.purse { text-align: right; }
.purse span { display: block; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); }
.purse b { display: block; font-family: var(--serif); font-size: clamp(3rem, 7vw, 4.6rem); line-height: 1; color: var(--gold-text); }
.purse em { font-size: .9rem; color: var(--ink-soft); }
.awards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 36px; }
.award h4 { font-size: 1.3rem; margin-top: .6em; }
.award h4:first-of-type { margin-top: 0; }
.award ul { margin: 0 0 8px; padding-left: 1.1em; color: var(--ink-soft); font-size: .93rem; }
.award li { margin-bottom: .3em; }
.award li::marker { color: var(--gold); }
.award--gold { background: var(--black); color: var(--paper); border-color: var(--black); }
.award--gold .day__label { color: var(--gold-light); }
.award--gold ul { color: rgba(247,243,236,.8); }

/* ---------- Travel ---------- */
.travel-list { list-style: none; margin: 0; padding: 0; }
.travel-list li { padding: 22px 0; border-bottom: 1px solid var(--line); }
.travel-list li:first-child { padding-top: 0; }
.travel-list h4 { font-size: 1.35rem; }
.travel-list p { margin: 0; color: var(--ink-soft); }
.section--dark .travel-list li { border-color: var(--line-dark); }
.section--dark .travel-list p { color: rgba(247,243,236,.75); }
#shop .btn { margin-top: 8px; }

/* ---------- Stay ---------- */
.stay__intro { max-width: 60ch; }
.stay-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stay {
  display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px; text-decoration: none; color: var(--ink);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.stay:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: 0 12px 30px -16px rgba(40,30,10,.35); }
.stay h4 { margin: 8px 0 6px; }
.stay p { color: var(--ink-soft); font-size: .95rem; flex: 1; }
.stay__tag { font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-text); }
.stay .link-arrow { font-size: .9rem; }
.stay--list { background: transparent; border-style: dashed; }
.stay__all { margin-top: 24px; }

/* ---------- Register + footer ---------- */
.register {
  padding: clamp(72px, 10vw, 120px) 0; text-align: center; color: var(--paper);
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(201,154,62,.25), transparent 70%), var(--black);
}
.register__logo { width: clamp(160px, 20vw, 240px); margin: 0 auto 20px; }
.register__date { font-size: .85rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.8em; }
.footer { background: var(--black); color: rgba(247,243,236,.6); padding: 28px 0; font-size: .88rem; border-top: 1px solid var(--line-dark); }
.footer__inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer p { margin: 0; }
.footer a { color: var(--gold-light); text-decoration: none; }
.footer .brand__word { color: var(--paper); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .route, .hero__logo img { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--black); padding: 8px 20px 20px; border-top: 1px solid var(--line-dark);
    box-shadow: 0 16px 30px rgba(0,0,0,.4);
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s;
  }
  .nav.is-open { background: var(--black); }
  .nav.is-open .nav__links { opacity: 1; transform: none; pointer-events: auto; }
  .nav__links a:not(.btn) { padding: 14px 0; border-bottom: 1px solid var(--line-dark); opacity: 1; }
  .nav__links a:not(.btn)::after { display: none; }
  .nav__links .btn { margin-top: 16px; text-align: center; }
  .social { justify-content: center; margin-top: 16px; }
  .awards { grid-template-columns: 1fr 1fr; }
  .stay-grid { grid-template-columns: 1fr 1fr; }
  .feed { grid-template-columns: 1fr 1fr; }
  .feed__course--steps { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .days, .info-grid, .info-grid--two, .includes, .split { grid-template-columns: 1fr; }
  .route { grid-template-columns: 1fr; padding: 22px; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .container, .nav__inner { padding: 0 16px; }
  .hero { padding-left: 16px; padding-right: 16px; }
  .hero__stats { gap: 8px; }
  .hero__stats dt { font-size: .64rem; letter-spacing: .1em; }
  .awards, .stay-grid, .feed { grid-template-columns: 1fr; }
  .tabs { border-radius: 16px; flex-wrap: wrap; width: 100%; }
  .tab { flex: 1 1 45%; padding: 10px 8px; font-size: .85rem; }
  .purse { text-align: left; }
  .day, .card, .award, .feed__course, .includes > div { padding: 22px; }
  .weather { padding: 4px 18px; }
  .table-wrap { overflow: visible; border: 0; background: none; }
  .cats { min-width: 0; }
  .cats thead { display: none; }
  .cats tbody tr { display: block; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 18px; margin-bottom: 10px; }
  .cats tbody th { display: block; padding: 0 0 8px; border: 0; font-family: var(--serif); font-size: 1.3rem; }
  .cats tbody td { display: grid; grid-template-columns: 90px 1fr; padding: 6px 0; border-bottom: 0; border-top: 1px solid var(--line); }
  .cats tbody td::before { content: attr(data-label); font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); padding-top: 3px; }
  .cats tbody tr:last-child > td { border-top: 1px solid var(--line); }
}
