@font-face {
  font-family: "Emeraldes Serif";
  src: url("../assets/fonts/emerald-serif-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Emeraldes Sans";
  src: url("../assets/fonts/emerald-sans-vf.woff2") format("woff2");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Serif Fallback";
  src: local("Georgia"), local("Times New Roman");
  size-adjust: 104%;
  ascent-override: 100%;
  descent-override: 26%;
}
@font-face {
  font-family: "Sans Fallback";
  src: local("Arial"), local("Helvetica");
  size-adjust: 102%;
  ascent-override: 92%;
  descent-override: 25%;
}

:root {
  --gem: #0a6b4b;
  --gem-deep: #07523a;
  --gem-mist: #eef6f1;
  --gem-mist-2: #e1efe7;
  --ink: #0e1512;
  --ink-soft: #3c4742;
  --paper: #ffffff;
  --serif: "Emeraldes Serif", "Serif Fallback", "Playfair Display", Georgia, serif;
  --sans: "Emeraldes Sans", "Sans Fallback", "Rubik", system-ui, -apple-system, "Segoe UI", sans-serif;
  --r-pill: 40px;
  --r-card: 10px;
  --r-tag: 46px;
  --r-field: 7px;
  --gap: 14px;
  --air: clamp(72px, 10vw, 120px);
  --bar-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--bar-h) + 12px); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.8;
}
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.2; margin: 0; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
a { color: var(--gem); text-underline-offset: 3px; }
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 3px solid var(--gem);
  outline-offset: 3px;
}
.jd-skip {
  position: absolute; left: 12px; top: -60px; z-index: 50;
  background: var(--paper); color: var(--ink); padding: 8px 16px;
  border: 1.5px solid var(--ink); border-radius: var(--r-pill);
}
.jd-skip:focus { top: 10px; }

::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: var(--ink-soft); border: 3px solid var(--paper); border-radius: 12px; }
::-webkit-scrollbar-thumb:hover { background: var(--gem); }
::-webkit-scrollbar-button { display: none; }
@supports not selector(::-webkit-scrollbar) {
  html { scrollbar-width: thin; scrollbar-color: var(--ink-soft) var(--paper); }
}

.jd-frame { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 20px; }

/* buttons */
.jd-press {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font: 500 16px/1.2 var(--sans);
  text-decoration: none; cursor: pointer;
  padding: 15px 28px;
  border: 1.5px solid var(--ink);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
.jd-press--lead {
  background: var(--gem); color: #fff; border-radius: var(--r-pill);
}
.jd-press--lead:hover { transform: translateY(-2px); box-shadow: 4px 4px 0 var(--ink); background: var(--gem-deep); }
.jd-press--quiet {
  background: var(--paper); color: var(--ink);
  border-radius: 22px 6px 22px 6px;
}
.jd-press--quiet:hover { background: var(--gem-mist); border-color: var(--gem); transform: translateX(3px); }
.jd-press:active { transform: translateY(0); box-shadow: none; }

/* header */
.jd-canopy {
  position: sticky; top: 0; z-index: 30;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(1.2) blur(6px);
}
.jd-canopy__bar {
  position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: var(--bar-h);
}
.jd-crest { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.jd-crest__mono {
  font-family: var(--serif); font-size: 17px; letter-spacing: .06em;
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 50% 50% 50% 14px;
  background: var(--gem); color: #fff;
}
.jd-crest__name { font-family: var(--serif); font-size: 19px; text-transform: uppercase; letter-spacing: .08em; }
.jd-crest__name b { color: var(--gem); font-weight: 600; }

.jd-toggle {
  display: inline-grid; place-items: center;
  width: 46px; height: 46px; padding: 0;
  background: var(--paper); color: var(--ink);
  border: 1.5px solid var(--ink); border-radius: 14px 50% 50% 50%;
  cursor: pointer; transition: transform .2s ease, background-color .2s ease;
}
.jd-toggle:hover { transform: rotate(-6deg); background: var(--gem-mist); }
.jd-toggle svg { width: 22px; height: 22px; display: block; }
.jd-toggle .jd-toggle__cross { display: none; }
.jd-toggle[aria-expanded="true"] .jd-toggle__lines { display: none; }
.jd-toggle[aria-expanded="true"] .jd-toggle__cross { display: block; }

.jd-sprig {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: var(--paper);
  border: 1.5px solid var(--ink); border-radius: 18px;
  padding: 10px 18px 18px;
  box-shadow: 0 18px 40px rgba(14, 21, 18, .12);
  display: none;
}
.jd-sprig.is-open { display: block; }
.jd-sprig__list { list-style: none; margin: 0; padding: 0; }
.jd-sprig__list > li + li { border-top: 1px solid var(--gem-mist-2); }
.jd-sprig__link {
  display: block; padding: 13px 4px; color: var(--ink); text-decoration: none; font-weight: 500;
}
.jd-sprig__link:hover { color: var(--gem); }
.jd-sprig__link--club {
  margin-top: 10px; text-align: center; border: 1.5px solid var(--ink);
  border-radius: var(--r-pill); background: var(--gem-mist);
}
.jd-lock { overflow: hidden; }

/* hero */
.jd-overture { padding-block: clamp(48px, 9vw, 110px) clamp(40px, 6vw, 80px); text-align: center; }
.jd-overture__eyebrow {
  display: inline-block; font-size: 13px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 16px; border-radius: var(--r-tag); background: var(--gem-mist); color: var(--gem-deep);
}
.jd-overture__title {
  font-size: clamp(40px, 7.4vw, 74px); line-height: 1.12;
  max-width: 15.5em; margin: 22px auto 0;
}
.jd-overture__title em { font-style: normal; color: var(--gem); }
.jd-overture__line { display: block; }
.jd-overture__brand { font-size: 15px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); margin: 22px 0 0; }
.jd-overture__lead { max-width: 620px; margin: 18px auto 0; font-size: 19px; line-height: 1.85; }
.jd-overture__actions { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 16px; margin-top: 34px; }
.jd-age {
  display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-soft);
}
.jd-age__mark {
  font-weight: 600; color: var(--ink); background: var(--gem-mist);
  border-radius: var(--r-tag); padding: 4px 11px;
}

/* hero figures stay on one row down to 560px, three short numbers read better side by side than stacked */
.jd-tally { display: grid; grid-template-columns: 1fr; gap: var(--gap); margin-top: 56px; }
.jd-tally__cell { background: var(--gem-mist); border-radius: var(--r-card); padding: 22px 18px; }
.jd-tally__num { display: block; font-family: var(--serif); font-size: 40px; line-height: 1.1; color: var(--gem-deep); }
.jd-tally__cap { display: block; font-size: 15px; color: var(--ink-soft); margin-top: 6px; }

/* sections */
.jd-grove { padding-block: calc(var(--air) / 2); overflow-x: clip; }
.jd-grove__kicker {
  display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gem);
  margin-bottom: 12px;
}
.jd-grove__heading { font-size: clamp(32px, 5vw, 54px); }
.jd-grove__intro { max-width: 680px; margin-top: 18px; font-size: 18px; }
.jd-grove--center { text-align: center; }
.jd-grove--center .jd-grove__intro { margin-inline: auto; }
.jd-split { display: grid; gap: 28px; }

.jd-facts { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 10px; }
.jd-facts li { position: relative; padding-left: 26px; }
.jd-facts li::before {
  content: ""; position: absolute; left: 0; top: .72em; width: 12px; height: 12px;
  border-radius: 50% 0 50% 50%; background: var(--gem); transform: rotate(-45deg);
}

.jd-bud-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.jd-grove--center .jd-bud-row { justify-content: center; }
.jd-bud { font-size: 14px; font-weight: 500; padding: 6px 15px; border-radius: var(--r-tag); background: var(--gem-mist); color: var(--gem-deep); }

/* casino */
.jd-hall { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); margin-top: 40px; }
.jd-hall__stat { text-align: left; padding: 20px; border-radius: var(--r-card); background: var(--gem-mist); }
.jd-hall__num { display: block; font-family: var(--serif); font-size: clamp(30px, 4vw, 44px); line-height: 1.1; }
.jd-hall__cap { font-size: 14px; color: var(--ink-soft); }
.jd-zones { display: grid; gap: 26px; margin-top: 44px; text-align: left; }
.jd-facet { padding: 26px 24px; border-radius: var(--r-card); background: var(--gem-mist); }
.jd-facet--plain { background: transparent; padding: 0; }
.jd-facet__title { font-size: 25px; margin-bottom: 10px; }
.jd-facet__text { margin: 0; }
.jd-facet__line { font-weight: 600; font-size: 20px; color: var(--gem-deep); margin: 12px 0 4px; }
.jd-rules { display: grid; gap: 12px; margin-top: 34px; text-align: left; }
.jd-rules__item { display: flex; gap: 12px; align-items: baseline; }
.jd-rules__key { font-weight: 600; min-width: 128px; }

/* care */
.jd-care { display: grid; gap: var(--gap); margin-top: 38px; }
.jd-care .jd-facet { background: var(--paper); border: 1.5px solid var(--gem); }

/* rooms */
.jd-roster { list-style: none; padding: 0; margin: 38px 0 0; display: grid; gap: 12px; }
.jd-roster__row { display: grid; gap: 6px; padding: 22px 24px; border-radius: var(--r-card); background: var(--gem-mist); }
.jd-roster__name { font-family: var(--serif); font-size: 24px; }
.jd-roster__size { font-weight: 600; color: var(--gem-deep); }

/* dining */
.jd-trio { display: grid; gap: 34px; margin-top: 40px; }
.jd-trio__hours { display: block; font-size: 14px; font-weight: 500; color: var(--gem-deep); margin-top: 8px; }

/* salons */
.jd-statement { font-family: var(--serif); font-size: clamp(26px, 3.4vw, 38px); line-height: 1.35; margin: 0; }
.jd-statement span { color: var(--gem); }

/* evenings */
.jd-week { list-style: none; padding: 0; margin: 38px 0 0; display: grid; gap: 12px; }
.jd-week__day { display: grid; gap: 4px; padding: 18px 22px; border-radius: 22px 8px 22px 8px; background: var(--gem-mist); }
.jd-week__name { font-weight: 600; color: var(--gem-deep); }

/* contact */
.jd-circle { background: var(--gem-mist); border-radius: 28px 10px 28px 10px; padding: clamp(28px, 5vw, 56px); }
.jd-circle__ways { display: grid; gap: 22px; margin-top: 30px; }
.jd-circle__way { display: grid; gap: 8px; justify-items: start; min-width: 0; }
.jd-circle__label { font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gem-deep); }
.jd-circle__mail { overflow-wrap: anywhere; max-width: 100%; }
.jd-circle__post { margin: 0; }

/* evening request dialog */
.jd-press--grand {
  font-size: 18px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 20px 38px; border-width: 2px; border-radius: 48px 48px 48px 12px;
}
.jd-press--grand:hover { border-radius: 12px 48px 48px 48px; }
.jd-salon__ask { margin-top: 28px; }
.jd-parlour {
  width: min(560px, calc(100vw - 24px)); max-height: calc(100dvh - 24px);
  padding: 0; border: 1.5px solid var(--ink); border-radius: 22px;
  background: var(--paper); color: var(--ink); overflow: auto;
}
.jd-parlour::backdrop { background: rgba(14, 21, 18, .55); }
.jd-parlour__inner { position: relative; padding: 30px clamp(18px, 5vw, 36px) 26px; }
.jd-parlour__close {
  position: absolute; top: 14px; right: 14px; width: 40px; height: 40px;
  display: grid; place-items: center; font-size: 24px; line-height: 1; cursor: pointer;
  background: var(--paper); color: var(--ink); border: 1.5px solid var(--ink); border-radius: 50%;
  transition: transform .2s ease, background-color .2s ease;
}
.jd-parlour__close:hover { transform: rotate(90deg); background: var(--gem-mist); }
.jd-parlour__title { font-family: var(--serif); font-size: clamp(26px, 4vw, 32px); line-height: 1.2; margin: 0 48px 6px 0; }
.jd-parlour__sub { font-size: 14px; color: var(--ink-soft); margin: 0 0 20px; }
.jd-ticket { display: grid; gap: 16px; }
.jd-ticket__row { display: grid; gap: 6px; }
.jd-ticket__label { font-weight: 500; font-size: 15px; }
.jd-ticket__input {
  width: 100%; font: 400 17px/1.4 var(--sans); color: var(--ink);
  padding: 12px 14px; background: var(--paper);
  border: 1.5px solid var(--ink-soft); border-radius: var(--r-field);
}
.jd-ticket__input:focus { border-color: var(--gem); }
.jd-ticket__trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.jd-ticket__agree { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.6; }
.jd-ticket__agree input { width: 20px; height: 20px; margin-top: 2px; flex: 0 0 auto; accent-color: var(--gem); }
.jd-ticket a { text-decoration: underline; }
.jd-ticket__go { justify-self: start; }
.jd-ticket__go:disabled { opacity: .7; cursor: progress; transform: none; box-shadow: none; }
.jd-ticket__status { margin: 0; min-height: 1.4em; font-weight: 500; color: var(--gem-deep); }
.jd-ticket__small { margin: 0; font-size: 13px; line-height: 1.6; color: var(--ink-soft); }
html:not(.jd-js) .jd-parlour { display: block; position: static; margin: 40px auto 0; }
html:not(.jd-js) .jd-parlour__close, html:not(.jd-js) [data-jd-plan] { display: none; }
.jd-paper__lead { font-size: 20px; font-weight: 500; }

/* faq */
.jd-inquiry__q { margin: 0; font: inherit; }
.jd-inquiry { margin-top: 36px; display: grid; gap: 10px; width: 100%; }
.jd-inquiry__item { border-radius: var(--r-card); background: var(--gem-mist); }
.jd-inquiry__ask {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 18px;
  padding: 20px 22px; background: none; border: 0; text-align: left; cursor: pointer;
  font: 500 18px/1.45 var(--sans); color: var(--ink);
}
.jd-inquiry__sign {
  flex: 0 0 auto; width: 32px; height: 32px; display: grid; place-items: center;
  border: 1.5px solid var(--ink); border-radius: 50%; background: var(--paper);
  font-size: 20px; line-height: 1; transition: transform .25s ease, background-color .2s ease;
}
.jd-inquiry__ask:hover .jd-inquiry__sign { background: var(--gem); color: #fff; }
.jd-inquiry__ask[aria-expanded="true"] .jd-inquiry__sign { transform: rotate(45deg); }
.jd-inquiry__reply { padding: 0 22px 20px; }
.jd-inquiry__reply p:last-child { margin-bottom: 0; }

/* footer */
.jd-roots { padding-block: 72px 36px; background: var(--paper); font-size: 15px; }
.jd-roots__grid { display: grid; gap: 34px; }
.jd-roots__title { font-family: var(--serif); font-size: 20px; margin-bottom: 12px; }
.jd-roots__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.jd-roots a { color: var(--ink); }
.jd-roots a:hover { color: var(--gem); }
.jd-roots__mail { overflow-wrap: anywhere; }
.jd-roots__care { margin-top: 40px; padding: 18px 20px; border-radius: var(--r-card); background: var(--gem-mist); }
.jd-roots__small { margin-top: 26px; color: var(--ink-soft); font-size: 14px; }

/* legal pages */
.jd-paper { padding-block: 48px 90px; }
.jd-paper__inner { max-width: 820px; }
.jd-paper h1 { font-size: clamp(34px, 5vw, 54px); margin-bottom: 12px; }
.jd-paper h2 { font-size: clamp(22px, 2.6vw, 28px); margin: 42px 0 12px; }
.jd-paper h3 { font-size: 20px; margin: 26px 0 8px; }
.jd-paper__stamp { color: var(--ink-soft); font-size: 15px; }
.jd-paper ul { padding-left: 22px; }
.jd-paper li { margin-bottom: 6px; }
.jd-paper a { text-decoration: underline; overflow-wrap: anywhere; }
.jd-paper .jd-press { text-decoration: none; }
.jd-paper__box { background: var(--gem-mist); border-radius: var(--r-card); padding: 18px 22px; margin: 18px 0; }
.jd-paper__box p:last-child { margin-bottom: 0; }
.jd-sheet { overflow-x: auto; margin: 18px 0; border-radius: var(--r-card); background: var(--gem-mist); }
.jd-sheet table { border-collapse: collapse; width: 100%; min-width: 620px; font-size: 15px; }
.jd-sheet th, .jd-sheet td { text-align: left; padding: 12px 14px; vertical-align: top; }
.jd-sheet thead th { border-bottom: 1.5px solid var(--gem); }
.jd-sheet code { font-size: 14px; overflow-wrap: anywhere; }
.jd-sheet::-webkit-scrollbar-track { background: var(--gem-mist); }
.jd-sheet::-webkit-scrollbar-thumb { border-color: var(--gem-mist); }

/* cookie note + back to top */
.jd-note {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 40;
  background: var(--paper); border: 1.5px solid var(--ink); border-radius: 16px;
  padding: 16px 18px; box-shadow: 0 12px 34px rgba(14, 21, 18, .16);
  font-size: 14px; line-height: 1.6;
}
.jd-note[hidden] { display: none; }
.jd-note p { margin: 0 0 12px; }
.jd-note a { text-decoration: underline; }
.jd-note__row { display: flex; flex-wrap: wrap; gap: 10px; }
.jd-note .jd-press { padding: 10px 20px; font-size: 15px; }

.jd-ascend {
  position: fixed; right: 16px; bottom: 16px; z-index: 35;
  width: 48px; height: 48px; display: grid; place-items: center;
  background: var(--paper); color: var(--ink);
  border: 1.5px solid var(--ink); border-radius: 50% 50% 14px 50%;
  cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, background-color .2s ease;
}
.jd-ascend.is-shown { opacity: 1; pointer-events: auto; transform: none; }
.jd-ascend:hover { background: var(--gem); color: #fff; transform: translateY(-3px); }
.jd-ascend svg { width: 20px; height: 20px; }

/* motion */
@keyframes jd-rise { from { transform: translateY(26px); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes jd-lift { from { transform: translateY(18px); } to { transform: none; } }
@keyframes jd-bloom { from { transform: scale(.94); opacity: 0; } to { transform: none; opacity: 1; } }
.jd-motion .jd-overture__eyebrow { animation: jd-rise .6s ease both; }
.jd-motion .jd-overture__line { animation: jd-lift .7s cubic-bezier(.2, .7, .2, 1) both; }
.jd-motion .jd-overture__line:nth-child(1) { animation-delay: .12s; }
.jd-motion .jd-overture__line:nth-child(2) { animation-delay: .28s; }
.jd-motion .jd-overture__brand { animation: jd-rise .6s ease .45s both; }
.jd-motion .jd-overture__lead { animation: jd-lift .6s ease .55s both; }
.jd-motion .jd-overture__actions { animation: jd-rise .6s ease .75s both; }
.jd-motion .jd-tally__cell { animation: jd-bloom .6s ease both; }
.jd-motion .jd-tally__cell:nth-child(1) { animation-delay: .9s; }
.jd-motion .jd-tally__cell:nth-child(2) { animation-delay: 1.02s; }
.jd-motion .jd-tally__cell:nth-child(3) { animation-delay: 1.14s; }

.jd-motion [data-drift] { opacity: 0; transition: opacity .75s ease, transform .75s cubic-bezier(.2, .7, .2, 1); transition-delay: var(--lag, 0s); }
.jd-motion [data-drift="up"] { transform: translateY(34px); }
.jd-motion [data-drift="left"] { transform: translateX(-44px); }
.jd-motion [data-drift="right"] { transform: translateX(44px); }
.jd-motion [data-drift="far"] { transform: scale(.9); }
.jd-motion [data-drift="near"] { transform: scale(1.06); }
.jd-motion [data-drift].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .jd-motion .jd-overture *, .jd-motion [data-drift] { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
}

@media (min-width: 560px) {
  .jd-tally { grid-template-columns: repeat(3, 1fr); }
  .jd-hall { grid-template-columns: repeat(4, 1fr); }
  .jd-note { left: auto; right: 20px; bottom: 20px; max-width: 460px; }
}

@media (min-width: 768px) {
  body { font-size: 18px; }
  .jd-frame { padding-inline: 32px; }
  .jd-zones { grid-template-columns: repeat(2, 1fr); }
  .jd-care { grid-template-columns: repeat(3, 1fr); }
  .jd-roster__row { grid-template-columns: 220px 120px 1fr; align-items: baseline; gap: 24px; }
  .jd-trio { grid-template-columns: repeat(3, 1fr); }
  .jd-week { grid-template-columns: repeat(2, 1fr); }
  .jd-roots__grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .jd-toggle { display: none; }
  .jd-sprig {
    position: static; display: block; padding: 0; background: transparent;
    border: 0; border-radius: 0; box-shadow: none;
  }
  .jd-sprig__list { display: flex; align-items: center; gap: 26px; }
  .jd-sprig__list > li + li { border-top: 0; }
  .jd-sprig__link { padding: 6px 0; font-size: 16px; }
  .jd-sprig__link--club { margin: 0; padding: 9px 20px; }
  .jd-sprig__link--club:hover { background: var(--gem); color: #fff; }
  .jd-split { grid-template-columns: 5fr 6fr; gap: 64px; align-items: start; }
  .jd-split--wide { grid-template-columns: 6fr 5fr; }
  .jd-week { grid-template-columns: repeat(4, 1fr); }
  .jd-circle__ways { grid-template-columns: auto auto 1fr; gap: 40px; align-items: start; }
  .jd-roots__grid { grid-template-columns: 1.5fr 1.2fr 1fr 1fr; }
  .jd-grove { padding-block: calc(var(--air) / 1.6); }
}
