@import url("/fonts/fonts.css");

/* Yumi Mach — static clone (rough rebuild of the WordPress site, 2026-09-17) */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal: #069c9c;
  --teal-dark: #048080;
  --ink: #333;
  --grey: #f4f5f5;
  --line: #e3e5e5;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --script: "Great Vibes", "Brush Script MT", cursive;
  --sans: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ---------- header / nav ---------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 5;
}
.logo {
  font-family: var(--script);
  font-size: 2rem;
  color: #111;
  text-decoration: none;
  line-height: 1;
}
.nav { display: flex; align-items: center; gap: 18px; }
.nav a {
  color: #777;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  padding: 10px 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav a:hover { color: var(--teal); }
.nav a.cta {
  background: var(--teal);
  color: #fff;
  font-family: var(--serif);
  font-size: 0.875rem;
  padding: 10px 22px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  min-height: 40px;
}
.nav a.cta:hover { background: var(--teal-dark); }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.5rem;
  color: #111;
  padding: 8px 10px;
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
}

/* ---------- hero ---------- */
.hero {
  background: var(--teal);
  color: #fff;
  text-align: center;
  padding: 56px 20px 0;
}
.hero .kicker {
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-weight: 300;
  margin-bottom: 10px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 16vw, 7.5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 8vw, 3.6rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero img.hero-art {
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 10px 10px 0 0;
}

.breakthrough {
  background: var(--grey);
  text-align: center;
  padding: 46px 20px;
}
.breakthrough h3 {
  font-family: var(--serif);
  color: var(--teal);
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.breakthrough .sub {
  margin-top: 10px;
  font-family: var(--serif);
  font-size: 1.1rem;
}

/* ---------- sections ---------- */
section { padding: 54px 20px; }
.wrap { max-width: 940px; margin: 0 auto; }
.sec-title {
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 4.5vw, 2.1rem);
  color: #111;
  margin-bottom: 30px;
  letter-spacing: 0.02em;
}
.sec-title.teal { color: var(--teal); }

.quote-block {
  margin: 0 auto 26px;
  max-width: 720px;
  text-align: center;
  font-size: 1.05rem;
}
.quote-block p + p { margin-top: 16px; }
.quote-block .has-check {
  list-style: none;
  text-align: left;
  max-width: 640px;
  margin: 14px auto 0;
}
.quote-block .has-check li { padding: 6px 0 6px 30px; position: relative; }
.quote-block .has-check li::before {
  content: "✓";
  position: absolute; left: 0; top: 6px;
  color: var(--teal); font-weight: 700;
}
.big-line {
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 5vw, 2.4rem);
  margin: 6px 0;
}
.big-line.teal { color: var(--teal); }

.cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  max-width: 820px;
  margin: 0 auto;
}
.cols .col h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.cols ul { list-style: none; }
.cols li { padding: 5px 0 5px 28px; position: relative; }
.cols .good li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.cols .bad li::before { content: "✗"; position: absolute; left: 0; color: #b03a3a; font-weight: 700; }

.about-me { text-align: center; }
.about-me img.portrait {
  width: 220px;
  height: auto;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: block;
}
.about-me .mind-body-soul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  margin: 16px auto 10px;
}
.about-me .mind-body-soul span {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.about-me .mind-body-soul .m { color: var(--teal); }
.about-me .mind-body-soul .b { color: var(--teal-dark); }
.about-me .mind-body-soul .s { color: #333; }

.cta-row { text-align: center; margin-top: 16px; }
.btn {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  text-decoration: none;
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  padding: 14px 34px;
  border-radius: 4px;
  min-height: 48px;
  line-height: 1.2;
  border: 0;
  cursor: pointer;
}
.btn:hover { background: var(--teal-dark); }
.btn.outline {
  background: transparent;
  border: 2px solid var(--teal);
  color: var(--teal);
}

/* ---------- testimonials ---------- */
.tcard {
  background: var(--grey);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.tcard img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}
.tcard blockquote { font-size: 0.95rem; }
.tcard .who {
  margin-top: 8px;
  font-size: 0.875rem;
  color: var(--teal-dark);
  font-weight: 600;
}
.tcard .who small { display: block; color: #888; font-weight: 400; }

/* ---------- generic pages ---------- */
.page { padding: 46px 20px; }
.page h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 5.5vw, 2.6rem);
  text-align: center;
  margin-bottom: 12px;
}
.page .lede { text-align: center; max-width: 640px; margin: 0 auto 30px; }
.page h2 {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin: 30px 0 12px;
  color: var(--teal-dark);
}
.page ul.plain { list-style: none; margin: 10px 0 0 0; }
.page ul.plain li { padding: 4px 0 4px 26px; position: relative; }
.page ul.plain li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 700; }

.contact-note {
  max-width: 520px;
  margin: 24px auto;
  border: 1px solid var(--teal);
  border-radius: 12px;
  padding: 26px;
  text-align: center;
  color: #111;
}

.socials { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.socials a {
  color: var(--teal);
  text-decoration: none;
  font-size: 0.95rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 6px;
}
.socials a:hover { text-decoration: underline; }

/* ---------- footer ---------- */
footer {
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 34px 20px calc(110px + env(safe-area-inset-bottom));
  color: #888;
  font-size: 0.875rem;
}
footer a { color: var(--teal); text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* ---------- notification bubble (added for the parked-copy) ---------- */
#bubble {
  position: fixed;
  right: 20px;
  bottom: calc(20px + env(safe-area-inset-bottom));
  z-index: 10;
  font: inherit;
  font-size: 0.9375rem;
  line-height: 1;
  padding: 12px 18px;
  min-height: 44px;
  background: #000;
  color: #fff;
  border: 1px solid #000;
  border-radius: 999px;
  cursor: pointer;
}
#note {
  position: fixed;
  right: 20px;
  bottom: calc(82px + env(safe-area-inset-bottom));
  z-index: 10;
  width: min(22rem, calc(100vw - 40px));
  padding: 18px 40px 18px 18px;
  background: #fff;
  color: #000;
  border: 1px solid #000;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  text-align: left;
}
#note[hidden] { display: none; }
#note p { font-size: 0.9375rem; }
#noteClose {
  position: absolute;
  top: 4px;
  right: 4px;
  background: none;
  border: 0;
  color: #000;
  font: inherit;
  font-size: 0.9375rem;
  min-width: 32px;
  min-height: 32px;
  cursor: pointer;
}

/* ---------- responsive ---------- */
@media (max-width: 700px) {
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 10px 20px 18px;
    gap: 4px;
  }
  .nav.open { display: flex; }
  .nav a { justify-content: center; }
  .nav a.cta { justify-content: center; }
  .cols { grid-template-columns: 1fr; }
  .hero { padding-top: 40px; }
  .tcard { flex-direction: column; align-items: center; text-align: center; }
}