:root {
  --teal: #0f6e6b;
  --teal-dark: #0a4f4d;
  --teal-soft: #e7f4f3;
  --sage: #3d8b7a;
  --gold: #b0894d;
  --ink: #1c2b33;
  --muted: #5b6b73;
  --line: #d7e4e2;
  --bg: #f7fbfb;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(15, 55, 54, 0.08);
  --radius: 22px;
  --header: 118px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 118px; }
@media (max-width: 1199px) {
  html { scroll-padding-top: 130px; }
}
@media (max-width: 480px) {
  html { scroll-padding-top: 136px; }
}
html, body { max-width: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16.5px;
  overflow-x: clip;
}
#main { overflow-x: clip; max-width: 100%; }
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-dark); text-decoration: none; }
a:hover { color: var(--teal); }
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 0.6em; color: var(--ink); }
h1 { font-size: clamp(2.1rem, 4.6vw, 4.1rem); font-weight: 600; }
h2 { font-size: clamp(1.7rem, 3vw, 2.7rem); font-weight: 600; }
h3 { font-size: 1.35rem; font-weight: 600; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; }
address { font-style: normal; }
.muted { color: var(--muted); }
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--teal); color: #fff; padding: 8px 12px; z-index: 1000;
}
.skip-link:focus { left: 12px; top: 12px; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.container { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }
.section { padding: 72px 0; position: relative; }
.section-alt { background: linear-gradient(180deg, var(--bg), #fff); }
.eyebrow {
  display: inline-block;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.lede { font-size: 1.08rem; color: var(--muted); max-width: 62ch; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; padding: 13px 22px; font-weight: 600; font-size: 0.95rem;
  border: 1px solid transparent; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 10px 24px rgba(15,110,107,.22); }
.btn-primary:hover { background: var(--teal-dark); color: #fff; }
.btn-outline { background: transparent; border-color: var(--teal); color: var(--teal-dark); }
.btn-ghost { background: var(--teal-soft); color: var(--teal-dark); }
.btn-light { background: #fff; color: var(--teal-dark); }
.btn-block { width: 100%; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

.icon { flex-shrink: 0; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
  overflow: visible;
}
.site-header.is-compact { box-shadow: 0 8px 24px rgba(20,40,40,.06); }
.header-inner {
  width: min(1280px, calc(100% - 24px));
  margin: 0 auto;
  min-height: 118px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: visible;
}
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  overflow: visible;
}
img.brand-logo {
  display: block;
  height: 98px !important;
  width: auto !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain;
}
.site-header.is-compact .header-inner { min-height: 108px; padding: 8px 0; }
.site-header.is-compact img.brand-logo { height: 88px !important; }
.desktop-nav {
  margin-left: auto;
  display: none;
  min-width: 0;
}
.desktop-nav ul {
  display: flex;
  gap: 2px;
  list-style: none;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
}
.desktop-nav a {
  font-size: .72rem;
  font-weight: 600;
  color: var(--ink);
  padding: 6px 8px;
  border-radius: 999px;
  white-space: nowrap;
}
.desktop-nav a.is-active, .desktop-nav a:hover { background: var(--teal-soft); color: var(--teal-dark); }
.header-cta {
  display: none;
  padding: 10px 18px;
  font-size: .76rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-toggle { margin-left: auto; flex-shrink: 0; }
.menu-toggle, .menu-close {
  border: 0; background: var(--teal-soft); width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; color: var(--teal-dark);
}
@media (min-width: 1200px) {
  .desktop-nav { display: block; }
  .header-cta { display: inline-flex; }
  .menu-toggle { display: none; margin-left: 0; }
}
@media (max-width: 1199px) {
  .header-inner {
    min-height: 126px;
    padding: 12px 0;
  }
  img.brand-logo { height: 104px !important; }
  .site-header.is-compact .header-inner {
    min-height: 116px;
    padding: 10px 0;
  }
  .site-header.is-compact img.brand-logo { height: 96px !important; }
}
@media (max-width: 480px) {
  .header-inner {
    gap: 10px;
    min-height: 132px;
    padding: 12px 0;
  }
  img.brand-logo { height: 110px !important; }
  .site-header.is-compact .header-inner {
    min-height: 120px;
    padding: 10px 0;
  }
  .site-header.is-compact img.brand-logo { height: 100px !important; }
}

.mobile-menu {
  position: fixed; inset: 0; background: rgba(16,32,32,.42); z-index: 80;
}
.mobile-menu-panel {
  position: absolute; right: 0; top: 0; height: 100%; width: min(360px, 100%);
  background: #fff; padding: 22px; overflow: auto;
}
.mobile-menu-top { display: flex; justify-content: space-between; align-items: center; }
.mobile-menu nav ul { list-style: none; margin: 18px 0; }
.mobile-menu nav a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); font-weight: 600; color: var(--ink); }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 8px; }

.hero {
  position: relative;
  background:
    radial-gradient(circle at 12% 18%, rgba(15,110,107,.12), transparent 28%),
    radial-gradient(circle at 88% 0%, rgba(176,137,77,.12), transparent 26%),
    linear-gradient(180deg, #f4faf9 0%, #ffffff 100%);
  overflow: hidden;
}
.hero-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 36px;
  padding: 36px 0 56px;
  align-items: center;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; min-height: 640px; }
}
.hero h1,
.hero-title {
  margin-bottom: 10px;
}
.hero-title-wrap {
  position: relative;
  margin-bottom: 22px;
}
.hero-title {
  max-width: 12em;
}
.hero-title .lt-word {
  display: inline-block;
  position: relative;
  margin-right: .28em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(28, 43, 51, .18);
  overflow: hidden;
  vertical-align: top;
}
.hero-title .lt-word::after {
  content: attr(data-word);
  position: absolute;
  inset: 0;
  color: var(--ink);
  -webkit-text-stroke: 0;
  clip-path: inset(0 100% 0 0);
  white-space: nowrap;
}
.hero-title.is-drawing .lt-word::after {
  animation: textDraw .55s cubic-bezier(.22, .8, .28, 1) forwards;
  animation-delay: calc(var(--i) * 0.16s + 0.2s);
}
.hero-title.is-drawn .lt-word {
  color: var(--ink);
  -webkit-text-stroke: 0;
}
.hero-title.is-drawn .lt-word::after {
  clip-path: none;
  animation: none;
}
.hero-lifeline {
  display: block;
  width: min(100%, 520px);
  height: 36px;
  margin-top: 6px;
  overflow: visible;
}
.hero-lifeline-track,
.hero-lifeline-pulse {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-lifeline-track {
  stroke: rgba(15, 110, 107, .14);
  stroke-width: 2.5;
}
.hero-lifeline-pulse {
  stroke: var(--teal);
  stroke-width: 2.75;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  filter: drop-shadow(0 0 4px rgba(15, 110, 107, .35));
}
.hero-title-wrap.is-drawing .hero-lifeline-pulse {
  animation: lifelineDraw 2.4s ease-in-out .2s forwards, lifelinePulse 2.8s ease-in-out 2.7s infinite;
}
@keyframes textDraw {
  0% {
    clip-path: inset(0 100% 0 0);
    color: var(--teal);
  }
  70% {
    color: var(--teal-dark);
  }
  100% {
    clip-path: inset(0 0 0 0);
    color: var(--ink);
  }
}
@keyframes lifelineDraw {
  to { stroke-dashoffset: 0; }
}
@keyframes lifelinePulse {
  0%, 100% { opacity: .55; }
  40% { opacity: 1; }
  70% { opacity: .75; }
}
.specialty-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 24px; list-style: none; }
.specialty-pills li {
  background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; font-size: .85rem; font-weight: 600;
}
.about-role {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--teal-dark);
  margin: 0 0 14px;
  line-height: 1.35;
}
.about-creds { margin-bottom: 0; }
.about-creds li { font-size: .78rem; padding: 6px 12px; }
.about-intro { text-align: center; max-width: 780px; margin: 0 auto 44px; }
.about-intro .specialty-pills { justify-content: center; margin-bottom: 0; }
.about-top {
  display: grid; gap: 36px; align-items: start;
}
@media (min-width: 860px) {
  .about-top { grid-template-columns: minmax(420px, 0.95fr) 1.05fr; gap: 56px; }
}
@media (min-width: 860px) {
  .about-photo-col { position: sticky; top: 96px; }
}
.about-photo { max-height: none; }
.about-photo img {
  width: 100%;
  max-height: none;
  aspect-ratio: 3/4;
  height: auto;
  object-fit: cover;
  object-position: center top;
}
.about-lead p { color: var(--muted); font-size: 1.02rem; margin-bottom: 1.05em; }
.about-lead .qual-list { margin: 8px 0 0; }
.about-below {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  width: 100%;
}
.about-focus-label {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--teal-dark);
  margin: 0 0 18px;
  letter-spacing: .01em;
}
.about-focus {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
}
@media (min-width: 640px) {
  .about-focus { grid-template-columns: repeat(2, 1fr); gap: 12px 24px; }
}
@media (min-width: 980px) {
  .about-focus { grid-template-columns: repeat(5, 1fr); gap: 14px; }
}
.about-focus li {
  position: relative;
  padding: 16px 16px 16px 30px;
  color: var(--ink);
  font-size: .95rem;
  line-height: 1.45;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.about-focus li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 1.35em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}
.about-below-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: none;
}
.hero-note { font-size: .95rem; color: var(--muted); margin-top: 16px; }

.hero-visual { position: relative; }
@media (max-width: 640px) {
  .float-badge.one { left: 8px; }
  .float-badge.two { right: 8px; bottom: 18%; top: auto; }
  .float-badge.three { left: 10px; right: 10px; width: auto; }
}
.hero-frame {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  background: #dcecea;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 15%; }
.float-badge {
  position: absolute;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 10px 14px;
  font-size: .82rem; font-weight: 700;
  animation: float 6s ease-in-out infinite;
}
.float-badge.one { left: -8px; top: 14%; }
.float-badge.two { right: -6px; bottom: 22%; top: auto; animation-delay: -2s; }
.float-badge.three { left: 8%; bottom: 8%; animation-delay: -4s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.blob {
  position: absolute; border-radius: 50%; filter: blur(18px); opacity: .45; z-index: -1;
}
.blob-a { width: 180px; height: 180px; background: #9ad4cf; right: -30px; top: -20px; }
.blob-b { width: 140px; height: 140px; background: #e8d4a8; left: -20px; bottom: 40px; }

.trust-strip { background: var(--teal-dark); color: #fff; }
.trust-track {
  display: flex; gap: 14px; overflow-x: auto; padding: 22px 0;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.trust-item {
  min-width: 220px; scroll-snap-align: start;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px; padding: 14px 16px; font-weight: 600;
}
@media (min-width: 900px) {
  .trust-track { display: grid; grid-template-columns: repeat(5, 1fr); overflow: visible; }
  .trust-item { min-width: 0; }
}

.about-grid, .split { display: grid; gap: 32px; align-items: center; }
@media (min-width: 900px) {
  .about-grid, .split { grid-template-columns: 1fr 1fr; }
}
.media-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.media-card img { width: 100%; height: 100%; object-fit: cover; max-height: 560px; transition: transform .6s ease; }
.media-card.about-photo img { max-height: none; height: auto; }
.media-card:hover img { transform: scale(1.04); }
.qual-list { list-style: none; display: grid; gap: 10px; margin: 18px 0 24px; }
.qual-list li {
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--bg); border-radius: 14px; padding: 12px 14px;
}

.card-grid { display: grid; gap: 18px; }
@media (min-width: 700px) { .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 22px;
  box-shadow: 0 10px 30px rgba(20,50,50,.04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #b7d8d5; }
.icon-wrap {
  width: 46px; height: 46px; border-radius: 14px; background: var(--teal-soft); color: var(--teal-dark);
  display: grid; place-items: center; margin-bottom: 14px;
}
.learn { font-weight: 700; color: var(--teal); display: inline-flex; align-items: center; gap: 6px; }

.service-list { display: grid; gap: 12px; }
@media (min-width: 720px) { .service-list { grid-template-columns: 1fr 1fr; } }
.service-item {
  display: flex; gap: 12px; align-items: flex-start; padding: 16px; border-radius: 16px;
  background: #fff; border: 1px solid var(--line);
}
.dark-section {
  background: linear-gradient(160deg, #0c3f3d, #145c59 45%, #1a6f6b);
  color: #eef7f6;
}
.dark-section h2, .dark-section h3 { color: #fff; }
.dark-section .muted { color: #c7ddd9; }
.checklist { list-style: none; display: grid; gap: 10px; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; }

.timeline { display: grid; gap: 16px; }
@media (min-width: 900px) {
  .timeline { grid-template-columns: repeat(5, 1fr); }
}
.timeline-item {
  position: relative; background: #fff; border-radius: 20px; padding: 20px; border: 1px solid var(--line);
}
.step-no { font-family: var(--serif); font-size: 1.6rem; color: var(--gold); }

.journey { display: grid; gap: 18px; }
@media (min-width: 800px) { .journey { grid-template-columns: repeat(4, 1fr); position: relative; } }
.journey-step {
  background: #fff; border-radius: 20px; padding: 22px; text-align: left; border: 1px solid var(--line);
  position: relative;
}
.journey-step::after {
  content: ""; position: absolute; right: -12px; top: 34px; width: 24px; height: 2px; background: #b7d8d5;
}
.journey-step:last-child::after { display: none; }
@media (max-width: 799px) {
  .journey-step::after { display: none; }
}

.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button {
  width: 100%; background: none; border: 0; text-align: left; padding: 18px 0;
  display: flex; justify-content: space-between; gap: 16px; align-items: center;
  font: inherit; font-weight: 700; cursor: pointer; color: var(--ink);
}
.faq-icon {
  width: 32px; height: 32px; border-radius: 50%; background: var(--teal-soft); color: var(--teal-dark);
  display: grid; place-items: center; flex-shrink: 0; transition: transform .25s ease;
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); background: var(--teal); color: #fff; }
.faq-panel { display: none; padding: 0 0 18px; color: var(--muted); }
.faq-item.is-open .faq-panel { display: block; }

.cta-band {
  background: linear-gradient(135deg, var(--teal), #1d8a86);
  color: #fff; border-radius: 28px; padding: 42px 28px; text-align: center;
}
.cta-band h2 { color: #fff; }

.map-wrap {
  border-radius: 24px; overflow: hidden; min-height: 320px; border: 1px solid var(--line);
}
.map-wrap iframe { width: 100%; height: 360px; border: 0; }

.form {
  display: grid; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 24px;
}
label { font-weight: 600; font-size: .9rem; display: grid; gap: 6px; }
input, select, textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; font: inherit;
  background: #fff;
}
textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; gap: 14px; }
@media (min-width: 700px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-status { padding: 12px 14px; border-radius: 12px; }
.form-status.ok { background: #e8f6ee; color: #145c38; }
.form-status.err { background: #fdecea; color: #8a1f16; }
.honeypot { position: absolute; left: -9999px; }

.site-footer { background: #0b2f2e; color: #d7e8e6; padding: 56px 0 120px; }
.footer-grid { display: grid; gap: 28px; }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.4fr .8fr .9fr 1fr; } }
.footer-logo-link { display: inline-block; margin-bottom: 14px; }
.footer-logo { height: 96px; width: auto; display: block; max-width: none; }
.footer-brand { font-family: var(--serif); font-size: 1.8rem; color: #fff; margin-bottom: 6px; }
.footer-tag { color: #f0d9a6; }
.site-footer h2 { color: #fff; font-size: 1.15rem; }
.footer-links, .footer-contact { list-style: none; display: grid; gap: 8px; }
.site-footer a { color: #d7e8e6; }
.footer-contact li { display: flex; gap: 8px; align-items: flex-start; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 32px; padding-top: 18px; }
.footer-bottom-inner { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; }
.footer-bottom ul { list-style: none; display: flex; flex-wrap: wrap; gap: 16px; }
.designed-by { margin: 0; font-size: .9rem; color: rgba(255,255,255,.72); }
.designed-by a { color: #fff; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.designed-by a:hover { color: #c7ebe8; }
.disclaimer-line { font-size: .82rem; color: #a9c4c1; }

.floating-actions {
  position: fixed; right: 16px; bottom: 24px; z-index: 40; display: none; flex-direction: column; gap: 10px;
}
.float-btn {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; color: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.18); position: relative;
}
.float-btn span {
  position: absolute; right: 62px; background: #123; color: #fff; padding: 6px 10px; border-radius: 8px;
  font-size: .75rem; white-space: nowrap; opacity: 0; pointer-events: none;
}
.float-btn:hover span { opacity: 1; }
.float-call { background: var(--teal); }
.float-wa { background: #128c7e; }
.float-book { background: var(--gold); }
.mobile-cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  display: grid; grid-template-columns: 1fr 1fr 1fr; background: #fff;
  border-top: 1px solid var(--line); padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
}
.mobile-cta-bar a {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 6px; font-size: .82rem; font-weight: 700; color: var(--teal-dark);
}
.mobile-cta-bar .is-primary { background: var(--teal); color: #fff; border-radius: 12px; }
@media (min-width: 900px) {
  .floating-actions { display: flex; }
  .mobile-cta-bar { display: none; }
  .site-footer { padding-bottom: 40px; }
}
@media (max-width: 899px) {
  body { padding-bottom: 72px; }
  .hide-sm { display: none !important; }
}

.page-hero { padding: 40px 0 8px; background: var(--bg); }
.legal-copy { max-width: 860px; }
.legal-block h3 { margin-top: 1.2em; }

.desktop-nav a.is-active { background: var(--teal-soft); color: var(--teal-dark); }
.breadcrumbs { font-size: .9rem; color: var(--muted); margin-bottom: 10px; }
.breadcrumbs a { color: var(--teal-dark); }

.reveal { opacity: 0; transform: translateY(18px); animation: rise .7s ease forwards; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
@keyframes rise { to { opacity: 1; transform: none; } }

.js-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.js-reveal.is-in { opacity: 1; transform: none; }

.testimonial { background: #fff; border-radius: 20px; padding: 22px; border: 1px solid var(--line); }
.testimonial p { font-style: italic; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .js-reveal, .reveal { opacity: 1; transform: none; }
  .hero-title-line { opacity: 1; transform: none; }
  .hero-title .lt-word,
  .hero-title.is-drawn .lt-word { color: var(--ink); -webkit-text-stroke: 0; }
  .hero-title .lt-word::after { clip-path: none; animation: none; content: none; }
  .hero-lifeline-pulse { stroke-dashoffset: 0; opacity: 1; filter: none; }
}

@media (max-width: 360px) {
  .float-badge { font-size: .72rem; padding: 8px 10px; }
}
