/* ==========================================================================
   Lotus River Spa — Ubud, Bali
   Palette: deep river jade / sage / cool river stone / water celadon / gold
   Type: Fraunces (display) + Albert Sans (body)
   ========================================================================== */

:root {
  --jade-deep: #1C2B23;      /* dark sections, ink on light */
  --jade-ink: #1E2A24;       /* body text on stone */
  --jade-water: #2F5D4E;     /* accent, links, buttons */
  --sage: #9DB1A0;
  --celadon: #DCE5DD;
  --stone: #EFF0E8;          /* page background */
  --stone-lift: #F7F8F2;     /* raised surfaces */
  --gold: #B99C63;
  --muted: #5A6B60;          /* secondary text on light */
  --pale: #D8E2D8;           /* secondary text on dark */
  --cream: #EFEFE4;          /* brightest text on dark */

  --wa: #2F7A5B;             /* WhatsApp buttons */
  --wa-hover: #276449;

  --r-lg: 18px;
  --r-md: 12px;
  --r-pill: 999px;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Albert Sans", "Helvetica Neue", Arial, sans-serif;

  --header-h: 4.25rem;
}

/* ---- Reset & base ------------------------------------------------------ */

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

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  background: var(--stone);
  color: var(--jade-ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--jade-ink);
  text-wrap: balance;
}

h2 {
  font-size: clamp(2rem, 1.4rem + 3vw, 3rem);
  letter-spacing: -0.015em;
}

h3 { font-size: 1.15rem; font-weight: 600; }

p, li { text-wrap: pretty; }

a { color: var(--jade-water); }

a:hover { color: var(--jade-deep); }

::selection { background: var(--sage); color: var(--jade-deep); }

:focus-visible {
  outline: 2px solid var(--jade-water);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3.5rem;
  z-index: 100;
  background: var(--jade-deep);
  color: var(--cream);
  padding: 0.6rem 1rem;
  border-radius: var(--r-md);
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus { top: 1rem; }

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--wa);
  color: #fff;
}

.btn-primary:hover { background: var(--wa-hover); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(239, 240, 232, 0.45);
}

.btn-ghost:hover { border-color: var(--cream); color: var(--cream); background: rgba(239, 240, 232, 0.08); }

.btn-ghost-dark {
  background: transparent;
  color: var(--jade-water);
  border-color: rgba(47, 93, 78, 0.4);
}

.btn-ghost-dark:hover { background: var(--jade-water); color: var(--stone); border-color: var(--jade-water); }

.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.925rem; }

.btn-wa {
  background: var(--wa);
  color: #fff;
  border-radius: var(--r-md);
  padding: 1rem 1.4rem;
  flex-wrap: wrap;
  row-gap: 0.15rem;
}

.btn-wa:hover { background: var(--wa-hover); color: #fff; }

.btn-sub {
  flex-basis: 100%;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
}

.wa-icon { width: 1.15em; height: 1.15em; fill: currentColor; flex-shrink: 0; }

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  color: var(--cream);
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(239, 240, 232, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--jade-ink);
  box-shadow: 0 1px 0 rgba(30, 42, 36, 0.08);
}

.header-inner {
  width: min(72rem, 92%);
  margin-inline: auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
}

.logo-mark {
  width: 2rem;
  height: 2rem;
  fill: currentColor;
  flex-shrink: 0;
}

.logo-water { stroke: currentColor; }

.brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.brand-name em { font-style: italic; font-weight: 400; }

.site-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav a:not(.btn) {
  color: inherit;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding-block: 0.35rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.site-nav a:not(.btn):hover { border-bottom-color: currentColor; }

.site-nav a.active { border-bottom-color: currentColor; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.6rem;
  cursor: pointer;
  color: inherit;
}

.nav-toggle-bar {
  display: block;
  width: 1.4rem;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:last-child { transform: translateY(-3.5px) rotate(-45deg); }

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

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--jade-deep);
  color: var(--cream);
  overflow: hidden;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: 62% 40%;
}

@keyframes hero-drift {
  from { transform: scale(1); }
  to { transform: scale(1.07); }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-media img { animation: hero-drift 26s ease-in-out infinite alternate; }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(28, 43, 35, 0.5) 0%, rgba(28, 43, 35, 0.28) 45%, rgba(28, 43, 35, 0.86) 100%);
}

.hero-inner {
  position: relative;
  width: min(72rem, 92%);
  margin-inline: auto;
  padding-block: 6rem 3.5rem;
  max-width: 72rem;
}

.hero-inner > * { max-width: 46rem; }

.hero-place {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--celadon);
  margin-bottom: 0.9rem;
}

.hero h1 {
  font-size: clamp(2.7rem, 1.6rem + 5.5vw, 5rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: clamp(1.05rem, 0.95rem + 0.6vw, 1.25rem);
  line-height: 1.6;
  color: var(--pale);
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.hero-foot {
  position: relative;
  width: min(72rem, 92%);
  margin-inline: auto;
  padding-block: 1.1rem 1.4rem;
  border-top: 1px solid rgba(216, 226, 216, 0.25);
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 2.5rem;
  font-size: 0.9rem;
  color: var(--pale);
}

/* One orchestrated entrance: hero copy fades up in sequence. */
@media (prefers-reduced-motion: no-preference) {
  .hero-place, .hero h1, .hero-sub, .hero-actions, .hero-foot {
    opacity: 0;
    transform: translateY(16px);
    animation: rise 0.9s cubic-bezier(0.22, 0.65, 0.3, 1) forwards;
  }
  .hero h1 { animation-delay: 0.12s; }
  .hero-sub { animation-delay: 0.24s; }
  .hero-actions { animation-delay: 0.36s; }
  .hero-foot { animation-delay: 0.5s; }
}

@keyframes rise {
  to { opacity: 1; transform: none; }
}

/* ---- Shared section chrome ---------------------------------------------- */

.section { padding-block: clamp(4.5rem, 6vw + 2rem, 8rem); }

.section-head { width: min(72rem, 92%); margin-inline: auto; margin-bottom: clamp(2.25rem, 4vw, 3.5rem); }

.section-head h2 { margin-bottom: 0.9rem; }

.lede {
  font-size: 1.075rem;
  color: var(--muted);
  max-width: 58ch;
  line-height: 1.65;
}

.section-head-light .lede { color: var(--pale); }

/* ---- Treatments: the menu ------------------------------------------------ */

.treatments-layout {
  width: min(72rem, 92%);
  margin-inline: auto;
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.menu { min-width: 0; }

.menu-group + .menu-group { margin-top: clamp(2.5rem, 5vw, 3.75rem); }

.menu-group h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--jade-water);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(30, 42, 36, 0.16);
  margin-bottom: 0.35rem;
}

.menu-item { padding-block: 1.15rem; }

.menu-item + .menu-item { border-top: 1px solid rgba(30, 42, 36, 0.07); }

.menu-line {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
}

.menu-line h4 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 500;
  letter-spacing: 0;
}

.dots {
  flex: 1;
  min-width: 1.5rem;
  border-bottom: 1px dotted rgba(30, 42, 36, 0.32);
  transform: translateY(-4px);
}

.price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--jade-deep);
  white-space: nowrap;
}

.menu-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 54ch;
  margin-top: 0.3rem;
}

.extend { font-style: italic; color: var(--jade-water); }

.treatments-aside { position: relative; }

.aside-figure {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--celadon);
}

.aside-figure img {
  width: 100%;
  height: 100%;
  min-height: 20rem;
  object-fit: cover;
}

.aside-note {
  margin-top: 1.1rem;
  padding: 1.1rem 1.25rem;
  background: var(--celadon);
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--jade-deep);
}

/* ---- Packages ------------------------------------------------------------ */

.packages {
  background: var(--jade-deep);
  color: var(--cream);
}

.packages .section-head h2 { color: var(--cream); }

.packages-grid {
  width: min(72rem, 92%);
  margin-inline: auto;
  display: grid;
  gap: 1.25rem;
}

.package {
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
}

.package-half {
  background: var(--stone-lift);
  color: var(--jade-ink);
}

.package-half h3,
.package-half .package-price { color: var(--jade-deep); }

.package-full {
  background: #243630;
  border-top: 2px solid var(--gold);
  color: var(--pale);
}

.package-full h3 { color: var(--cream); }

.package-head { margin-bottom: 1.25rem; }

.package-head h3 {
  font-size: clamp(1.6rem, 1.3rem + 1.5vw, 2.1rem);
  font-weight: 500;
}

.package-kind {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  margin-top: 0.15rem;
}

.package-half .package-kind { color: var(--muted); }
.package-full .package-kind { color: var(--sage); }

.package-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  font-size: 0.975rem;
  margin-bottom: 1.5rem;
}

.package-list li {
  padding-left: 1.6rem;
  position: relative;
}

.package-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.85rem;
  height: 0.85rem;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2 9.5C6 4 10 3 14 3c0 4.5-2 8-7 10C4 11 3 10.5 2 9.5Z' fill='%239DB1A0'/%3E%3C/svg%3E");
}

.package-full .package-list li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2 9.5C6 4 10 3 14 3c0 4.5-2 8-7 10C4 11 4 10.5 2 9.5Z' fill='%23B99C63'/%3E%3C/svg%3E");
}

.package-save {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.package-half .package-save { color: var(--jade-water); }
.package-full .package-save { color: var(--gold); }

.package-price {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 1.4rem + 1.4vw, 2.2rem);
  font-weight: 500;
  margin-top: auto;
  margin-bottom: 1.4rem;
}

.package-price span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  margin-top: 0.1rem;
}

.package-half .package-price span { color: var(--muted); }

.package .btn { align-self: flex-start; }

/* ---- Gallery -------------------------------------------------------------- */

.gallery-grid {
  width: min(72rem, 92%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 34vw;
  grid-auto-flow: dense;
  gap: 0.65rem;
}

.g-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--celadon);
  min-height: 0;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.6, 0.25, 1);
}

@media (prefers-reduced-motion: no-preference) {
  .g-item:hover img { transform: scale(1.04); }
}

.g-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.2rem 1rem 0.8rem;
  background: linear-gradient(to top, rgba(28, 43, 35, 0.72), rgba(28, 43, 35, 0));
  color: var(--cream);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.g-item:hover figcaption,
.g-item:focus-within figcaption { opacity: 1; }

/* ---- About ------------------------------------------------------------------ */

.about-layout {
  width: min(72rem, 92%);
  margin-inline: auto;
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.about-text { max-width: 60ch; }

.about-text p { margin-bottom: 1.1rem; color: var(--muted); line-height: 1.7; }

.about-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 1.15rem + 1vw, 1.6rem);
  line-height: 1.4;
  color: var(--jade-deep);
  border-left: 2px solid var(--gold);
  padding-left: 1.25rem;
  margin-block: 2rem 2.5rem;
}

.therapist-heading { margin-bottom: 1rem; }

.therapists { display: grid; gap: 1.1rem; }

.therapist dt {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.08rem;
}

.therapist dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-figure {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--celadon);
  align-self: stretch;
}

.about-figure img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
}

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

.contact { background: var(--celadon); }

.contact-layout {
  width: min(72rem, 92%);
  margin-inline: auto;
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.contact-details { max-width: 30rem; }

.btn-wa { margin-bottom: 0.9rem; }

.contact-alt { font-size: 0.95rem; color: var(--muted); margin-bottom: 2rem; }

.contact-details h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--jade-water);
  margin-bottom: 0.6rem;
}

.hours, .address { margin-bottom: 2rem; }

.hours-list { display: grid; gap: 0.35rem; }

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(30, 42, 36, 0.1);
  font-size: 0.95rem;
}

.hours-row dt { color: var(--muted); font-weight: 400; }

.hours-row dd {
  margin: 0;
  font-variant-numeric: tabular-nums;
  font-family: var(--font-display);
  font-weight: 500;
}

.hours-row.today dt,
.hours-row.today dd { color: var(--jade-deep); }

.hours-row.today dd::after {
  content: "today";
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--jade-water);
  margin-left: 0.6rem;
}

.hours-note {
  margin-top: 0.8rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted);
}

.address p { color: var(--muted); font-style: normal; line-height: 1.6; }

.map-card { min-width: 0; }

.map-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(30, 42, 36, 0.12);
  background: var(--stone-lift);
  aspect-ratio: 4 / 3;
}

.map-frame svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-label {
  position: absolute;
  left: 50%;
  bottom: 0.9rem;
  transform: translateX(-50%);
  background: var(--stone-lift);
  color: var(--jade-deep);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--r-pill);
  border: 1px solid rgba(30, 42, 36, 0.12);
  white-space: nowrap;
}

.map-caption {
  margin-top: 0.9rem;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 46ch;
}

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

.site-footer {
  background: var(--jade-deep);
  color: var(--pale);
  padding-block: clamp(3rem, 5vw, 4.5rem) 2rem;
}

.footer-inner {
  width: min(72rem, 92%);
  margin-inline: auto;
  display: grid;
  gap: 2.25rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid rgba(216, 226, 216, 0.14);
}

.footer-brand .logo-mark { color: var(--sage); }

.footer-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cream);
  margin-top: 0.6rem;
}

.footer-blurb { font-size: 0.95rem; margin-top: 0.3rem; max-width: 30ch; }

.footer-nav { display: grid; gap: 0.6rem; align-content: start; }

.footer-nav a {
  color: var(--pale);
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-nav a:hover { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; }

.footer-contact { display: grid; gap: 0.6rem; align-content: start; font-size: 0.95rem; }

.footer-contact a { color: var(--pale); text-decoration: none; }

.footer-contact a:hover { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; }

.footer-contact p { margin: 0; }

.footer-fine {
  width: min(72rem, 92%);
  margin: 1.6rem auto 0;
  font-size: 0.85rem;
  color: rgba(216, 226, 216, 0.6);
}

/* ---- Scroll reveal --------------------------------------------------------------- */

@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s cubic-bezier(0.22, 0.65, 0.3, 1), transform 0.7s cubic-bezier(0.22, 0.65, 0.3, 1);
  }
  [data-reveal].revealed { opacity: 1; transform: none; }
}

/* ---- Breakpoints ------------------------------------------------------------------ */

@media (min-width: 48em) {
  .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 10.5rem; }

  .g-a { grid-column: span 2; grid-row: span 2; }
  .g-b { grid-column: span 2; grid-row: span 1; }
  .g-c { grid-column: span 2; grid-row: span 2; }
  .g-d { grid-column: span 2; grid-row: span 1; }
  .g-e { grid-column: span 2; grid-row: span 2; }
  .g-f { grid-column: span 2; grid-row: span 1; }
  .g-g { grid-column: span 2; grid-row: span 1; }
  .g-h { grid-column: span 2; grid-row: span 1; }

  .treatments-layout { grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); }

  .packages-grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 1.75rem; }

  .about-layout { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }

  .contact-layout { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }

  .footer-inner { grid-template-columns: 2fr 1fr 1.5fr; gap: 3rem; }
}

@media (max-width: 47.99em) {
  .nav-toggle { display: block; }

  .site-nav {
    position: fixed;
    inset: 0;
    background: var(--jade-deep);
    color: var(--cream);
    padding: calc(var(--header-h) + 2rem) 8% 3rem;
    display: grid;
    align-content: start;
    gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .site-header.scrolled .site-nav { background: var(--jade-deep); }

  .site-nav.open { opacity: 1; visibility: visible; }

  .site-nav ul { display: grid; gap: 0.35rem; }

  .site-nav li { border-bottom: 1px solid rgba(216, 226, 216, 0.14); }

  .site-nav a:not(.btn) {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    padding-block: 0.85rem;
    border-bottom: none;
  }

  .site-nav li.nav-cta { border-bottom: none; margin-top: 1.25rem; }

  .site-nav .btn-sm { padding: 0.85rem 1.5rem; font-size: 1rem; }
}