/* Seoul Medical Concierge — revision 2026-05-26
   Palette: clay-on-bone. Sage retired.
   Display type: Pretendard (Korean-modern sans). Body: Inter. */

:root {
  /* Surfaces — warm, paper-toned */
  --bone:       #f4f0ea;
  --bone-deep:  #ede5d6;
  --parchment:  #ebe5da;
  --paper:      #faf7f1;
  --white:      #ffffff;

  /* Text */
  --charcoal:   #1f1b16;
  --ink:        #2a241d;
  --ink-soft:   #5a5247;
  --ink-muted:  #8c8478;
  --ink-faint:  #b6ad9f;

  /* Lines */
  --line:       #ddd5c5;
  --line-soft:  #e8e1d0;

  /* Accent — clay/terracotta, the single accent */
  --clay:       #b8704e;
  --clay-deep:  #8a4f33;
  --clay-soft:  #d99c7a;
  --clay-tint:  #f0dccd;

  /* Tertiary sage — used sparingly, never as primary accent */
  --sage-faint: #c2c9b9;

  /* Type */
  --font-sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-display: "Pretendard", "Pretendard Variable", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", "Segoe UI", sans-serif;

  /* Layout */
  --max-w:      1200px;
  --gutter:     clamp(20px, 5vw, 56px);
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  /* Shadow */
  --shadow-md:  0 8px 28px rgba(31, 27, 22, 0.07);
}

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bone);
  font-feature-settings: "ss01", "cv11";
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

p { margin: 0; color: var(--ink-soft); }

/* ---------- Display type ---------- */

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  line-height: 1.06;
}
h1 { font-weight: 800; }

.display { font-family: var(--font-display); }
.sans    { font-family: var(--font-sans); }

/* ---------- Layout primitives ---------- */

.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }

section { padding: clamp(64px, 9vw, 120px) 0; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay-deep);
  font-weight: 500;
}

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head h2 {
  font-size: clamp(34px, 5vw, 56px);
  margin-top: 18px;
}
.section-head p {
  margin-top: 18px;
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 60ch;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--charcoal);
  color: var(--paper);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  white-space: nowrap;
  text-align: center;
}
.btn:hover { background: var(--clay-deep); transform: translateY(-1px); }

.btn-clay { background: var(--clay); color: #fff8f0; }
.btn-clay:hover { background: var(--clay-deep); }

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--line);
}
.btn-ghost:hover { background: var(--paper); border-color: var(--charcoal); color: var(--charcoal); }

.btn-ghost-light {
  background: transparent;
  color: var(--bone);
  border-color: rgba(244,240,234,0.6);
}
.btn-ghost-light:hover { background: rgba(244,240,234,0.15); border-color: var(--bone); color: var(--bone); transform: translateY(-1px); }

.btn-small { padding: 10px 18px; font-size: 13px; }
.btn-block { width: 100%; justify-content: center; }

/* WhatsApp badge — used inline in body copy */
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--clay-deep);
  border-bottom: 1px solid var(--clay-soft);
  padding-bottom: 1px;
}
.whatsapp-link:hover { color: var(--clay); border-color: var(--clay); }

/* ---------- Navigation ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(244, 240, 234, 0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

/* Transparent nav variant — sits over the hero photo */
.nav.is-over-hero {
  background: transparent;
  border-bottom-color: transparent;
}
.nav.is-over-hero .brand-name,
.nav.is-over-hero .nav-links a,
.nav.is-over-hero .nav-cta { color: var(--bone); }
.nav.is-over-hero .nav-cta { border-color: rgba(244,240,234,0.55); }
.nav.is-over-hero .nav-cta:hover { background: rgba(244,240,234,0.15); border-color: var(--bone); }
.nav.is-over-hero .nav-toggle span { background: var(--bone); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  color: var(--charcoal);
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  transition: color 0.15s ease;
}
.nav-links a:hover,
.nav-links a.is-active { color: var(--charcoal); }

.nav-cta {
  display: none;
  font-family: var(--font-sans);
  font-size: 13px;
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--charcoal);
  white-space: nowrap;
  align-items: center;
  gap: 6px;
}
.nav-cta:hover { background: var(--paper); border-color: var(--charcoal); }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: 0;
  padding: 8px;
  margin-right: -8px;
}
.nav-toggle span { width: 22px; height: 1.5px; background: var(--charcoal); }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line-soft);
  padding: 16px var(--gutter) 28px;
  background: var(--bone);
}
.mobile-menu a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--charcoal);
  font-size: 16px;
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu .mobile-wa {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: var(--clay);
  color: #fff8f0 !important;
  border-radius: 999px;
  font-size: 14px;
  border-bottom: 0 !important;
}

.nav.is-open .mobile-menu { display: block; }
.nav.is-over-hero.is-open { background: var(--bone); }
.nav.is-over-hero.is-open .brand-name,
.nav.is-over-hero.is-open .nav-toggle span { color: var(--charcoal); }
.nav.is-over-hero.is-open .nav-toggle span { background: var(--charcoal); }

@media (min-width: 820px) {
  .nav-links { display: flex; }
  .nav-cta   { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* ---------- Hero (home) ---------- */

.hero-photo {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 80px);
  margin-top: -70px;   /* slide under sticky nav */
  padding-top: calc(70px + clamp(40px, 6vw, 80px));
  color: var(--bone);
  background-color: #2a1f15;
  background-image:
    linear-gradient(180deg, rgba(20,12,6,0.18) 0%, rgba(20,12,6,0.55) 55%, rgba(20,12,6,0.88) 100%),
    linear-gradient(90deg, rgba(20,12,6,0.45) 0%, rgba(20,12,6,0.10) 55%, rgba(20,12,6,0) 100%),
    url("https://images.unsplash.com/photo-1666214280352-db292c05fd80?w=2400&q=85&auto=format&fit=crop");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-inner { position: relative; z-index: 2; max-width: 1040px; }

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--clay-soft);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--clay-soft);
}

.hero-photo h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 7.5vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--bone);
  max-width: 18ch;
}
.hero-photo h1 .accent {
  color: var(--clay-soft);
  font-weight: 800;
}

.hero-sub {
  margin-top: 28px;
  font-family: var(--font-sans);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.5;
  max-width: 56ch;
  color: rgba(244,240,234,0.86);
}

.hero-ctas {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-ctas .btn-clay {
  background: var(--clay);
  color: #fff8f0;
  font-size: 15px;
  padding: 16px 26px;
}
.hero-ctas .btn-clay:hover { background: var(--clay-deep); }

.hero-footnote {
  position: absolute;
  bottom: 16px;
  right: var(--gutter);
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244,240,234,0.45);
  z-index: 2;
}

.hero-quiz-link {
  margin-top: 22px;
  font-size: 14px;
}
.hero-quiz-link a {
  color: rgba(244,240,234,0.78);
  border-bottom: 1px solid rgba(244,240,234,0.35);
  padding-bottom: 1px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.hero-quiz-link a:hover { color: var(--bone); border-color: var(--bone); }

.inquiry-quiz-link {
  margin-top: 16px;
  font-size: 14px;
}
.inquiry-quiz-link a {
  color: var(--clay-deep);
  border-bottom: 1px solid var(--clay-soft);
  padding-bottom: 1px;
  font-weight: 500;
}
.inquiry-quiz-link a:hover { color: var(--clay); border-color: var(--clay); }

/* ---------- Quantified trust strip ---------- */

.trust-numbers {
  background: var(--parchment);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
}
.trust-numbers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 24px;
  text-align: center;
}
.tnum-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  position: relative;
}
.tnum-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  color: var(--charcoal);
  letter-spacing: -0.03em;
}
.tnum-num .unit {
  font-size: 0.5em;
  font-weight: 600;
  color: var(--clay-deep);
  margin-left: 2px;
}
.tnum-label {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  text-transform: uppercase;
  max-width: 18ch;
  line-height: 1.35;
}

@media (min-width: 720px) {
  .trust-numbers-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
  }
  .tnum-item + .tnum-item::before {
    content: "";
    position: absolute;
    left: 0; top: 14%; bottom: 14%;
    width: 1px;
    background: var(--line);
  }
}

/* ---------- Bundle (Day 1 / Day 3 / Day 6 timeline) ---------- */

.bundle { background: var(--bone); }
.bundle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.bundle-copy h2 {
  font-size: clamp(34px, 5vw, 56px);
}
.bundle-copy p {
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.6;
  max-width: 56ch;
}
.bundle-copy p + p { margin-top: 14px; }

.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.tl-block {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  align-items: start;
}
.tl-day {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  color: var(--clay-deep);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.tl-day span {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 6px;
}
.tl-body h3 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 6px;
}
.tl-body p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}

@media (min-width: 920px) {
  .bundle-grid { grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 5vw, 80px); }
}

/* ---------- Services overview ---------- */

.services-overview { background: var(--parchment); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.service-pillar {
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: clamp(32px, 4vw, 48px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.service-pillar:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.service-pillar .pillar-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--clay-deep);
  letter-spacing: -0.02em;
  line-height: 1;
}
.service-pillar h3 {
  font-size: clamp(26px, 3vw, 32px);
  margin-top: 12px;
  line-height: 1.15;
}
.service-pillar p {
  margin-top: 16px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  flex: 1;
}
.pillar-list {
  margin-top: 22px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pillar-list li {
  font-size: 14px;
  color: var(--ink);
  padding: 9px 0;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.pillar-list li span {
  color: var(--clay-deep);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}
.pillar-link {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 4px;
  align-self: flex-start;
}
.pillar-link:hover { color: var(--clay-deep); border-color: var(--clay-deep); }

@media (min-width: 760px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
}

/* ---------- Why-concierge ---------- */

.why-concierge { background: var(--bone); }
.why-concierge h2 { font-size: clamp(34px, 5vw, 56px); }

.why-lead {
  margin-top: 22px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 64ch;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}
.why-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.why-card .num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--clay-deep);
  letter-spacing: -0.02em;
  line-height: 1;
}
.why-card h3 { font-size: 20px; margin: 10px 0 12px; line-height: 1.2; }
.why-card p { font-size: 15px; color: var(--ink-soft); line-height: 1.55; }

@media (min-width: 760px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}

/* ---------- Featured clinics ---------- */

.featured { background: var(--parchment); }

.clinic-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.clinic-card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 30px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 280px;
  overflow: hidden;
}
.clinic-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.clinic-card.clay   { background: var(--clay-tint); border-color: #e5c4ad; }
.clinic-card.bone   { background: var(--bone-deep); border-color: var(--line); }
.clinic-card.paper  { background: var(--paper); border-color: var(--line); }

.clinic-card .neighborhood {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay-deep);
}
.clinic-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--charcoal);
}
.clinic-card .credential {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  margin-top: -4px;
}
.clinic-card .positioning {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  flex: 1;
}

.tag-row { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  background: rgba(31, 27, 22, 0.06);
  color: var(--charcoal);
  border-radius: 999px;
  font-weight: 500;
}

@media (min-width: 760px) {
  .clinic-cards { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

/* ---------- How it works ---------- */

.howitworks { background: var(--bone); }

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  counter-reset: stepc;
}
.step {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  counter-increment: stepc;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step::before {
  content: counter(stepc, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--clay-deep);
  line-height: 1;
}
.step h3 { font-size: 22px; margin-bottom: 6px; line-height: 1.18; }
.step p { font-size: 15px; color: var(--ink-soft); max-width: 56ch; }

@media (min-width: 760px) {
  .steps { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .step {
    border-top: 1px solid var(--line);
    border-bottom: none !important;
    display: block;
    padding: 28px 4px 0;
  }
  .step::before { display: block; margin-bottom: 18px; }
}

/* ---------- Closing CTA ---------- */

.closing-cta {
  background: var(--charcoal);
  color: var(--bone);
}
.closing-cta * { color: inherit; }

.closing-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}
.closing-cta h2 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  color: var(--bone);
  max-width: 22ch;
}
.closing-cta p {
  font-size: 17px;
  color: rgba(244,240,234,0.78);
  max-width: 54ch;
}
.closing-cta .btn {
  background: var(--clay);
  color: #fff8f0;
  font-size: 15px;
  padding: 16px 26px;
}
.closing-cta .btn:hover { background: var(--clay-deep); transform: translateY(-1px); }

.closing-cta .small-or {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  color: rgba(244,240,234,0.6);
  margin-left: 12px;
}
.closing-cta .form-link {
  color: var(--clay-soft);
  border-bottom: 1px solid rgba(217,156,122,0.45);
  padding-bottom: 1px;
  font-size: 14px;
}
.closing-cta .form-link:hover { color: var(--bone); border-color: var(--bone); }

@media (min-width: 760px) {
  .closing-cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
  }
}

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

.footer {
  background: var(--bone-deep);
  padding: 64px 0 32px;
  border-top: 1px solid var(--line-soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
.footer-brand .brand-name { color: var(--charcoal); font-size: 22px; }
.footer-brand .about-line {
  margin-top: 18px;
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 44ch;
  line-height: 1.55;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay-deep);
  margin-bottom: 14px;
  font-weight: 500;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--ink-soft);
  padding: 4px 0;
}
.footer-col a:hover { color: var(--charcoal); }

.footer-fineprint {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 12px;
  color: var(--ink-muted);
  line-height: 1.55;
}

@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; }
  .footer-fineprint { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ---------- Page header (interior pages) ---------- */

.page-head {
  background: var(--bone);
  padding: clamp(72px, 9vw, 120px) 0 clamp(36px, 5vw, 56px);
  border-bottom: 1px solid var(--line-soft);
}
.page-head .eyebrow { display: inline-block; }
.page-head h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6.5vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-top: 18px;
  max-width: 18ch;
  color: var(--charcoal);
}
.page-head .lede {
  margin-top: 22px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--ink);
  max-width: 60ch;
}

/* ---------- Services page ---------- */

.services-page { background: var(--bone); }

.service-group {
  padding: clamp(56px, 7vw, 96px) 0;
  border-top: 1px solid var(--line);
}
.service-group:first-of-type { border-top: 0; }

.group-title {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay-deep);
  margin-bottom: 32px;
  font-weight: 500;
}

.service-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.service-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-item-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 30px);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--charcoal);
}
.service-price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--clay-deep);
  align-self: flex-start;
}

.service-desc {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.service-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  font-size: 13px;
}
.service-meta dt {
  color: var(--ink-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 10px;
}
.service-meta dd { margin: 0 0 8px; color: var(--ink); font-size: 14px; }

.price-fineprint { font-size: 12px; color: var(--ink-muted); }

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.service-actions .actions-right { display: flex; flex-wrap: wrap; gap: 10px; }

@media (min-width: 760px) {
  .service-list { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .service-item-head {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
  }
  .service-meta { flex-direction: row; gap: 28px; }
}

/* ---------- Clinics page ---------- */

.clinics-page { background: var(--bone); padding-bottom: 96px; }

.filters {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.filter-field { display: flex; flex-direction: column; gap: 6px; }
.filter-field label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.filter-field select,
.filter-field input {
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--ink);
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--clay-deep) 50%),
    linear-gradient(135deg, var(--clay-deep) 50%, transparent 50%);
  background-position: calc(100% - 18px) center, calc(100% - 13px) center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
.filter-field input { background-image: none; padding-right: 14px; }
.filter-field select:focus,
.filter-field input:focus { outline: 2px solid var(--clay); outline-offset: 1px; }

.filter-result-count { font-size: 13px; color: var(--ink-muted); margin-bottom: 20px; }

@media (min-width: 760px) {
  .filters { grid-template-columns: repeat(3, 1fr); gap: 22px; padding: 26px; }
}

.clinic-list { display: grid; grid-template-columns: 1fr; gap: 16px; }

.clinic-row {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.clinic-row.is-open { border-color: var(--clay); }

.clinic-row-head {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  text-align: left;
}
.clinic-row-head:hover { background: var(--bone); }

.clinic-row-title { display: flex; flex-direction: column; gap: 8px; }
.clinic-row-title .clinic-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--charcoal);
  line-height: 1.2;
}
.clinic-row-title .clinic-meta {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay-deep);
}
.clinic-row-title .clinic-positioning {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.clinic-row-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }

.chev {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  font-size: 14px;
  transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}
.clinic-row.is-open .chev {
  transform: rotate(180deg);
  background: var(--clay);
  border-color: var(--clay);
  color: #fff8f0;
}

.clinic-row-detail { display: none; padding: 0 24px 28px; border-top: 1px solid var(--line-soft); }
.clinic-row.is-open .clinic-row-detail { display: block; }

.detail-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.detail-block { display: flex; flex-direction: column; gap: 4px; }
.detail-block dt {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.detail-block dd { margin: 0; font-size: 14px; color: var(--ink); line-height: 1.55; }
.detail-block dd a { color: var(--clay-deep); border-bottom: 1px solid var(--clay-soft); }

.detail-notes {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 72ch;
}

@media (min-width: 720px) {
  .detail-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 40px; }
  .clinic-row-head { padding: 26px 28px; }
  .clinic-row-detail { padding: 0 28px 30px; }
}

.empty-state {
  padding: 56px 24px;
  text-align: center;
  font-size: 15px;
  color: var(--ink-muted);
  background: var(--paper);
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
}
.empty-state code {
  background: var(--bone-deep);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 13px;
  color: var(--charcoal);
}

/* ---------- Inquiry page ---------- */

.inquiry-page { background: var(--bone); padding-bottom: 96px; }

.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.inquiry-aside {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 14px;
  color: var(--ink-soft);
}
.inquiry-aside h3 {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay-deep);
  font-weight: 500;
}
.inquiry-aside ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.inquiry-aside li {
  display: flex; gap: 10px;
  align-items: flex-start;
  font-size: 14px; line-height: 1.55;
}
.inquiry-aside li::before { content: "—"; color: var(--clay); font-weight: 500; }

.wa-pitch {
  background: var(--clay-tint);
  border: 1px solid #e5c4ad;
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wa-pitch h4 {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--clay-deep);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.wa-pitch p { font-size: 14px; color: var(--ink); line-height: 1.5; }
.wa-pitch .btn { font-size: 14px; align-self: flex-start; }

.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 40px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.field label .req { color: var(--clay-deep); margin-left: 4px; }

.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.field select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--clay-deep) 50%),
    linear-gradient(135deg, var(--clay-deep) 50%, transparent 50%);
  background-position: calc(100% - 18px) center, calc(100% - 13px) center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.5; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--clay);
  background: var(--paper);
}

.field .error {
  display: none;
  font-size: 12px;
  color: #a04646;
  margin-top: 4px;
  letter-spacing: 0.02em;
  text-transform: none;
}
.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea { border-color: #c47a7a; }
.field.is-invalid .error { display: block; }

.form-foot {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.form-fineprint {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.55;
  max-width: 56ch;
}

.confirmation {
  display: none;
  border: 1px solid var(--clay);
  background: var(--clay-tint);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 24px;
  color: var(--ink);
}
.confirmation.is-visible { display: block; }
.confirmation h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.015em;
  color: var(--clay-deep);
  margin-bottom: 8px;
}
.confirmation p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }

@media (min-width: 960px) {
  .inquiry-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 56px;
  }
  .form-row.two-up {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

/* ---------- Factory-clinics page ---------- */

.factory-page { background: var(--bone); }

.factory-intro {
  padding-top: 0;
  padding-bottom: clamp(48px, 6vw, 88px);
  border-bottom: 1px solid var(--line);
}
.factory-intro .pull {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 62ch;
  margin-top: 12px;
}
.factory-intro .pull strong {
  font-weight: 700;
  color: var(--charcoal);
}

.criteria-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  counter-reset: critnum;
}
.criterion {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 30px;
  counter-increment: critnum;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: start;
}
.criterion::before {
  content: counter(critnum, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--clay-deep);
  line-height: 1;
}
.criterion h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
  line-height: 1.2;
}
.criterion p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
.criterion .why {
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 8px;
  font-family: var(--font-sans);
}

.factory-close {
  background: var(--charcoal);
  color: var(--bone);
  padding: clamp(56px, 7vw, 96px) 0;
}
.factory-close * { color: inherit; }
.factory-close h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 30ch;
  color: var(--bone);
}
.factory-close p {
  font-size: 17px;
  color: rgba(244,240,234,0.78);
  margin-top: 20px;
  max-width: 56ch;
}
.factory-close .btn {
  margin-top: 32px;
  background: var(--clay);
  color: #fff8f0;
  padding: 16px 26px;
  font-size: 15px;
}
.factory-close .btn:hover { background: var(--clay-deep); }

/* ---------- Service tiers — home cards ---------- */

.tiers { background: var(--bone); }
.tiers .section-head h2 { font-size: clamp(34px, 5vw, 56px); }
.tiers .section-head p {
  margin-top: 18px;
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 64ch;
}

.tier-cards {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.tier-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.5vw, 40px);
  color: var(--charcoal);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
}
.tier-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--clay-soft);
}
.tier-card.is-featured {
  background: var(--clay-tint);
  border-color: #e5c4ad;
}

.tier-tag {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay-deep);
  font-weight: 500;
}

.tier-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--charcoal);
  margin-top: 10px;
}

.tier-tagline {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 500;
}

.tier-bestfor {
  margin-top: 18px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.tier-bestfor span {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
  margin-right: 6px;
}

.tier-inclusions {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.tier-inclusions li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  padding-left: 18px;
  position: relative;
}
.tier-inclusions li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 1px;
  background: var(--clay);
}

.tier-link {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 3px;
  align-self: flex-start;
  letter-spacing: -0.005em;
}
.tier-card:hover .tier-link { color: var(--clay-deep); border-color: var(--clay-deep); }

.tier-pricing-note {
  margin-top: 32px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 78ch;
}
.tier-pricing-note a {
  color: var(--clay-deep);
  border-bottom: 1px solid var(--clay-soft);
  padding-bottom: 1px;
  font-weight: 500;
}
.tier-pricing-note a:hover { color: var(--clay); border-color: var(--clay); }

@media (min-width: 820px) {
  .tier-cards { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}

/* ---------- Service tiers — services page sections ---------- */

.tier-jump {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  font-size: 13px;
  font-family: var(--font-sans);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.tier-jump a {
  color: var(--charcoal);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.tier-jump a:hover { color: var(--clay-deep); border-color: var(--clay-deep); }

.tier-section {
  background: var(--bone);
  padding: clamp(64px, 8vw, 112px) 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 90px;
}
.tier-section:nth-of-type(even) { background: var(--parchment); }

.tier-section-tag {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay-deep);
  font-weight: 500;
}

.tier-section-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--charcoal);
  margin-top: 12px;
}

.tier-section-tagline {
  margin-top: 18px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 56ch;
}

.tier-section-bestfor {
  margin-top: 28px;
  padding: 14px 18px;
  background: var(--paper);
  border-left: 3px solid var(--clay);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.55;
  max-width: 64ch;
}
.tier-section-bestfor span {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay-deep);
  font-weight: 600;
  margin-right: 8px;
}

.tier-section-body {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 64ch;
}

.tier-section-inclusions {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 24px;
  max-width: 80ch;
}
.tier-section-inclusions li {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  padding-left: 22px;
  position: relative;
}
.tier-section-inclusions li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 12px;
  height: 1px;
  background: var(--clay);
}

@media (min-width: 720px) {
  .tier-section-inclusions { grid-template-columns: 1fr 1fr; }
}

.tier-services {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.tier-services-head {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
  margin-bottom: 22px;
}

.tier-service-group + .tier-service-group { margin-top: 32px; }
.tier-service-group-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--clay-deep);
  margin-bottom: 14px;
}

.tier-service-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.tier-service-row {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
}

.tier-service-left { display: flex; flex-direction: column; gap: 6px; }
.tier-service-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  line-height: 1.25;
  margin: 0;
}
.tier-service-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  max-width: 72ch;
}

.tier-service-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.tier-service-duration {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  white-space: nowrap;
}
.tier-service-cta { white-space: nowrap; }

@media (min-width: 760px) {
  .tier-service-row {
    grid-template-columns: minmax(0, 1.6fr) auto;
    gap: 24px;
    align-items: center;
  }
  .tier-service-right { flex-direction: row; }
}

.tier-cta {
  margin-top: 44px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.tier-cta .btn { font-size: 15px; padding: 16px 26px; }
.tier-pricing-line {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 72ch;
}

/* ---------- Clinic detail CTA (rendered in JS) ---------- */

.clinic-detail-cta {
  margin-top: 22px;
  align-self: flex-start;
}

/* ---------- Utility ---------- */

.sr-only {
  position: absolute;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-clay { color: var(--clay-deep); }

/* WhatsApp icon — pure CSS */
.wa-icon {
  display: inline-block;
  width: 14px; height: 14px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M.057 24l1.687-6.163a11.867 11.867 0 01-1.587-5.946C.16 5.335 5.495 0 12.05 0a11.817 11.817 0 018.413 3.488 11.824 11.824 0 013.48 8.414c-.003 6.557-5.338 11.892-11.893 11.892a11.9 11.9 0 01-5.688-1.448L.057 24zm6.597-3.807c1.676.995 3.276 1.591 5.392 1.592 5.448 0 9.886-4.434 9.889-9.885.002-5.462-4.415-9.89-9.881-9.892-5.452 0-9.887 4.434-9.889 9.884a9.86 9.86 0 001.51 5.26l-.999 3.648 3.978-.607zm11.387-5.464c-.074-.124-.272-.198-.57-.347-.297-.149-1.758-.868-2.031-.967-.272-.099-.47-.149-.669.149-.198.297-.768.967-.941 1.165-.173.198-.347.223-.644.074-.297-.149-1.255-.462-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.297-.347.446-.521.151-.172.2-.296.3-.495.099-.198.05-.372-.025-.521-.075-.148-.669-1.611-.916-2.206-.242-.579-.487-.5-.669-.51l-.57-.01c-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.095 3.2 5.076 4.487.709.306 1.263.489 1.694.626.712.226 1.36.194 1.872.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413z'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M.057 24l1.687-6.163a11.867 11.867 0 01-1.587-5.946C.16 5.335 5.495 0 12.05 0a11.817 11.817 0 018.413 3.488 11.824 11.824 0 013.48 8.414c-.003 6.557-5.338 11.892-11.893 11.892a11.9 11.9 0 01-5.688-1.448L.057 24zm6.597-3.807c1.676.995 3.276 1.591 5.392 1.592 5.448 0 9.886-4.434 9.889-9.885.002-5.462-4.415-9.89-9.881-9.892-5.452 0-9.887 4.434-9.889 9.884a9.86 9.86 0 001.51 5.26l-.999 3.648 3.978-.607zm11.387-5.464c-.074-.124-.272-.198-.57-.347-.297-.149-1.758-.868-2.031-.967-.272-.099-.47-.149-.669.149-.198.297-.768.967-.941 1.165-.173.198-.347.223-.644.074-.297-.149-1.255-.462-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.297-.347.446-.521.151-.172.2-.296.3-.495.099-.198.05-.372-.025-.521-.075-.148-.669-1.611-.916-2.206-.242-.579-.487-.5-.669-.51l-.57-.01c-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.095 3.2 5.076 4.487.709.306 1.263.489 1.694.626.712.226 1.36.194 1.872.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413z'/></svg>") center / contain no-repeat;
  vertical-align: -2px;
}
