:root {
  --bg: #f6f0e5;
  --bg-soft: #fff9ef;
  --ink: #17211c;
  --muted: #667064;
  --green: #214d37;
  --green-deep: #07120d;
  --green-soft: #dce8d2;
  --gold: #d6b36a;
  --sand: #dca95c;
  --clay: #b96545;
  --cream: #f5efe3;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(23, 33, 28, 0.16);
  --radius-xl: 34px;
  --radius-md: 20px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #f4dfbd 0, transparent 36%), var(--bg);
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image: linear-gradient(90deg, rgba(0,0,0,.14) 1px, transparent 1px), linear-gradient(rgba(0,0,0,.1) 1px, transparent 1px);
  background-size: 42px 42px;
  z-index: 1;
}

.cursor-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(214,179,106,.18), transparent 62%);
  filter: blur(16px);
  z-index: 0;
  transform: translate(-50%, -50%);
  opacity: .7;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 32px), 1120px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 12px 14px 12px 20px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  background: rgba(255, 249, 239, 0.72);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 50px rgba(23, 33, 28, 0.08);
  transition: top .28s ease, transform .42s cubic-bezier(.22,1,.36,1), opacity .28s ease, background .25s ease, box-shadow .25s ease;
}
.site-header.hidden { transform: translate(-50%, -130%); opacity: 0; pointer-events: none; }
.site-header.scrolled { top: 10px; background: rgba(255, 249, 239, 0.92); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -0.03em; }
.brand-mark { width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg, var(--green), #8bae65 55%, var(--sand)); box-shadow: inset 0 0 0 5px rgba(255,255,255,.42); }
.site-nav { display: flex; align-items: center; gap: 24px; font-size: 14px; font-weight: 650; color: #314037; }
.site-nav a:not(.nav-cta) { opacity: .82; transition: opacity .2s ease; }
.site-nav a:not(.nav-cta):hover { opacity: 1; }
.nav-cta { padding: 11px 17px; border-radius: 999px; background: var(--ink); color: white; }
.nav-toggle { display: none; border: 0; background: transparent; width: 42px; height: 42px; }
.nav-toggle span { display: block; height: 2px; width: 22px; margin: 6px auto; background: var(--ink); }

.section-pad { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; padding: 110px 0; }
.eyebrow { margin: 0 0 14px; text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 800; color: var(--clay); }
.eyebrow.light { color: #d6b36a; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; letter-spacing: -0.055em; line-height: .92; }
h1 { font-size: clamp(58px, 8.2vw, 118px); margin-bottom: 24px; }
h2 { font-size: clamp(42px, 5.4vw, 84px); margin-bottom: 22px; }
h3 { font-size: 25px; letter-spacing: -0.035em; margin-bottom: 12px; }
p { color: var(--muted); line-height: 1.75; }

.hero { display: grid; grid-template-columns: 1fr 0.9fr; gap: 54px; align-items: center; min-height: 100vh; padding-top: 150px; }
.hero-text { max-width: 590px; font-size: 18px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 34px 0; }
.btn { display: inline-flex; justify-content: center; align-items: center; min-height: 52px; padding: 0 24px; border-radius: 999px; font-weight: 800; border: 1px solid transparent; cursor: pointer; transition: transform .22s ease, box-shadow .22s ease; }
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--green); color: white; box-shadow: 0 16px 36px rgba(33, 77, 55, .24); }
.btn.secondary { border-color: rgba(23,33,28,.18); background: rgba(255,255,255,.45); }
.hero-trust { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-trust span { padding: 11px 14px; border-radius: 999px; background: rgba(255,255,255,.45); border: 1px solid rgba(255,255,255,.65); color: #314037; font-weight: 800; font-size: 13px; }
.hero-visual { position: relative; min-height: 680px; }
.hero-video { width: 100%; height: 640px; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow); filter: saturate(.95) contrast(1.02); }
.hero-card { position: absolute; width: 210px; aspect-ratio: 1; object-fit: cover; border-radius: 28px; box-shadow: 0 20px 60px rgba(23,33,28,.22); border: 8px solid rgba(255,249,239,.85); }
.hero-card-one { left: -42px; bottom: 46px; }
.hero-card-two { right: -22px; top: 62px; width: 180px; }
.floating-note { position: absolute; z-index: 3; display: grid; gap: 2px; padding: 14px 16px; border-radius: 20px; background: rgba(255,249,239,.78); backdrop-filter: blur(18px); border: 1px solid rgba(255,255,255,.62); box-shadow: 0 16px 46px rgba(23,33,28,.16); animation: floatNote 5.5s ease-in-out infinite alternate; }
.floating-note strong { font-size: 22px; }
.floating-note span { color: var(--muted); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.note-one { left: 26px; top: 34px; }
.note-two { right: 28px; bottom: 84px; animation-delay: .8s; }
@keyframes floatNote { to { transform: translateY(-14px); } }

.logo-strip { width: 100%; overflow: hidden; display: flex; gap: 40px; padding: 22px 0; border-block: 1px solid rgba(23,33,28,.12); white-space: nowrap; justify-content: center; color: var(--green); font-weight: 800; text-transform: uppercase; letter-spacing: .1em; font-size: 12px; }

.intro { display: grid; grid-template-columns: 1.2fr .8fr; gap: 46px; align-items: end; }
.intro-copy { max-width: 820px; }
.intro-panel { padding: 34px; border-radius: var(--radius-xl); background: rgba(255,249,239,.72); border: 1px solid rgba(255,255,255,.76); box-shadow: 0 20px 70px rgba(23,33,28,.08); }
.intro-panel p { margin-bottom: 0; }

.journey {
  position: relative;
  min-height: 500vh;
  color: var(--cream);
  background: var(--green-deep);
  overflow: clip;
  isolation: isolate;
}
.animated-gradient {
  position: fixed;
  inset: -35%;
  z-index: -4;
  background:
    radial-gradient(circle at 20% 30%, rgba(184, 143, 74, 0.62), transparent 32%),
    radial-gradient(circle at 75% 20%, rgba(90, 128, 82, 0.58), transparent 30%),
    radial-gradient(circle at 55% 75%, rgba(21, 58, 43, 0.94), transparent 35%),
    radial-gradient(circle at 88% 82%, rgba(226, 194, 128, 0.34), transparent 28%),
    linear-gradient(135deg, #07120d, #10251a, #1d3325);
  filter: blur(54px);
  animation: gradientFloat 18s ease-in-out infinite alternate;
  transform: scale(1.15);
  opacity: 0;
  transition: opacity .45s ease;
}
.journey.is-active .animated-gradient { opacity: 1; }
@keyframes gradientFloat {
  0% { transform: scale(1.15) translate3d(-2%, -2%, 0) rotate(0deg); }
  50% { transform: scale(1.25) translate3d(3%, 2%, 0) rotate(8deg); }
  100% { transform: scale(1.18) translate3d(-1%, 4%, 0) rotate(-6deg); }
}
.journey-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image: linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mix-blend-mode: overlay;
  z-index: -1;
}
.journey-orb { position: absolute; border-radius: 999px; filter: blur(30px); opacity: .32; pointer-events: none; }
.orb-one { width: 380px; height: 380px; left: -90px; top: 18%; background: #d6b36a; }
.orb-two { width: 520px; height: 520px; right: -170px; bottom: 16%; background: #214d37; }
.journey-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  padding: clamp(54px, 6.5vh, 76px) 0 clamp(22px, 3.5vh, 36px);
}
.journey-header { max-width: 760px; margin-bottom: clamp(10px, 1.7vh, 18px); }
.journey-header h2 { font-size: clamp(42px, 5.8vw, 88px); margin-bottom: 10px; color: var(--cream); }
.journey-header p { max-width: 570px; color: rgba(245,239,227,.72); font-size: clamp(15px, 1.7vw, 18px); }
.journey-layout { display: grid; grid-template-columns: 300px 1fr; gap: 42px; align-items: center; min-height: 0; height: 100%; }
.journey-visual { position: relative; height: min(62vh, 560px); min-height: 440px; align-self: center; overflow: visible; }
.journey-svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.journey-path-base, .journey-path-progress { stroke-linecap: round; stroke-width: 2.5; }
.journey-path-base { stroke: rgba(245,239,227,.16); }
.journey-path-progress { stroke: var(--gold); stroke-dasharray: var(--path-length, 1000); stroke-dashoffset: calc(var(--path-length, 1000) * (1 - var(--progress, 0))); filter: drop-shadow(0 0 12px rgba(214,179,106,.6)); }
.step-dot { position: absolute; width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; background: rgba(245,239,227,.08); border: 1px solid rgba(245,239,227,.18); backdrop-filter: blur(14px); color: rgba(245,239,227,.68); transition: all .35s ease; }
.step-dot span { font-size: 12px; font-weight: 900; letter-spacing: .08em; }
.step-dot.active { background: var(--gold); color: #17120a; transform: scale(1.08); box-shadow: 0 0 0 10px rgba(214,179,106,.12), 0 18px 45px rgba(0,0,0,.24); }
.dot-1 { left: 42%; top: 0%; }
.dot-2 { left: 43%; top: 25%; }
.dot-3 { left: 42%; top: 50%; }
.dot-4 { left: 43%; top: 74%; }
.dot-5 { left: 47%; bottom: 2%; }
.journey-cards { position: relative; height: min(62vh, 560px); min-height: 440px; align-self: center; }
.journey-card { position: absolute; inset: 0; display: grid; grid-template-columns: .92fr 1fr; gap: 28px; align-items: end; padding: 22px; border-radius: 36px; border: 1px solid rgba(245,239,227,.14); background: rgba(245,239,227,.08); backdrop-filter: blur(24px); box-shadow: 0 34px 100px rgba(0,0,0,.2); opacity: 0; transform: translateY(38px) scale(.98); transition: opacity .45s ease, transform .45s ease; pointer-events: none; }
.journey-card.active { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.card-image { height: 100%; min-height: 0; border-radius: 28px; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.96) contrast(1.02); transform: scale(1.04); transition: transform .7s ease; }
.journey-card:nth-child(1) .card-image img { object-position: center 45%; }
.journey-card:nth-child(3) .card-image img { object-position: center 58%; }
.journey-card.active .card-image img { transform: scale(1); }
.card-copy { padding: 18px 18px 22px 0; }
.card-copy span { display: inline-block; margin-bottom: 16px; color: var(--gold); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 900; }
.card-copy h3 { font-family: "Playfair Display", Georgia, serif; font-size: clamp(42px, 5vw, 82px); line-height: .9; color: var(--cream); letter-spacing: -.055em; margin-bottom: 20px; }
.card-copy p { color: rgba(245,239,227,.74); font-size: 18px; max-width: 430px; }

.section-heading { max-width: 790px; margin-bottom: 44px; }
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.program-card { position: relative; overflow: hidden; min-height: 520px; border-radius: var(--radius-xl); box-shadow: var(--shadow); background: #111; }
.program-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .78; transition: transform .6s ease; }
.program-card:hover img { transform: scale(1.05); }
.program-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.72)); }
.program-card div { position: absolute; z-index: 2; left: 26px; right: 26px; bottom: 26px; color: white; }
.program-card p, .program-card span { color: rgba(255,255,255,.78); }
.program-card.featured { transform: translateY(-28px); }

.nutrition { display: grid; grid-template-columns: .9fr 1.16fr; gap: 50px; align-items: center; position: relative; }
.nutrition::before { content: ""; position: absolute; width: 420px; height: 420px; right: -150px; top: 50%; transform: translateY(-50%); border-radius: 999px; background: radial-gradient(circle, rgba(214,179,106,.2), transparent 66%); pointer-events: none; }
.nutrition-copy { position: relative; z-index: 2; padding: 48px; border-radius: var(--radius-xl); background: var(--green); color: white; box-shadow: 0 28px 90px rgba(33,77,55,.18); }
.nutrition-copy p { color: rgba(255,255,255,.75); }
.nutrition-copy .eyebrow { color: #f6d6a6; }
.nutrition-points { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 6px; }
.nutrition-points span { padding: 10px 13px; border-radius: 999px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.86); font-weight: 800; font-size: 12px; }
.text-link { display: inline-block; margin-top: 16px; color: white; font-weight: 900; border-bottom: 2px solid rgba(255,255,255,.5); }
.nutrition-gallery { position: relative; z-index: 1; display: grid; grid-template-columns: .86fr 1fr; grid-template-rows: 300px 250px; gap: 20px; align-items: stretch; min-height: 570px; }
.nutrition-img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow); }
.nutrition-img-tall { grid-row: 1 / 3; }
.nutrition-img-bowl { grid-column: 2; grid-row: 1; align-self: end; transform: translateY(18px); }
.nutrition-img-plate { grid-column: 2; grid-row: 2; align-self: start; transform: translate(-58px, 18px); width: calc(100% + 58px); }
.nutrition-badge { position: absolute; right: 30px; bottom: 28px; display: grid; gap: 2px; min-width: 178px; padding: 17px 18px; border-radius: 24px; background: rgba(255,249,239,.78); backdrop-filter: blur(18px); border: 1px solid rgba(255,255,255,.72); box-shadow: 0 18px 48px rgba(23,33,28,.13); }
.nutrition-badge strong { font-size: 28px; letter-spacing: -.04em; }
.nutrition-badge span { color: var(--muted); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }

.studio { position: relative; min-height: 760px; display: grid; align-items: end; }
.studio-bg { position: absolute; inset: 110px 0; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); }
.studio-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,18,13,.12), rgba(7,18,13,.28)); }
.studio-bg img { width: 100%; height: 100%; object-fit: cover; }
.studio-panel { position: relative; max-width: 540px; margin: 0 46px 46px auto; padding: 42px; border-radius: 28px; background: rgba(255,249,239,.82); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,.72); }

.benefits { padding-top: 20px; }
.benefit-card { padding: 50px; border-radius: 38px; background: rgba(255,249,239,.72); border: 1px solid rgba(255,255,255,.78); box-shadow: 0 20px 80px rgba(23,33,28,.08); }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 22px; }
.benefit-grid p { margin: 0; padding: 22px; border-radius: 24px; background: rgba(255,255,255,.55); }
.benefit-grid strong { color: var(--ink); }

.contact { display: grid; grid-template-columns: .9fr 1fr; gap: 50px; align-items: start; padding-bottom: 80px; }
.contact-form { padding: 34px; border-radius: var(--radius-xl); background: rgba(255,249,239,.72); border: 1px solid rgba(255,255,255,.75); box-shadow: 0 20px 70px rgba(23,33,28,.09); display: grid; gap: 18px; }
label { display: grid; gap: 8px; color: #314037; font-weight: 800; }
input, select { width: 100%; border: 1px solid rgba(23,33,28,.15); border-radius: 16px; padding: 15px 16px; background: rgba(255,255,255,.72); color: var(--ink); outline: none; }
input:focus, select:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(33,77,55,.1); }

.footer { width: min(calc(100% - 32px), var(--max)); margin: 0 auto 28px; padding: 26px 0; border-top: 1px solid rgba(23,33,28,.12); display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.footer p { margin: 0; font-size: 14px; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

@media (max-width: 980px) {
  .site-nav { position: fixed; top: 72px; left: 0; right: 0; display: none; flex-direction: column; padding: 22px; border-radius: 28px; background: rgba(255,249,239,.96); box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .hero, .intro, .nutrition, .contact { grid-template-columns: 1fr; }
  .hero-visual { min-height: 540px; }
  .hero-video { height: 520px; }
  .journey { min-height: auto; padding: 90px 0; }
  .animated-gradient { position: absolute; opacity: 1; }
  .journey-sticky { position: relative; height: auto; min-height: auto; padding: 0; }
  .journey-layout { grid-template-columns: 1fr; min-height: auto; }
  .journey-visual { display: none; }
  .journey-cards { height: auto; display: grid; gap: 18px; }
  .journey-card { position: relative; opacity: 1; transform: none; grid-template-columns: 1fr; pointer-events: auto; }
  .card-image { min-height: 320px; }
  .card-copy { padding: 8px 6px 12px; }
  .program-grid, .benefit-grid { grid-template-columns: 1fr; }
  .program-card.featured { transform: none; }
  .nutrition-gallery { grid-template-columns: 1fr; grid-template-rows: none; min-height: auto; }
  .nutrition-img-tall, .nutrition-img-bowl, .nutrition-img-plate { grid-column: auto; grid-row: auto; height: 360px; transform: none; width: 100%; }
  .nutrition-badge { right: 18px; bottom: 18px; }
  .studio-panel { margin: 0 20px 40px; }
  .footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .section-pad { padding: 78px 0; }
  .hero { padding-top: 120px; }
  h1 { font-size: 52px; }
  .hero-card { display: none; }
  .floating-note { display: none; }
  .logo-strip { justify-content: flex-start; padding-left: 16px; }
  .journey-header h2 { font-size: 54px; }
  .journey-card, .nutrition-copy, .contact-form, .studio-panel, .benefit-card { padding: 26px; }
  .program-card { min-height: 430px; }
  .cursor-glow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .journey-card { opacity: 1; transform: none; }
}


/* Image composition refinements for the updated asset set */
.hero-card-one { object-position: center; }
.hero-card-two { object-position: center 40%; }
.program-card img[src$="push-ups.png"] { object-position: center; }
.program-card img[src$="foam-roller.png"] { object-position: center 38%; }
.program-card img[src$="rainbow-bento.png"] { object-position: center; }
.card-image img[src$="rainbow-bento.png"] { object-position: center; }
.card-image img[src$="push-ups.png"] { object-position: center; }
.card-image img[src$="foam-roller.png"] { object-position: center 38%; }
.card-image img[src$="man-stretching.png"] { object-position: center 42%; }
.nutrition-gallery img[src$="rainbow-bento.png"] { object-position: center; }
.nutrition-gallery img[src$="healthy-meal-setup.png"] { object-position: center; }

/* Final interactive button polish */
.btn,
.nav-cta,
.text-link,
.nav-toggle {
  -webkit-tap-highlight-color: transparent;
}

.btn,
.nav-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  will-change: transform, box-shadow;
}

.btn::before,
.nav-cta::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  opacity: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255,255,255,.44), transparent 34%);
  transition: opacity .28s ease;
}

.btn::after,
.nav-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.28) 45%, transparent 60%);
  transform: translateX(-120%);
  transition: transform .65s cubic-bezier(.22, 1, .36, 1);
}

.btn:hover::before,
.nav-cta:hover::before {
  opacity: 1;
}

.btn:hover::after,
.nav-cta:hover::after {
  transform: translateX(120%);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 22px 48px rgba(33, 77, 55, .34), 0 0 0 6px rgba(33, 77, 55, .08);
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
  transform: translateY(-3px) scale(1.015);
  border-color: rgba(33,77,55,.28);
  background: rgba(255,255,255,.7);
  box-shadow: 0 18px 40px rgba(23,33,28,.11), 0 0 0 6px rgba(255,255,255,.34);
}

.nav-cta {
  box-shadow: 0 10px 24px rgba(23,33,28,.16);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px) scale(1.015);
  background: #101a15;
  box-shadow: 0 16px 36px rgba(23,33,28,.24), 0 0 0 6px rgba(23,33,28,.06);
}

.btn:active,
.nav-cta:active {
  transform: translateY(0) scale(.98);
  box-shadow: 0 10px 22px rgba(23,33,28,.16);
}

.btn:focus-visible,
.nav-cta:focus-visible,
.text-link:focus-visible,
.nav-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(214,179,106,.34), 0 18px 42px rgba(23,33,28,.12);
}

.site-nav a:not(.nav-cta) {
  position: relative;
  padding: 8px 0;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: .45;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .28s ease;
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.text-link {
  position: relative;
  border-bottom: 0;
  transition: transform .22s ease, color .22s ease;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: scaleX(.72);
  transform-origin: left;
  opacity: .58;
  transition: transform .28s ease, opacity .28s ease;
}

.text-link:hover,
.text-link:focus-visible {
  transform: translateY(-2px);
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

.button-ripple {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  pointer-events: none;
  background: rgba(255,255,255,.45);
  transform: translate(-50%, -50%) scale(0);
  animation: buttonRipple .55s ease-out forwards;
  mix-blend-mode: screen;
}

.btn.secondary .button-ripple {
  background: rgba(33,77,55,.16);
  mix-blend-mode: multiply;
}

@keyframes buttonRipple {
  to {
    transform: translate(-50%, -50%) scale(18);
    opacity: 0;
  }
}

.nav-toggle {
  border-radius: 50%;
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}

.nav-toggle:hover {
  transform: translateY(-1px);
  background: rgba(33,77,55,.08);
  box-shadow: 0 12px 28px rgba(23,33,28,.1);
}

@media (hover: none) {
  .btn:hover,
  .nav-cta:hover,
  .text-link:hover,
  .nav-toggle:hover {
    transform: none;
  }
}
